﻿/* --- CSS Variables --- */
      :root {
        --color-primary: #0ea5e9;
        --color-secondary: #0369a1;
        --color-accent: #f59e0b;
        --color-bg-main: #0b1120;
        --color-bg-alt: #111b2e;
        --color-card: #162033;
        --color-surface: #1e293b;
        --color-text-main: #f1f5f9;
        --color-text-sub: #94a3b8;
        --color-success: #10b981;
        --color-warning: #ef4444;
        --color-border: #1e3a5f;
        --gradient-wash: linear-gradient(135deg, #0ea5e9, #0369a1);

        --font-display: "Rajdhani", sans-serif;
        --font-body: "Inter", sans-serif;
        --font-ui: "Inter", sans-serif;
      }

      /* --- Reset & Base --- */
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--font-body);
        background-color: var(--color-bg-main);
        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%;
        display: block;
      }
      button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit;
      }

      /* --- Typography --- */
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font-display);
        color: var(--color-text-main);
        line-height: 1.2;
      }
      h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 24px;
      }
      h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 24px;
        position: relative;
      }
      .h2-center {
        text-align: center;
      }
      .h2-center::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background-color: var(--color-primary);
        margin: 16px auto 0;
      }
      p {
        margin-bottom: 16px;
        color: var(--color-text-sub);
      }

      /* --- Layout & Utilities --- */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .section-padding {
        padding: 80px 0;
      }
      .bg-main {
        background-color: var(--color-bg-main);
        position: relative;
      }
      .bg-alt {
        background-color: var(--color-bg-alt);
        position: relative;
        border-top: 1px solid rgba(14, 165, 233, 0.1);
      }
      .text-center {
        text-align: center;
      }
      .highlight {
        color: var(--color-accent);
        font-weight: 700;
      }

      /* --- Buttons / CTAs --- */
      .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 14px 28px;
        border-radius: 8px;
        font-family: var(--font-ui);
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
      }
      .btn-type-a {
        background: var(--gradient-wash);
        color: #fff;
      }
      .btn-type-a:hover {
        filter: brightness(1.1);
        transform: translateY(-2px);
      }
      .btn-type-b {
        background: transparent;
        color: var(--color-primary);
        border: 1.5px solid var(--color-primary);
      }
      .btn-type-b:hover {
        background: rgba(14, 165, 233, 0.15);
      }

      /* --- Navbar --- */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 20px 0;
        transition: all 0.3s ease;
      }
      .navbar.scrolled {
        background-color: rgba(11, 17, 32, 0.9);
        backdrop-filter: blur(10px);
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
      }
      .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .nav-logo {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--color-text-main);
      }
      .nav-logo span {
        color: var(--color-primary);
      }
      .nav-links {
        display: flex;
        gap: 24px;
      }
      .nav-links a {
        font-family: var(--font-ui);
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--color-primary);
      }
      .nav-actions {
        display: flex;
        gap: 12px;
        align-items: center;
      }
      .nav-actions .btn {
        padding: 10px 20px;
        font-size: 14px;
      }
      .hamburger {
        display: none;
        color: var(--color-text-main);
      }
      .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg-main);
        z-index: 99;
        padding: 80px 24px 24px;
        flex-direction: column;
        gap: 24px;
      }
      .mobile-menu.active {
        display: flex;
      }
      .mobile-menu a {
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 12px;
      }

      /* --- Floating CTA --- */
      .floating-cta {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 90;
        background: var(--gradient-wash);
        color: #fff;
        padding: 14px 28px;
        border-radius: 50px;
        font-family: var(--font-ui);
        font-weight: 600;
        text-transform: uppercase;
        box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
        animation: pulse 2s infinite;
        display: none;
      }
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(14, 165, 233, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
        }
      }

      /* --- Hero (Bonus) --- */
      .hero-bonus {
        position: relative;
        padding: 160px 0 100px;
        text-align: center;
        overflow: hidden;
      }
      .hero-bonus-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
      }
      .hero-bonus-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to top,
          rgba(11, 17, 32, 0.95),
          rgba(11, 17, 32, 0.6)
        );
        z-index: -1;
      }
      .hero-bonus-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(
          circle,
          rgba(245, 158, 11, 0.06) 0%,
          rgba(11, 17, 32, 0) 70%
        );
        z-index: 0;
      }
      .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
      }
      .hero-content p {
        font-size: 18px;
        margin-bottom: 32px;
      }

      /* --- Bonus Section Utilities --- */
      .bonus-intro {
        max-width: 800px;
        margin-bottom: 48px;
      }
      .bonus-block {
        padding: 48px 0;
        border-bottom: 1px solid var(--color-border);
      }
      .bonus-block:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .bonus-block-title {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--color-text-main);
      }

      .split-grid {
        display: flex;
        align-items: center;
        gap: 48px;
      }
      .split-image {
        flex: 0 0 45%;
        position: relative;
      }
      .split-image img {
        border-radius: 12px;
        width: 100%;
      }
      .split-text {
        flex: 1;
      }
      .row-reverse {
        flex-direction: row-reverse;
      }

      /* --- Bonus Detail List Component --- */
      .bonus-detail-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
      }
      .bonus-detail-row {
        display: flex;
        padding: 8px 0;
      }
      .bonus-detail-label {
        width: 160px;
        flex-shrink: 0;
        font-family: var(--font-ui);
        font-weight: 600;
        font-size: 13px;
        color: var(--color-text-sub);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .bonus-detail-value {
        flex: 1;
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 15px;
        color: var(--color-text-main);
      }
      .bonus-detail-value ul {
        padding-left: 20px;
        list-style-type: disc;
      }

      /* --- Tiered Deposit Cards Component --- */
      .ticket-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 32px;
      }
      .ticket-card {
        position: relative;
        border-radius: 12px;
        padding: 24px;
        overflow: hidden;
        transition: all 0.3s ease;
        background-color: var(--color-card);
        border: 1px solid transparent;
      }
      .ticket-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      }
      .ticket-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
      }

      .ticket-iron::before {
        background-color: #6b7280;
      }
      .ticket-iron {
        background: linear-gradient(
          180deg,
          rgba(107, 114, 128, 0.05) 0%,
          rgba(22, 32, 51, 1) 100%
        );
        border-color: rgba(107, 114, 128, 0.2);
      }
      .ticket-iron h4 {
        color: #6b7280;
      }

      .ticket-copper::before {
        background-color: #b87333;
      }
      .ticket-copper {
        background: linear-gradient(
          180deg,
          rgba(184, 115, 51, 0.05) 0%,
          rgba(22, 32, 51, 1) 100%
        );
        border-color: rgba(184, 115, 51, 0.2);
      }
      .ticket-copper h4 {
        color: #b87333;
      }

      .ticket-silver::before {
        background-color: #c0c0c0;
      }
      .ticket-silver {
        background: linear-gradient(
          180deg,
          rgba(192, 192, 192, 0.05) 0%,
          rgba(22, 32, 51, 1) 100%
        );
        border-color: rgba(192, 192, 192, 0.2);
      }
      .ticket-silver h4 {
        color: #c0c0c0;
      }

      .ticket-gold::before {
        background-color: #f59e0b;
      }
      .ticket-gold {
        background: linear-gradient(
          180deg,
          rgba(245, 158, 11, 0.05) 0%,
          rgba(22, 32, 51, 1) 100%
        );
        border-color: rgba(245, 158, 11, 0.2);
      }
      .ticket-gold h4 {
        color: #f59e0b;
      }

      .ticket-card h4 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 8px;
      }
      .ticket-threshold {
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 14px;
        color: var(--color-text-sub);
        margin-bottom: 12px;
      }
      .ticket-prize {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 28px;
        color: var(--color-accent);
        margin-bottom: 8px;
      }
      .ticket-item {
        font-family: var(--font-body);
        font-weight: 400;
        font-size: 13px;
        color: var(--color-text-sub);
      }

      /* --- Steps Component (4 Cols) --- */
      .steps-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        position: relative;
        margin: 48px 0;
      }
      .step-line {
        position: absolute;
        top: 28px;
        left: 12%;
        right: 12%;
        height: 1px;
        border-top: 1px dashed var(--color-border);
        z-index: 0;
      }
      .step-item {
        position: relative;
        z-index: 1;
        text-align: center;
      }
      .step-number {
        width: 56px;
        height: 56px;
        margin: 0 auto 20px;
        background-color: rgba(14, 165, 233, 0.1);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--color-primary);
      }
      .step-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
      }
      .step-item p {
        font-size: 14px;
      }

      /* --- Bonus Tips Component --- */
      .tips-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
        align-items: stretch;
      }
      .tip-card {
        background-color: var(--color-card);
        border: 1px solid var(--color-border);
        border-radius: 12px;
        padding: 32px;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
      }
      .tip-number {
        position: absolute;
        top: 16px;
        left: 24px;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 64px;
        color: rgba(14, 165, 233, 0.3);
        line-height: 1;
        z-index: 0;
      }
      .tip-card h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
      }
      .tip-card p {
        font-size: 15px;
        margin: 0;
        position: relative;
        z-index: 1;
      }

      /* --- FAQ --- */
      .faq-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 64px 0;
      }
      .faq-item {
        border-bottom: 1px solid var(--color-border);
      }
      .faq-question {
        width: 100%;
        text-align: left;
        padding: 20px 0;
        font-size: 17px;
        font-weight: 500;
        color: var(--color-text-main);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .faq-question.active {
        color: var(--color-primary);
      }
      .faq-icon {
        color: var(--color-primary);
        transition: transform 0.3s;
      }
      .faq-question.active .faq-icon {
        transform: rotate(180deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }
      .faq-answer p {
        padding-bottom: 20px;
        margin: 0;
        font-size: 15px;
      }

      /* --- Footer --- */
      .footer {
        background-color: var(--color-bg-main);
        border-top: 1px solid var(--color-border);
        padding: 64px 0 24px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
      }
      .footer-logo {
        font-family: var(--font-display);
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
        display: block;
      }
      .footer-logo span {
        color: var(--color-primary);
      }
      .footer h4 {
        color: var(--color-text-main);
        font-size: 16px;
        margin-bottom: 24px;
      }
      .footer ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer a {
        color: var(--color-text-sub);
        font-size: 14px;
        transition: color 0.2s;
      }
      .footer a:hover {
        color: var(--color-primary);
      }
      .footer-badges {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 24px;
      }
      .license-badge {
        display: inline-block;
        background-color: var(--color-surface);
        border: 1px solid var(--color-border);
        border-radius: 6px;
        padding: 6px 14px;
        font-family: var(--font-ui);
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
      }
      .footer-bottom {
        border-top: 1px solid var(--color-border);
        padding-top: 24px;
        text-align: center;
      }
      .footer-bottom p {
        font-size: 14px;
        margin: 0;
      }
      .warning-18 {
        color: var(--color-warning);
        font-weight: 600;
        font-size: 24px;
        display: inline-block;
        margin-bottom: 12px;
      }

      /* --- Responsive --- */
      @media (max-width: 1024px) {
        .ticket-cards {
          grid-template-columns: repeat(2, 1fr);
        }
        .steps-container {
          grid-template-columns: repeat(2, 1fr);
          gap: 32px;
        }
        .step-line {
          display: none;
        }
        .tips-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 767px) {
        h1 {
          font-size: 32px;
        }
        h2 {
          font-size: 28px;
        }
        .nav-links,
        .nav-actions {
          display: none;
        }
        .hamburger {
          display: block;
        }

        .hero-bonus {
          padding: 120px 0 80px;
        }
        .hero-content p {
          font-size: 16px;
        }

        .split-grid,
        .split-grid.row-reverse {
          flex-direction: column;
          text-align: left;
        }
        .split-image {
          width: 100%;
          order: -1;
        }

        .btn-type-a {
          width: 100%;
        }

        .bonus-detail-row {
          flex-direction: column;
          gap: 4px;
          padding: 12px 0;
          border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        }
        .bonus-detail-label {
          width: 100%;
        }

        .ticket-cards {
          grid-template-columns: 1fr;
        }

        .steps-container {
          grid-template-columns: 1fr;
          gap: 32px;
          text-align: left;
        }
        .step-item {
          display: flex;
          align-items: flex-start;
          gap: 20px;
          text-align: left;
        }
        .step-number {
          margin: 0;
          flex-shrink: 0;
        }

        .tips-grid {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }
      }
