/* CSS Variables */
      :root {
        --color-primary: #2d6a4f;
        --color-accent: #d4a012;
        --color-bg: #f7f4ee;
        --color-card-bg: #ffffff;
        --color-surface: #ede8df;
        --color-text-main: #1a1a18;
        --color-text-secondary: #6b6b60;
        --color-border: #d6d1c7;
        --color-dark-bg: #1a2e23;
        --color-loss: #c0392b;
        --color-accent-wash: rgba(45, 106, 79, 0.1);

        --font-display: "Space Grotesk", sans-serif;
        --font-body: "Inter", sans-serif;
        --font-mono: "Space Mono", monospace;

        --container-max: 1080px;
      }

      /* Reset & Base */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font-body);
        background-color: var(--color-bg);
        color: var(--color-text-main);
        line-height: 1.6;
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      /* Typography */
      h1,
      h2,
      h3 {
        font-family: var(--font-display);
        font-weight: 700;
      }
      h1 {
        font-size: 64px;
        line-height: 1.1;
        color: #f5f5f0;
        margin-bottom: 24px;
        text-align: center;
      }
      h2 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 32px;
      }
      .section-label {
        font-family: var(--font-mono);
        font-size: 12px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--color-text-secondary);
        margin-bottom: 16px;
        display: block;
      }
      p {
        font-size: 16px;
        color: var(--color-text-secondary);
        margin-bottom: 24px;
      }

      /* Layout Utility */
      section {
        padding: 80px 0;
      }
      .container {
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 24px;
      }

      /* Buttons & Links */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 0;
        border: none;
        padding: 16px 32px;
      }
      .btn-primary {
        background-color: var(--color-primary);
        color: #ffffff;
      }
      .btn-primary:hover {
        background-color: var(--color-accent);
        color: var(--color-text-main);
      }

      .btn-accent {
        background-color: var(--color-accent);
        color: var(--color-text-main);
      }
      .btn-accent:hover {
        background-color: #ffffff;
      }

      .btn-text {
        background: transparent;
        color: var(--color-primary);
        padding: 16px 0;
      }
      .btn-text span {
        display: inline-block;
        transition: transform 0.2s ease;
        margin-left: 8px;
      }
      .btn-text:hover span {
        transform: translateX(4px);
      }

      /* Navbar */
      .navbar {
        padding: 24px 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
      }
      .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .logo {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.5px;
      }
      .nav-links {
        display: flex;
        gap: 40px;
        align-items: center;
      }
      .nav-links a {
        color: #ffffff;
        font-size: 15px;
        opacity: 0.9;
      }
      .nav-links a:hover {
        opacity: 1;
      }
      .nav-auth {
        display: flex;
        align-items: center;
        gap: 24px;
      }
      .nav-auth .login {
        color: #ffffff;
        font-size: 15px;
      }
      .nav-auth .register {
        background: var(--color-accent);
        color: var(--color-text-main);
        padding: 10px 24px;
        font-family: var(--font-display);
        font-weight: 500;
      }
      .hamburger {
        display: none;
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 24px;
        cursor: pointer;
      }

      /* Mobile Menu */
      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-dark-bg);
        z-index: 1000;
        padding: 80px 32px 32px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
      }
      .mobile-menu.active {
        right: 0;
      }
      .close-menu {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: #ffffff;
        font-size: 28px;
        cursor: pointer;
      }
      .mobile-menu a {
        display: block;
        color: #ffffff;
        font-size: 18px;
        margin-bottom: 24px;
        font-family: var(--font-display);
      }
      .mobile-menu .auth-group {
        margin-top: 48px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Section 1: Hero */
      .hero {
        background-color: var(--color-dark-bg);
        padding: 180px 0 140px;
        position: relative;
        text-align: center;
      }
      .hero-arc {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        line-height: 0;
        z-index: 1;
      }
      .hero-arc svg {
        display: block;
        width: 100%;
        height: 80px;
      }

      .hero-watermark {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 260px;
        color: #ffffff;
        opacity: 0.03;
        pointer-events: none;
        user-select: none;
        white-space: nowrap;
        z-index: 0;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .hero p {
        color: #c8d0ca;
        font-size: 18px;
        margin-bottom: 40px;
      }

      /* Section 2: Bonus Philosophy */
      .philosophy {
        padding-top: 40px;
      }
      .philosophy-content p {
        font-size: 18px;
        margin-bottom: 32px;
      }
      .text-emphasis {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-primary);
      }

      /* Sections 3-5: Bonus Cards */
      .bonus-cards-section {
        padding: 40px 0 80px;
        display: flex;
        flex-direction: column;
        gap: 64px;
      }
      .bonus-card {
        background-color: var(--color-card-bg);
        margin: 0 auto;
        padding: 64px;
        border-radius: 2px;
        border-bottom: 3px solid var(--color-accent);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        width: 100%;
      }
      .bonus-card h2 {
        font-size: 36px;
        color: var(--color-text-main);
        margin-bottom: 32px;
      }
      .highlight-bar {
        background-color: var(--color-surface);
        padding: 24px;
        border-radius: 2px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
      }
      .highlight-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        padding-left: 24px;
      }
      .highlight-item:first-child {
        padding-left: 0;
      }
      .highlight-item:last-child {
        border-right: none;
      }

      .highlight-val {
        font-family: var(--font-mono);
        font-weight: 700;
        font-size: 28px;
        color: var(--color-accent);
        line-height: 1.2;
      }
      .highlight-lbl {
        font-family: var(--font-body);
        font-size: 14px;
        color: var(--color-text-secondary);
        margin-top: 4px;
      }
      .bonus-card-text p {
        margin-bottom: 24px;
      }
      .bonus-card-text p:last-of-type {
        margin-bottom: 40px;
      }

      /* Section 6: How to Claim */
      .how-to-claim {
        background-color: var(--color-surface);
        padding: 80px 0;
      }
      .steps-container {
        display: flex;
        justify-content: space-between;
        margin-top: 80px;
        position: relative;
      }
      .step-item {
        flex: 1;
        position: relative;
        padding-right: 40px;
      }
      .step-number {
        font-family: var(--font-mono);
        font-size: 72px;
        color: var(--color-accent-wash);
        position: absolute;
        top: -40px;
        left: 0;
        z-index: 0;
        line-height: 1;
      }
      .step-content {
        position: relative;
        z-index: 1;
        margin-top: 16px;
      }
      .step-content h3 {
        font-size: 20px;
        margin-bottom: 16px;
      }
      .step-content p {
        font-size: 16px;
        margin-bottom: 0;
      }
      .step-connector {
        position: absolute;
        top: 24px;
        right: 0;
        width: calc(100% - 60px);
        height: 1px;
        border-top: 1px dashed var(--color-border);
        z-index: 0;
      }

      /* Section 7: Wagering Explained */
      .wagering-explained {
        padding: 80px 0;
      }
      .comparison-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 40px;
      }
      .comp-box {
        padding: 32px;
        border-radius: 2px;
      }
      .comp-industry {
        background-color: var(--color-surface);
      }
      .comp-tayazone {
        background-color: #ffffff;
        border-bottom: 2px solid var(--color-primary);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
      }
      .comp-title {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 18px;
        color: var(--color-text-main);
        margin-bottom: 24px;
      }
      .comp-row {
        display: flex;
        justify-content: space-between;
        font-family: var(--font-mono);
        font-size: 15px;
        color: var(--color-text-secondary);
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
      }
      .comp-row:last-of-type {
        border-bottom: none;
        margin-bottom: 24px;
      }
      .comp-result {
        font-family: var(--font-mono);
        font-size: 18px;
        font-weight: 700;
        display: flex;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid var(--color-border);
      }
      .comp-loss {
        color: var(--color-loss);
      }
      .comp-gain {
        color: var(--color-primary);
      }

      /* FAQ */
      .faq {
        padding: 40px 0 100px;
      }
      .faq-list {
        margin-top: 48px;
      }
      .faq-item {
        border-bottom: 1px solid var(--color-surface);
      }
      .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        padding: 24px 0;
        font-family: var(--font-display);
        font-size: 18px;
        font-weight: 500;
        color: var(--color-text-main);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
      }
      .faq-icon {
        color: var(--color-primary);
        transition: transform 0.25s ease-out;
        font-size: 20px;
      }
      .faq-question[aria-expanded="true"] .faq-icon {
        transform: rotate(180deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.25s ease-out,
          opacity 0.25s ease-out;
        opacity: 0;
      }
      .faq-answer-inner {
        padding: 0 0 24px 24px;
        border-left: 2px solid var(--color-primary);
        margin-bottom: 24px;
        font-size: 16px;
        color: var(--color-text-secondary);
      }
      .faq-item.active .faq-answer {
        opacity: 1;
      }

      /* Footer */
      .footer {
        background-color: var(--color-dark-bg);
        color: #ffffff;
        padding: 100px 0 40px;
      }
      .footer-top {
        display: flex;
        justify-content: space-between;
        gap: 64px;
        margin-bottom: 80px;
      }
      .footer-brand {
        flex: 0 0 60%;
      }
      .footer-brand .logo {
        display: block;
        margin-bottom: 24px;
      }
      .footer-brand p {
        color: #c8d0ca;
        margin-bottom: 32px;
        font-size: 16px;
      }
      .social-links {
        display: flex;
        gap: 24px;
      }
      .social-links a {
        font-family: var(--font-mono);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-accent);
      }
      .footer-links {
        flex: 0 0 40%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .footer-col h4 {
        font-family: var(--font-mono);
        font-size: 12px;
        letter-spacing: 2px;
        color: #8a9990;
        margin-bottom: 24px;
        text-transform: uppercase;
      }
      .footer-col ul li {
        margin-bottom: 16px;
      }
      .footer-col ul li a {
        color: #e0e5e2;
        font-size: 15px;
        transition: color 0.2s;
      }
      .footer-col ul li a:hover {
        color: #ffffff;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 40px;
        font-size: 14px;
        color: #8a9990;
      }
      .disclaimer {
        line-height: 1.5;
      }
      .legal-badges {
        display: flex;
        gap: 16px;
        align-items: center;
      }
      .license-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: var(--color-surface);
        color: var(--color-primary);
        font-family: var(--font-mono);
        font-size: 12px;
        font-weight: 700;
        padding: 8px 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .license-badge::before {
        content: "";
        display: block;
        width: 4px;
        height: 4px;
        background-color: var(--color-primary);
      }

      /* Floating CTA */
      .floating-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        background-color: var(--color-dark-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 900;
        transform: translateY(100%);
        transition: transform 0.3s ease-out;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }
      .floating-cta.visible {
        transform: translateY(0);
      }
      .floating-cta a {
        color: #ffffff;
        font-family: var(--font-display);
        font-weight: 500;
        font-size: 16px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Responsive Breakpoints */
      @media (max-width: 1023px) {
        /* Tablet */
        h1 {
          font-size: 56px;
        }
        .hero-watermark {
          font-size: 200px;
        }
        .bonus-card {
          padding: 40px;
        }
        .footer-top {
          flex-direction: column;
          gap: 48px;
        }
        .footer-brand,
        .footer-links {
          flex: 1;
        }
      }

      @media (max-width: 767px) {
        /* Mobile */
        h1 {
          font-size: 36px;
        }
        h2 {
          font-size: 32px;
        }
        section {
          padding: 64px 0;
        }

        .nav-links,
        .nav-auth {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero {
          padding: 120px 0 80px;
        }
        .hero-watermark {
          font-size: 100px;
        }
        .hero-arc svg {
          height: 40px;
        }

        .bonus-cards-section {
          gap: 40px;
          padding: 0 0 64px;
        }
        .bonus-card {
          padding: 32px;
          width: calc(100% - 32px);
          margin: 0 16px;
        }
        .bonus-card h2 {
          font-size: 28px;
        }

        .highlight-bar {
          flex-direction: column;
          gap: 16px;
          padding: 20px;
        }
        .highlight-item {
          border-right: none;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          padding-left: 0;
          padding-bottom: 16px;
        }
        .highlight-item:last-child {
          border-bottom: none;
          padding-bottom: 0;
        }

        .steps-container {
          flex-direction: column;
          gap: 64px;
          margin-top: 64px;
        }
        .step-number {
          font-size: 48px;
          top: -24px;
        }
        .step-connector {
          top: auto;
          bottom: -32px;
          left: 0;
          width: 1px;
          height: 32px;
          border-top: none;
          border-left: 1px dashed var(--color-border);
        }
        .step-item:last-child .step-connector {
          display: none;
        }

        .comparison-grid {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 24px;
        }
      }
