 :root {
   --navy: #0b1f3f;
   --navy-soft: #12315f;
   --navy-deep: #07162f;
   --red: #d84b55;
   --red-soft: #f6d7da;
   --white: #ffffff;
   --ink: #172033;
   --muted: #667085;
   --line: #dbe3ef;
   --bg: #f5f7fb;
   --card: #ffffff;
   --success: #16794c;
   --warning: #946200;
   --danger: #b42318;
   --radius: 18px;
   --radius-sm: 12px;
   --shadow: 0 16px 38px rgba(11, 31, 63, 0.10);
   --shadow-soft: 0 8px 22px rgba(11, 31, 63, 0.08);
   --container: 1180px;
   --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
 }

 * {
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   margin: 0;
   font-family: var(--font);
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }

 body.nav-open {
   overflow: hidden;
 }

 img {
   max-width: 100%;
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 p {
   margin: 0 0 1rem;
 }

 h1,
 h2,
 h3,
 h4 {
   margin: 0;
   color: var(--navy);
   line-height: 1.18;
 }

 h1 {
   font-size: clamp(2.25rem, 6vw, 5rem);
   letter-spacing: -0.055em;
 }

 h2 {
   font-size: clamp(1.75rem, 3vw, 2.8rem);
   letter-spacing: -0.035em;
 }

 h3 {
   font-size: 1.25rem;
 }

 small {
   color: var(--muted);
 }

 .container {
   width: min(100% - 32px, var(--container));
   margin-inline: auto;
 }

 .skip-link {
   position: absolute;
   left: 16px;
   top: -48px;
   background: var(--navy);
   color: var(--white);
   padding: 10px 14px;
   border-radius: 999px;
   z-index: 1000;
   transition: top 0.2s ease;
 }

 .skip-link:focus {
   top: 12px;
 }

 .site-header {
   position: sticky;
   top: 0;
   z-index: 100;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(14px);
   border-bottom: 1px solid rgba(219, 227, 239, 0.9);
 }

 .header-inner {
   min-height: 76px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
 }

 .logo {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-weight: 850;
   font-size: 1.25rem;
   color: var(--navy);
   letter-spacing: -0.03em;
 }

 .logo-mark {
   width: 42px;
   height: 42px;
   border-radius: 14px;
   background: linear-gradient(135deg, var(--navy), var(--red));
   color: var(--white);
   display: grid;
   place-items: center;
   box-shadow: var(--shadow-soft);
 }

 .nav-wrap {
   display: flex;
   align-items: center;
   gap: 18px;
 }

 .nav-links {
   display: flex;
   align-items: center;
   gap: 4px;
 }

 .nav-links a {
   color: var(--navy);
   font-weight: 700;
   font-size: 0.94rem;
   padding: 10px 12px;
   border-radius: 999px;
   transition: background 0.2s ease, color 0.2s ease;
 }

 .nav-links a:hover,
 .nav-links a.active {
   background: #eef3fb;
   color: var(--navy-deep);
 }

 .header-actions {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .cart-link {
   position: relative;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 12px;
   border-radius: 999px;
   background: var(--navy);
   color: var(--white);
   font-weight: 800;
   transition: transform 0.2s ease, background 0.2s ease;
 }

 .cart-link:hover {
   transform: translateY(-1px);
   background: var(--navy-soft);
 }

 .cart-count {
   min-width: 22px;
   min-height: 22px;
   border-radius: 999px;
   background: var(--red);
   color: var(--white);
   display: inline-grid;
   place-items: center;
   font-size: 0.78rem;
   font-weight: 900;
   padding: 2px 6px;
 }

 .mobile-toggle {
   display: none;
   width: 44px;
   height: 44px;
   border: 1px solid var(--line);
   background: var(--white);
   color: var(--navy);
   border-radius: 14px;
   font-size: 1.05rem;
   cursor: pointer;
 }

 .btn {
   border: 0;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   min-height: 46px;
   padding: 12px 20px;
   font-weight: 850;
   font-size: 0.96rem;
   cursor: pointer;
   transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
 }

 .btn:hover {
   transform: translateY(-1px);
 }

 .btn-primary {
   color: var(--white);
   background: linear-gradient(135deg, var(--navy), var(--navy-soft));
   box-shadow: var(--shadow-soft);
 }

 .btn-primary:hover {
   box-shadow: var(--shadow);
 }

 .btn-accent {
   color: var(--white);
   background: linear-gradient(135deg, var(--red), #b73541);
   box-shadow: var(--shadow-soft);
 }

 .btn-secondary {
   color: var(--navy);
   background: var(--white);
   border: 1px solid var(--line);
 }

 .btn-ghost {
   color: var(--navy);
   background: #eef3fb;
 }

 .btn-danger {
   color: var(--white);
   background: var(--danger);
 }

 .btn-small {
   min-height: 38px;
   padding: 8px 14px;
   font-size: 0.88rem;
 }

 .hero {
   position: relative;
   padding: 86px 0 64px;
   overflow: hidden;
   background:
     radial-gradient(circle at 12% 10%, rgba(216, 75, 85, 0.18), transparent 30%),
     radial-gradient(circle at 90% 8%, rgba(11, 31, 63, 0.15), transparent 32%),
     linear-gradient(135deg, #ffffff 0%, #eef4fd 52%, #ffffff 100%);
 }

 .hero::after {
   content: "";
   position: absolute;
   inset: auto 0 -1px 0;
   height: 90px;
   background: linear-gradient(to bottom, transparent, var(--bg));
 }

 .hero-grid {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
   align-items: center;
   gap: 48px;
 }

 .eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 12px;
   margin-bottom: 22px;
   border-radius: 999px;
   background: rgba(216, 75, 85, 0.11);
   color: #9f2530;
   font-weight: 850;
   font-size: 0.88rem;
 }

 .hero p.lead,
 .page-hero p.lead {
   font-size: clamp(1.05rem, 2vw, 1.25rem);
   color: #42526e;
   max-width: 720px;
   margin: 22px 0 0;
 }

 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 30px;
 }

 .hero-card {
   background: var(--white);
   border: 1px solid rgba(219, 227, 239, 0.86);
   border-radius: 28px;
   padding: 14px;
   box-shadow: var(--shadow);
 }

 .hero-card img {
   width: 100%;
   height: 355px;
   object-fit: cover;
   border-radius: 22px;
   background: #dfe8f5;
 }

 .hero-stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 10px;
   margin-top: 12px;
 }

 .hero-stat {
   padding: 14px;
   border-radius: 18px;
   background: #f7f9fd;
   border: 1px solid var(--line);
 }

 .hero-stat strong {
   display: block;
   color: var(--navy);
   font-size: 1.2rem;
 }

 .section {
   padding: 72px 0;
 }

 .section-tight {
   padding: 48px 0;
 }

 .section-heading {
   display: flex;
   justify-content: space-between;
   align-items: end;
   gap: 24px;
   margin-bottom: 30px;
 }

 .section-heading p {
   color: var(--muted);
   max-width: 680px;
   margin: 10px 0 0;
 }

 .grid-3 {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
 }

 .grid-4 {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 22px;
 }

 .grid-2 {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px;
 }

 .card {
   background: var(--card);
   border: 1px solid rgba(219, 227, 239, 0.95);
   border-radius: var(--radius);
   box-shadow: var(--shadow-soft);
   overflow: hidden;
   transition: transform 0.25s ease, box-shadow 0.25s ease;
 }

 .card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow);
 }

 .card-body {
   padding: 24px;
 }

 .draw-card img {
   width: 100%;
   padding: 20px;
   background: #dfe8f5;
 }

 .card-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin: 14px 0;
 }

 .pill {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   padding: 7px 10px;
   border-radius: 999px;
   background: #eef3fb;
   color: var(--navy);
   font-size: 0.83rem;
   font-weight: 800;
 }

 .pill-red {
   background: var(--red-soft);
   color: #9f2530;
 }

 .card-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 20px;
 }

 .feature-card {
   padding: 24px;
 }

 .icon-badge {
   width: 48px;
   height: 48px;
   border-radius: 16px;
   display: grid;
   place-items: center;
   margin-bottom: 16px;
   background: linear-gradient(135deg, #eef3fb, #ffffff);
   color: var(--red);
   border: 1px solid var(--line);
   font-size: 1.15rem;
 }

 .banner {
   border-radius: 28px;
   padding: 30px;
   background: linear-gradient(135deg, var(--navy), var(--navy-soft));
   color: var(--white);
   box-shadow: var(--shadow);
   display: grid;
   grid-template-columns: 1.2fr auto;
   align-items: center;
   gap: 24px;
 }

 .banner h2,
 .banner h3 {
   color: var(--white);
 }

 .banner p {
   color: rgba(255, 255, 255, 0.84);
   margin: 10px 0 0;
 }

 .notice-box {
   border-radius: 20px;
   padding: 18px 20px;
   background: #fff7ed;
   border: 1px solid #fed7aa;
   color: #7c2d12;
   font-weight: 700;
 }

 .page-hero {
   padding: 70px 0 46px;
   background:
     radial-gradient(circle at 15% 10%, rgba(216, 75, 85, 0.13), transparent 26%),
     linear-gradient(135deg, #ffffff, #eef4fd);
   border-bottom: 1px solid var(--line);
 }

 .breadcrumb {
   color: var(--muted);
   font-weight: 750;
   margin-bottom: 12px;
 }

 .content-card {
   padding: clamp(24px, 4vw, 42px);
 }

 .prose p,
 .prose li {
   color: #42526e;
 }

 .prose ul {
   padding-left: 1.2rem;
 }

 .legal-block {
   border: 1px solid var(--line);
   background: #f8fafc;
   border-radius: 18px;
   padding: 20px;
   display: grid;
   gap: 10px;
 }

 .legal-row {
   display: flex;
   gap: 10px;
   justify-content: space-between;
   border-bottom: 1px solid var(--line);
   padding-bottom: 10px;
 }

 .legal-row:last-child {
   border-bottom: 0;
   padding-bottom: 0;
 }

 .legal-row span:first-child {
   color: var(--muted);
   font-weight: 750;
 }

 .legal-row span:last-child {
   color: var(--navy);
   font-weight: 850;
   text-align: right;
 }

 .contact-card {
   padding: 24px;
 }

 .form-card {
   padding: clamp(22px, 4vw, 34px);
 }

 .form-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 18px;
 }

 .form-row {
   display: grid;
   gap: 8px;
   margin-bottom: 16px;
 }

 .form-row.full {
   grid-column: 1 / -1;
 }

 label {
   font-weight: 850;
   color: var(--navy);
 }

 input,
 select,
 textarea {
   width: 100%;
   border: 1px solid var(--line);
   border-radius: 14px;
   min-height: 48px;
   padding: 12px 14px;
   font: inherit;
   color: var(--ink);
   background: var(--white);
   transition: border-color 0.2s ease, box-shadow 0.2s ease;
 }

 textarea {
   min-height: 140px;
   resize: vertical;
 }

 input:focus,
 select:focus,
 textarea:focus,
 .number-button:focus,
 .quantity-button:focus,
 .mobile-toggle:focus,
 .btn:focus {
   outline: none;
   border-color: var(--navy-soft);
   box-shadow: 0 0 0 4px rgba(18, 49, 95, 0.14);
 }

 .checkbox-row {
   display: flex;
   align-items: flex-start;
   gap: 10px;
   color: #42526e;
 }

 .checkbox-row input {
   width: 18px;
   min-height: 18px;
   margin-top: 3px;
 }

 .message {
   display: none;
   border-radius: 16px;
   padding: 14px 16px;
   margin-top: 14px;
   font-weight: 800;
 }

 .message.show {
   display: block;
 }

 .message.success {
   color: #0f5132;
   background: #d1e7dd;
   border: 1px solid #badbcc;
 }

 .message.error {
   color: #842029;
   background: #f8d7da;
   border: 1px solid #f5c2c7;
 }

 .ticket-layout {
   display: grid;
   grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
   gap: 24px;
   align-items: start;
 }

 .sticky-panel {
   position: sticky;
   top: 96px;
 }

 .quantity-control {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .quantity-control input {
   max-width: 110px;
   text-align: center;
   font-weight: 850;
 }

 .quantity-button {
   width: 44px;
   height: 44px;
   border-radius: 14px;
   border: 1px solid var(--line);
   background: var(--white);
   color: var(--navy);
   font-size: 1rem;
   cursor: pointer;
 }

 .selection-group {
   margin-top: 24px;
 }

 .selection-title {
   display: flex;
   justify-content: space-between;
   gap: 16px;
   align-items: center;
   margin-bottom: 12px;
 }

 .number-grid {
   display: grid;
   grid-template-columns: repeat(10, minmax(38px, 1fr));
   gap: 8px;
 }

 .number-button {
   min-height: 40px;
   border-radius: 13px;
   border: 1px solid var(--line);
   background: var(--white);
   color: var(--navy);
   font-weight: 850;
   cursor: pointer;
   transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
 }

 .number-button:hover {
   transform: translateY(-1px);
   border-color: var(--navy-soft);
 }

 .number-button.selected {
   color: var(--white);
   background: var(--navy);
   border-color: var(--navy);
 }

 .number-button.special.selected {
   background: var(--red);
   border-color: var(--red);
 }

 .selected-summary {
   border: 1px dashed #b7c6da;
   border-radius: 18px;
   padding: 16px;
   background: #f8fafc;
   color: #42526e;
   font-weight: 750;
 }

 .cart-list {
   display: grid;
   gap: 16px;
 }

 .cart-item {
   padding: 20px;
   border-radius: 18px;
   background: var(--white);
   border: 1px solid var(--line);
   box-shadow: var(--shadow-soft);
 }

 .cart-item-top {
   display: flex;
   justify-content: space-between;
   gap: 16px;
   align-items: start;
 }

 .number-chip-list {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin: 12px 0;
 }

 .number-chip {
   min-width: 30px;
   min-height: 30px;
   padding: 5px 9px;
   border-radius: 999px;
   display: inline-grid;
   place-items: center;
   background: #eef3fb;
   color: var(--navy);
   font-weight: 850;
 }

 .number-chip.special {
   background: var(--red-soft);
   color: #9f2530;
 }

 .empty-state {
   text-align: center;
   padding: 46px 24px;
 }

 .empty-state i {
   font-size: 2.2rem;
   color: var(--red);
   margin-bottom: 14px;
 }

 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   z-index: 150;
   display: none;
 }

 .cookie-banner.show {
   display: block;
 }

 .cookie-inner {
   max-width: 980px;
   margin-inline: auto;
   background: var(--white);
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
   border-radius: 22px;
   padding: 18px;
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 18px;
   align-items: center;
 }

 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .modal {
   position: fixed;
   inset: 0;
   background: rgba(7, 22, 47, 0.56);
   z-index: 200;
   display: none;
   place-items: center;
   padding: 20px;
 }

 .modal.show {
   display: grid;
 }

 .modal-card {
   width: min(100%, 620px);
   max-height: 88vh;
   overflow: auto;
   background: var(--white);
   border-radius: 24px;
   box-shadow: var(--shadow);
   padding: 26px;
 }

 .preference-row {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 18px;
   padding: 16px 0;
   border-bottom: 1px solid var(--line);
 }

 .preference-row:last-child {
   border-bottom: 0;
 }

 .switch input {
   width: 48px;
   min-height: 26px;
   accent-color: var(--navy);
 }

 .site-footer {
   background: var(--navy-deep);
   color: rgba(255, 255, 255, 0.82);
   padding: 54px 0 24px;
   margin-top: 40px;
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 1.1fr 1fr 1fr 1fr;
   gap: 28px;
 }

 .site-footer h3,
 .site-footer h4 {
   color: var(--white);
   margin-bottom: 14px;
 }

 .site-footer a {
   color: rgba(255, 255, 255, 0.84);
 }

 .site-footer a:hover {
   color: var(--white);
 }

 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
   display: grid;
   gap: 9px;
 }

 .footer-legal {
   font-size: 0.9rem;
 }

 .footer-bottom {
   margin-top: 34px;
   padding-top: 20px;
   border-top: 1px solid rgba(255, 255, 255, 0.14);
   display: flex;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
   font-size: 0.9rem;
 }

 .age-badge {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 56px;
   min-height: 36px;
   padding: 6px 10px;
   border: 2px solid var(--white);
   color: var(--white);
   border-radius: 999px;
   font-weight: 950;
   letter-spacing: 0.02em;
 }

 .image-card img {
   border-radius: var(--radius);
   min-height: 280px;
   object-fit: cover;
   background: #dfe8f5;
 }

 @media (max-width: 1060px) {
   .mobile-toggle {
     display: inline-grid;
     place-items: center;
   }

   .nav-links {
     position: fixed;
     left: 16px;
     right: 16px;
     top: 84px;
     display: none;
     flex-direction: column;
     align-items: stretch;
     padding: 18px;
     background: var(--white);
     border: 1px solid var(--line);
     border-radius: 22px;
     box-shadow: var(--shadow);
   }

   .nav-links.open {
     display: flex;
   }

   .nav-links a {
     border-radius: 14px;
   }

   .hero-grid,
   .ticket-layout {
     grid-template-columns: 1fr;
   }

   .sticky-panel {
     position: initial;
   }

   .footer-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 820px) {

   .grid-4,
   .grid-3,
   .grid-2,
   .form-grid {
     grid-template-columns: 1fr;
   }

   .section-heading,
   .banner,
   .cookie-inner {
     grid-template-columns: 1fr;
   }

   .hero-stats {
     grid-template-columns: 1fr;
   }

   .number-grid {
     grid-template-columns: repeat(7, minmax(34px, 1fr));
   }

   .header-actions .btn-secondary {
     display: none;
   }
 }

 @media (max-width: 560px) {
   .container {
     width: min(100% - 24px, var(--container));
   }

   .header-inner {
     min-height: 70px;
     gap: 10px;
   }

   .logo span:last-child {
     font-size: 1.05rem;
   }

   .logo-mark {
     width: 38px;
     height: 38px;
   }

   .hero,
   .page-hero {
     padding-top: 46px;
   }

   .hero-card img {
     height: 245px;
   }

   .card-actions,
   .hero-actions,
   .cookie-actions,
   .footer-bottom {
     flex-direction: column;
     align-items: stretch;
   }

   .btn,
   .cart-link {
     width: 100%;
   }

   .cart-link {
     justify-content: center;
   }

   .number-grid {
     grid-template-columns: repeat(5, minmax(36px, 1fr));
   }

   .footer-grid {
     grid-template-columns: 1fr;
   }

   .cart-item-top,
   .legal-row {
     flex-direction: column;
   }

   .legal-row span:last-child {
     text-align: left;
   }
 }

 .age-gate-open {
   overflow: hidden;
 }

 .age-gate {
   position: fixed;
   inset: 0;
   z-index: 300;
   display: none;
   place-items: center;
   padding: 20px;
   background:
     radial-gradient(circle at 20% 18%, rgba(216, 75, 85, 0.22), transparent 28%),
     rgba(7, 22, 47, 0.72);
   backdrop-filter: blur(12px);
 }

 .age-gate.show {
   display: grid;
 }

 .age-gate-card {
   width: min(100%, 600px);
   padding: clamp(26px, 5vw, 42px);
   border-radius: 30px;
   background: var(--white);
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
   text-align: center;
 }

 .age-gate-badge {
   width: 78px;
   height: 78px;
   margin: 0 auto 18px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: linear-gradient(135deg, var(--navy), var(--red));
   color: var(--white);
   font-size: 1.35rem;
   font-weight: 950;
   letter-spacing: 0.03em;
 }

 .age-gate-card p {
   color: #42526e;
   max-width: 480px;
   margin-inline: auto;
 }

 .age-gate-note {
   font-weight: 800;
   color: var(--navy) !important;
 }

 .age-gate-actions {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 12px;
   margin-top: 24px;
 }

 .support-panel {
   margin-top: 20px;
 }

 @media (max-width: 560px) {
   .age-gate-actions {
     align-items: stretch;
     flex-direction: column;
   }
 }


 .site-footer-compliance {
   background: linear-gradient(180deg, #03101f 0%, #071934 100%);
   color: rgba(255, 255, 255, 0.88);
   padding: 40px 0 24px;
 }

 .footer-logo-row {
   display: grid;
   grid-template-columns: repeat(5, minmax(120px, 1fr));
   gap: 18px;
   align-items: center;
   margin-bottom: 24px;
 }

 .footer-logo-link {
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 88px;
   padding: 6px;
   border-radius: 18px;
   background: #fff;
   border: 1px solid rgba(255, 255, 255, 0.08);
   transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
 }

 .footer-logo-link:hover,
 .footer-logo-link:focus-visible {
   transform: translateY(-3px);
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
   border-color: rgba(255, 255, 255, 0.22);
 }

 .footer-logo-link img {
   width: 100%;
   max-width: 260px;
   height: auto;
   display: block;
 }

 .footer-compliance-text {
   text-align: center;
   max-width: 1000px;
   margin: 0 auto;
   display: grid;
   gap: 10px;
 }

 .footer-compliance-text p {
   margin: 0;
   font-size: 1rem;
   line-height: 1.65;
 }

 .footer-compliance-text a,
 .footer-operator-box a,
 .footer-bottom-links a {
   color: #ffffff;
 }

 .footer-alert {
   color: #ff5f5f;
   font-weight: 800;
   font-size: 1.18rem !important;
 }

 .footer-operator-box {
   margin-top: 26px;
   padding-top: 20px;
   border-top: 1px solid rgba(255, 255, 255, 0.12);
   text-align: center;
   display: grid;
   gap: 10px;
   font-size: 0.95rem;
 }

 .footer-operator-box p {
   margin: 0;
   line-height: 1.7;
 }

 .footer-bottom-centered {
   align-items: center;
 }

 .footer-bottom-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px 24px;
 }

 @media (max-width: 1100px) {
   .footer-logo-row {
     grid-template-columns: repeat(3, minmax(120px, 1fr));
   }
 }

 @media (max-width: 760px) {
   .footer-logo-row {
     grid-template-columns: repeat(2, minmax(120px, 1fr));
   }

   .footer-bottom-centered {
     flex-direction: column;
     text-align: center;
   }

   .footer-bottom-links {
     justify-content: center;
   }
 }

 @media (max-width: 520px) {
   .footer-logo-row {
     grid-template-columns: 1fr;
   }

   .footer-compliance-text p,
   .footer-operator-box {
     font-size: 0.92rem;
   }
 }


 
 :root {
   --shadow: 0 18px 46px rgba(7, 22, 47, 0.12);
   --shadow-soft: 0 10px 26px rgba(7, 22, 47, 0.08);
 }

 body {
   background:
     radial-gradient(circle at top left, rgba(216, 75, 85, 0.045), transparent 32rem),
     linear-gradient(180deg, #f8fafd 0%, var(--bg) 100%);
 }

 .site-header {
   box-shadow: 0 8px 24px rgba(7, 22, 47, 0.04);
 }

 .header-inner {
   min-height: 74px;
 }

 .nav-links a,
 .header-actions .btn,
 .cart-link {
   white-space: nowrap;
 }

 .btn,
 .cart-link,
 .mobile-toggle,
 .number-button,
 .quantity-button,
 .footer-logo-link {
   -webkit-tap-highlight-color: transparent;
 }

 .btn:active,
 .cart-link:active,
 .number-button:active,
 .quantity-button:active {
   transform: translateY(0);
 }

 .hero {
   padding-top: clamp(52px, 8vw, 92px);
 }

 .hero-grid {
   gap: clamp(28px, 5vw, 56px);
 }

 .hero-card,
 .card,
 .form-card,
 .content-card,
 .cart-item,
 .modal-card,
 .age-gate-card {
   border-color: rgba(190, 205, 225, 0.75);
 }

 .card,
 .hero-card,
 .form-card,
 .content-card {
   backdrop-filter: saturate(120%);
 }

 .draw-card,
 .feature-card,
 .contact-card,
 .cart-item {
   height: 100%;
 }

 .card-body,
 .feature-card,
 .contact-card {
   display: flex;
   flex-direction: column;
 }

 .card-actions {
   margin-top: auto;
   padding-top: 18px;
 }

 .draw-card img,
 .image-card img,
 .hero-card img {
   background: linear-gradient(135deg, #dfe8f5, #f8fafd);
 }

 .section-heading {
   align-items: flex-start;
 }

 .prose h2,
 .prose h3,
 .content-card h2,
 .content-card h3 {
   margin-top: 1.4rem;
   margin-bottom: 0.65rem;
 }

 .prose h2:first-child,
 .prose h3:first-child,
 .content-card h2:first-child,
 .content-card h3:first-child {
   margin-top: 0;
 }

 .prose p+p,
 .prose p+ul,
 .prose ul+p {
   margin-top: 0.75rem;
 }

 .legal-row {
   align-items: flex-start;
 }

 input[type="checkbox"] {
   accent-color: var(--navy);
 }

 input,
 select,
 textarea,
 .quantity-button,
 .number-button {
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
 }

 .number-grid {
   grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
 }

 .number-button {
   aspect-ratio: 1 / 1;
   min-height: 42px;
   padding: 0;
 }

 .selection-title small {
   line-height: 1.35;
   text-align: right;
 }

 .cookie-inner,
 .age-gate-card,
 .modal-card {
   border: 1px solid rgba(219, 227, 239, 0.96);
 }

 .cookie-banner {
   z-index: 250;
 }

 .age-gate {
   z-index: 400;
 }

 .site-footer-compliance {
   margin-top: 56px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .footer-logo-row {
   grid-template-columns: repeat(4, minmax(0, 1fr));
   max-width: 1180px;
   margin-inline: auto;
 }

 .footer-logo-link {
   min-width: 0;
   min-height: 76px;
   padding: 8px;
 }

 .footer-logo-link img {
   max-height: 50px;
   object-fit: contain;
 }

 .footer-compliance-text {
   padding-inline: clamp(0px, 4vw, 40px);
 }

 .footer-bottom-centered {
   justify-content: space-between;
 }

 .footer-bottom-links a {
   font-weight: 750;
 }

 @media (max-width: 1180px) {
   .mobile-toggle {
     display: inline-grid;
     place-items: center;
   }

   .nav-links {
     position: fixed;
     left: 16px;
     right: 16px;
     top: 84px;
     display: none;
     flex-direction: column;
     align-items: stretch;
     padding: 18px;
     background: var(--white);
     border: 1px solid var(--line);
     border-radius: 22px;
     box-shadow: var(--shadow);
   }

   .nav-links.open {
     display: flex;
   }

   .nav-links a {
     border-radius: 14px;
     padding: 12px 14px;
   }

   .hero-grid,
   .ticket-layout {
     grid-template-columns: 1fr;
   }

   .sticky-panel {
     position: static;
   }
 }

 @media (max-width: 980px) {
   .header-inner {
     gap: 12px;
   }

   .header-actions {
     gap: 8px;
   }

   .header-actions .btn-small {
     padding-inline: 11px;
   }

   .grid-4 {
     grid-template-columns: repeat(2, 1fr);
   }

   .footer-logo-row {
     grid-template-columns: repeat(3, minmax(0, 1fr));
   }
 }

 @media (max-width: 820px) {
   .hero-card img {
     height: 300px;
   }

   .hero-stats {
     grid-template-columns: repeat(3, 1fr);
   }

   .banner {
     text-align: left;
   }

   .footer-logo-row {
     gap: 12px;
   }
 }

 @media (max-width: 680px) {
   .header-actions .btn {
     display: none;
   }

   .logo {
     max-width: 48vw;
   }

   .logo span:last-child {
     overflow: hidden;
     text-overflow: ellipsis;
   }

   .hero-stats,
   .footer-logo-row {
     grid-template-columns: 1fr;
   }

   .hero-card img {
     height: 240px;
   }

   .form-card,
   .content-card,
   .card-body,
   .feature-card,
   .contact-card,
   .cart-item,
   .modal-card,
   .age-gate-card {
     border-radius: 18px;
   }

   .selection-title {
     align-items: flex-start;
     flex-direction: column;
   }

   .selection-title small {
     text-align: left;
   }

   .cookie-banner {
     left: 10px;
     right: 10px;
     bottom: 10px;
   }

   .cookie-inner {
     padding: 14px;
   }

   .cookie-actions .btn {
     flex: 1 1 auto;
   }
 }

 @media (max-width: 560px) {

   .header-actions .btn,
   .header-actions .cart-link {
     width: auto;
   }

   .header-actions .cart-link {
     min-width: 48px;
     justify-content: center;
   }

   .hero-actions .btn,
   .card-actions .btn,
   .cookie-actions .btn,
   .age-gate-actions .btn,
   .banner .btn {
     width: 100%;
   }

   .btn,
   .cart-link {
     width: auto;
   }

   h1 {
     letter-spacing: -0.04em;
   }

   .page-hero {
     padding-bottom: 34px;
   }

   .section {
     padding: 52px 0;
   }

   .section-tight {
     padding: 34px 0;
   }

   .number-grid {
     grid-template-columns: repeat(5, minmax(0, 1fr));
     gap: 7px;
   }

   .footer-logo-link {
     min-height: 74px;
   }

   .footer-logo-link img {
     max-height: 50px;
   }

   .footer-bottom-links {
     flex-direction: column;
     gap: 10px;
   }
 }

 @media (max-width: 390px) {
   .container {
     width: min(100% - 18px, var(--container));
   }

   .logo-mark {
     width: 34px;
     height: 34px;
     border-radius: 12px;
   }

   .header-actions {
     gap: 6px;
   }

   .cart-link,
   .mobile-toggle {
     width: 42px;
     height: 42px;
     padding: 0;
   }

   .number-grid {
     grid-template-columns: repeat(4, minmax(0, 1fr));
   }
 }

 
 :root {
   --container: 1240px;
   --radius: 22px;
   --radius-sm: 14px;
   --line: #d8e2f0;
   --bg: #f6f8fc;
   --shadow: 0 22px 58px rgba(7, 22, 47, 0.12);
   --shadow-soft: 0 12px 32px rgba(7, 22, 47, 0.08);
 }

 body {
   font-size: 16px;
   text-rendering: optimizeLegibility;
   -webkit-font-smoothing: antialiased;
 }

 .container {
   width: min(100% - 40px, var(--container));
 }

 .site-header {
   background: rgba(255, 255, 255, 0.92);
 }

 .header-inner {
   min-height: 78px;
 }

 .logo {
   flex-shrink: 0;
 }

 .nav-wrap {
   min-width: 0;
 }

 .nav-links a {
   font-size: 0.91rem;
   padding: 9px 11px;
 }

 .btn {
   min-height: 46px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   line-height: 1.1;
 }

 .btn-small {
   min-height: 40px;
 }

 .card,
 .form-card,
 .content-card,
 .cart-item,
 .hero-card {
   background: rgba(255, 255, 255, 0.96);
   border: 1px solid rgba(202, 216, 235, 0.92);
   box-shadow: var(--shadow-soft);
 }

 .card:hover,
 .form-card:hover,
 .content-card:hover,
 .cart-item:hover {
   transform: translateY(-2px);
   box-shadow: 0 18px 42px rgba(7, 22, 47, 0.10);
 }

 .section {
   padding: clamp(46px, 6vw, 76px) 0;
 }

 .page-hero {
   padding: clamp(52px, 7vw, 82px) 0 clamp(38px, 5vw, 56px);
 }

 .page-hero h1 {
   max-width: 900px;
 }

 .narrow {
   max-width: 920px;
 }

 
 .form-card {
   width: 100%;
   padding: clamp(24px, 4vw, 42px);
   border-radius: 24px;
   display: grid;
   gap: 12px;
 }

 .form-card h2 {
   margin-bottom: 6px;
   font-size: clamp(1.65rem, 3vw, 2.55rem);
 }

 .form-card label:not(.checkbox-row) {
   display: block;
   margin-top: 4px;
   margin-bottom: -4px;
   font-size: 0.94rem;
   line-height: 1.25;
 }

 input,
 select,
 textarea {
   min-height: 54px;
   border-radius: 15px;
   background: #ffffff;
   border-color: #d7e1ee;
 }

 textarea {
   min-height: 170px;
 }

 .checkbox-row {
   align-items: center;
   gap: 12px;
   margin-top: 4px;
   font-weight: 800;
 }

 .checkbox-row input {
   flex: 0 0 auto;
 }

 .form-card .btn {
   justify-self: start;
   margin-top: 2px;
 }

 .form-card a {
   color: var(--navy);
   font-weight: 850;
   text-decoration: underline;
   text-underline-offset: 3px;
 }

 
 .two-col {
   display: grid;
   grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
   gap: clamp(22px, 4vw, 34px);
   align-items: start;
 }

 .contact-cards {
   align-content: start;
 }

 .contact-card {
   min-height: 178px;
   padding: 28px;
   gap: 8px;
 }

 .contact-card i {
   width: 42px;
   height: 42px;
   display: inline-grid;
   place-items: center;
   border-radius: 14px;
   background: #eef3fb;
   color: var(--navy);
   margin-bottom: 8px;
 }

 .contact-card h2 {
   font-size: clamp(1.35rem, 2.5vw, 2.05rem);
   letter-spacing: -0.04em;
 }

 .contact-card p {
   margin: 0;
   color: #31415e;
 }

 
 .ticket-layout {
   grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
   gap: clamp(22px, 4vw, 34px);
 }

 .ticket-panel,
 .summary-card {
   padding: clamp(22px, 3vw, 34px);
   border-radius: 24px;
   overflow: visible;
 }

 .ticket-panel:hover,
 .summary-card:hover {
   transform: none;
 }

 .ticket-panel .form-row {
   grid-template-columns: minmax(260px, 1fr) minmax(240px, auto);
   gap: 18px;
   align-items: end;
   margin-bottom: 22px;
 }

 .ticket-panel label {
   display: block;
   margin-bottom: 8px;
   font-size: 0.95rem;
 }

 .quantity-control {
   gap: 12px;
 }

 .quantity-control .btn {
   width: 48px;
   min-width: 48px;
   height: 48px;
   min-height: 48px;
   padding: 0;
   border-radius: 50%;
   font-size: 1.2rem;
 }

 .quantity-control input {
   max-width: 124px;
   height: 54px;
   font-size: 1.05rem;
 }

 .notice,
 .rules-text {
   margin: 0 0 18px;
   color: #40516e;
   line-height: 1.65;
 }

 .notice {
   padding: 14px 16px;
   border: 1px solid #d7e6f7;
   border-radius: 16px;
   background: #f6f9fe;
   font-weight: 750;
 }

 .notice i {
   margin-right: 6px;
   color: var(--navy);
 }

 .number-section {
   margin-top: 28px;
 }

 .number-section h2 {
   font-size: clamp(1.55rem, 2.25vw, 2.15rem);
   letter-spacing: -0.04em;
   margin-bottom: 16px;
   max-width: 100%;
 }

 .number-grid {
   grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
   gap: 10px;
 }

 .number-button {
   min-height: 48px;
   border-radius: 15px;
   font-size: 0.98rem;
   background: #ffffff;
 }

 .ticket-actions,
 .cart-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 28px;
 }

 .summary-card {
   position: sticky;
   top: 104px;
   align-self: start;
 }

 .summary-card h2 {
   font-size: clamp(1.65rem, 3vw, 2.55rem);
   letter-spacing: -0.045em;
   margin-bottom: 14px;
 }

 #selectedSummary {
   color: #26364f;
   line-height: 1.7;
 }

 .responsible-note {
   margin-top: 22px;
   padding: 18px;
   border-radius: 18px;
   background: linear-gradient(135deg, #f8fafc, #fff5f6);
   border: 1px solid #ead9df;
 }

 .responsible-note p {
   margin: 8px 0 0;
 }

 
 .cart-actions .btn,
 .ticket-actions .btn {
   flex: 0 1 auto;
 }

 
 .site-footer-compliance {
   padding-top: clamp(34px, 5vw, 52px);
 }

 .footer-logo-row {
   gap: clamp(12px, 2vw, 18px);
 }

 .footer-logo-link {
   border-radius: 18px;
 
  background: #fff;
 }

 .footer-compliance-text {
   margin-top: 10px;
 }

 .footer-operator-box {
   overflow-wrap: anywhere;
 }

 
 .cookie-inner,
 .modal-card,
 .age-gate-card {
   border-radius: 24px;
 }

 .age-gate-card h2,
 .modal-card h2 {
   font-size: clamp(1.65rem, 4vw, 2.55rem);
 }

 @media (max-width: 1180px) {
   .nav-links {
     z-index: 180;
   }

   .ticket-layout,
   .two-col {
     grid-template-columns: 1fr;
   }

   .summary-card {
     position: static;
   }
 }

 @media (max-width: 900px) {

   .grid-2,
   .grid-3,
   .grid-4,
   .form-grid {
     grid-template-columns: 1fr;
   }

   .contact-cards {
     grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .ticket-panel .form-row {
     grid-template-columns: 1fr;
     align-items: stretch;
   }
 }

 @media (max-width: 720px) {
   .container {
     width: min(100% - 28px, var(--container));
   }

   .header-actions .btn {
     display: none;
   }

   .contact-cards {
     grid-template-columns: 1fr;
   }

   .form-card,
   .ticket-panel,
   .summary-card,
   .content-card,
   .card-body,
   .contact-card {
     padding: 22px;
   }

   .number-grid {
     grid-template-columns: repeat(5, minmax(0, 1fr));
   }

   .ticket-actions .btn,
   .cart-actions .btn,
   .form-card .btn {
     width: 100%;
   }

   .cookie-inner {
     grid-template-columns: 1fr;
   }

   .footer-logo-row {
     grid-template-columns: 1fr;
   }

   .footer-logo-link img {
     max-width: 260px;
   }
 }

 @media (max-width: 460px) {
   .container {
     width: min(100% - 20px, var(--container));
   }

   h1 {
     font-size: clamp(2rem, 11vw, 3rem);
   }

   h2 {
     font-size: clamp(1.45rem, 8vw, 2.1rem);
   }

   .logo span:last-child {
     display: none;
   }

   .cart-link {
     min-width: 44px;
   }

   .number-grid {
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 8px;
   }

   .number-button {
     min-height: 44px;
   }

   .quantity-control {
     justify-content: space-between;
   }

   .quantity-control input {
     max-width: 110px;
   }

   .footer-bottom-links {
     flex-direction: column;
     align-items: center;
   }
 }