  :root {
      --bg-gradient: linear-gradient(135deg, #090814 0%, #170d2b 50%, #0d061a 100%);
      --glass-bg: rgba(24, 20, 36, 0.65);
      --glass-border: rgba(145, 70, 255, 0.25);
      --glass-border-light: rgba(255, 255, 255, 0.12);
      --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
      --accent-purple: #9146ff;
      --accent-glow: rgba(145, 70, 255, 0.5);
      --live-red: #ff4654;
      --live-glow: rgba(255, 70, 84, 0.5);
      --text-main: #f0f0f5;
      --text-muted: #adadb8;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg-gradient);
      background-attachment: fixed;
      color: var(--text-main);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Navigation */
    nav {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--glass-border);
      padding: 16px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 100;
      position: relative;
    }

    .brand {
      font-size: 20px;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff 0%, #c4a1ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border-light);
      color: var(--text-main);
      padding: 10px 20px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .nav-btn:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--glass-border);
      transform: translateY(-2px);
    }

    .nav-btn.primary {
      background: var(--accent-purple);
      border-color: var(--accent-purple);
      box-shadow: 0 0 15px var(--accent-glow);
    }

    .nav-btn.primary:hover {
      background: #a362ff;
      box-shadow: 0 0 25px var(--accent-glow);
      transform: translateY(-2px);
    }

    /* Video & Animated Abstract Hero Section */
    .hero-wrapper {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-bottom: 1px solid var(--glass-border-light);
    }

    /* Video Background Layer */
    .hero-bg-media {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
      filter: saturate(1.2) contrast(1.1);
    }

    /* Abstract Layer: Dynamic Grid & Ambient Floating Blobs */
    .hero-abstract-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
      overflow: hidden;
      background: 
        linear-gradient(180deg, rgba(9, 8, 20, 0.3) 0%, #090814 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 100% 100%, 40px 40px, 40px 40px;
    }

    .glow-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
      animation: floatBlob ease-in-out infinite alternate;
    }

    .blob-1 {
      width: 380px;
      height: 380px;
      background: rgba(145, 70, 255, 0.55);
      top: -10%;
      left: 10%;
      animation-duration: 16s;
    }

    .blob-2 {
      width: 420px;
      height: 420px;
      background: rgba(255, 70, 84, 0.4);
      bottom: -10%;
      right: 10%;
      animation-duration: 22s;
      animation-delay: -5s;
    }

    .blob-3 {
      width: 300px;
      height: 300px;
      background: rgba(60, 180, 255, 0.35);
      top: 30%;
      right: 35%;
      animation-duration: 18s;
      animation-delay: -10s;
    }

    @keyframes floatBlob {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(90px, 50px) scale(1.15); }
      100% { transform: translate(-70px, -40px) scale(0.9); }
    }

    /* Hero Foreground Content */
    .hero {
      position: relative;
      z-index: 3;
      text-align: center;
      padding: 70px 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 900px;
    }

    .hero-title {
      font-size: 54px;
      font-weight: 800;
      line-height: 1.25; /* Increased line-height to prevent clipping descenders */
      padding-bottom: 8px; /* Adds extra room for letters like g, y, p, q, j */
      background: linear-gradient(180deg, #ffffff 0%, #d8c3ff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      max-width: 820px;
      text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .cta-button {
      margin-top: 10px;
      background: var(--accent-purple);
      color: #fff;
      padding: 16px 36px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 0 30px var(--accent-glow);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .cta-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 45px var(--accent-glow);
    }

    /* Main Container */
    .container {
      max-width: 1100px;
      margin: 40px auto 80px;
      padding: 0 24px;
    }

    /* Highlight News Card */
    .news-card {
      background: linear-gradient(135deg, rgba(255, 70, 84, 0.12) 0%, rgba(24, 20, 36, 0.85) 50%, rgba(145, 70, 255, 0.15) 100%);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 70, 84, 0.4);
      border-radius: 20px;
      padding: 28px 36px;
      margin-bottom: 60px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 70, 84, 0.15);
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .news-card:hover {
      border-color: rgba(255, 70, 84, 0.7);
      transform: translateY(-3px);
    }

    .news-header-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 70, 84, 0.15);
      border: 1px solid rgba(255, 70, 84, 0.3);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: #ff858d;
      width: fit-content;
      text-transform: uppercase;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background-color: var(--live-red);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--live-red);
      animation: pulse 1.5s infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 70, 84, 0.7); }
      70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(255, 70, 84, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 70, 84, 0); }
    }

    .news-body {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .news-content-text {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .news-title {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
    }

    .news-sub {
      font-size: 14px;
      color: var(--text-muted);
      max-width: 650px;
    }

    .news-btn {
      background: var(--live-red);
      color: #fff;
      padding: 12px 24px;
      border-radius: 24px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 0 20px var(--live-glow);
      transition: all 0.25s ease;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .news-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px var(--live-glow);
    }

    .section-title {
      font-size: 28px;
      text-align: center;
      margin-bottom: 12px;
      font-weight: 700;
      color: #fff;
    }

    .section-subtitle {
      text-align: center;
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 40px;
    }

    /* Features Grid */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-bottom: 60px;
    }

    .feature-card {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border-light);
      border-radius: 16px;
      padding: 32px;
      box-shadow: var(--glass-shadow);
      text-align: center;
      transition: border-color 0.3s ease, transform 0.3s ease;
    }

    .feature-card:hover {
      border-color: var(--glass-border);
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }

    .feature-name {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }

    .feature-desc {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* Pricing Section */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 60px;
    }

    .pricing-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border-light);
      border-radius: 20px;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: all 0.3s ease;
    }

    .pricing-card.pro {
      border: 1px solid var(--accent-purple);
      box-shadow: 0 0 30px var(--accent-glow);
      background: linear-gradient(180deg, rgba(32, 22, 54, 0.75) 0%, rgba(18, 14, 31, 0.85) 100%);
    }

    .popular-badge {
      position: absolute;
      top: -12px;
      right: 24px;
      background: var(--accent-purple);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 12px;
      text-transform: uppercase;
      box-shadow: 0 0 10px var(--accent-glow);
    }

    .plan-name { font-size: 22px; font-weight: 800; color: #fff; }
    .plan-price { font-size: 36px; font-weight: 800; color: #fff; margin: 12px 0 6px; }
    .plan-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }
    .plan-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

    .feature-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 30px;
      font-size: 14px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
    }

    .feature-list li.enabled { color: var(--text-main); }
    .feature-list li.enabled span.icon { color: #a362ff; font-weight: bold; }
    .feature-list li.disabled { opacity: 0.4; }

    .pricing-btn {
      width: 100%;
      text-align: center;
      padding: 12px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .pricing-btn.secondary {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--glass-border-light);
      color: #fff;
    }
    .pricing-btn.secondary:hover { background: rgba(255, 255, 255, 0.15); }

    .pricing-btn.primary {
      background: var(--accent-purple);
      color: #fff;
      box-shadow: 0 0 20px var(--accent-glow);
    }
    .pricing-btn.primary:hover {
      background: #a362ff;
      box-shadow: 0 0 30px var(--accent-glow);
      transform: translateY(-2px);
    }

    /* Info & FAQ Cards */
    .info-card {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border-light);
      border-radius: 16px;
      padding: 40px;
      box-shadow: var(--glass-shadow);
      margin-bottom: 30px;
    }

    .info-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #fff;
      text-align: center;
    }

    .prose {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto;
    }

    .prose p { margin-bottom: 16px; }
    .prose strong { color: var(--text-main); }
    
    /* FAQ Section */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .faq-item {
      border: 1px solid var(--glass-border-light);
      border-radius: 8px;
      background: rgba(0, 0, 0, 0.2);
      overflow: hidden;
      transition: border-color 0.2s ease;
    }

    .faq-question {
      padding: 16px 20px;
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 16px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .faq-item.active { border-color: var(--glass-border); }
    .faq-item.active .faq-answer { display: block; }







    /* Footer */
    footer {
      text-align: center;
      padding: 30px 24px;
      border-top: 1px solid var(--glass-border-light);
      font-size: 13px;
      color: var(--text-muted);
      background: rgba(12, 9, 20, 0.8);
    }

    footer a {
      color: var(--text-main);
      text-decoration: none;
      margin: 0 8px;
      font-weight: 600;
    }

    footer a:hover {
      color: var(--accent-purple);
    }

    @media (max-width: 600px) {
      .event-banner {
        flex-direction: column;
        text-align: center;
      }
      .event-info {
        flex-direction: column;
        text-align: center;
      }
    }
	
	/* Header Section */
    .header-section {
      text-align: center;
      padding: 70px 24px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(145, 70, 255, 0.15);
      border: 1px solid var(--glass-border);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      color: #c4a1ff;
    }

    .header-title {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.2;
      background: linear-gradient(180deg, #ffffff 0%, #b8a3e0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      max-width: 800px;
    }

    .header-subtitle {
      color: var(--text-muted);
      font-size: 16px;
      max-width: 600px;
    }

/* Step Card Layout */
    .step-card {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border-light);
      border-radius: 16px;
      padding: 36px;
      box-shadow: var(--glass-shadow);
      display: flex;
      gap: 24px;
      transition: border-color 0.3s ease;
    }

    .step-card:hover {
      border-color: var(--glass-border);
    }

    .step-number {
      background: rgba(145, 70, 255, 0.2);
      border: 1px solid var(--accent-purple);
      color: #fff;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 20px;
      flex-shrink: 0;
      box-shadow: 0 0 15px rgba(145, 70, 255, 0.3);
    }

    .step-content {
      flex: 1;
    }

    .step-title {
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }

    .step-text {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .step-text strong {
      color: var(--text-main);
    }

    .code-pill {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid var(--glass-border-light);
      padding: 2px 8px;
      border-radius: 6px;
      font-family: monospace;
      font-size: 13px;
      color: #c4a1ff;
    }

    /* Tip Box */
    .tip-box {
      margin-top: 16px;
      background: rgba(145, 70, 255, 0.1);
      border-left: 3px solid var(--accent-purple);
      padding: 12px 16px;
      border-radius: 0 8px 8px 0;
      font-size: 14px;
      color: #d1c4e9;
    }

    /* Launch Callout */
    .launch-card {
      background: linear-gradient(135deg, rgba(145, 70, 255, 0.2) 0%, rgba(24, 20, 36, 0.8) 100%);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      box-shadow: var(--glass-shadow);
    }

    .cta-button {
      background: var(--accent-purple);
      color: #fff;
      padding: 16px 36px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 0 30px var(--accent-glow);
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .cta-button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 45px var(--accent-glow);
    }
	
/* Main Container */
    .container {
      max-width: 900px;
      margin: 0 auto 80px;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
	
	
	    /* Policy Content Area */
    .container {
      max-width: 900px;
      margin: 40px auto 80px;
      padding: 0 24px;
      width: 100%;
    }

    .policy-card {
      background: var(--glass-bg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 48px;
      box-shadow: var(--glass-shadow);
    }

    .policy-header {
      border-bottom: 1px solid var(--glass-border-light);
      padding-bottom: 24px;
      margin-bottom: 32px;
    }

    .policy-header h1 {
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(180deg, #ffffff 0%, #b8a3e0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 8px;
    }

    .effective-date {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .policy-section {
      margin-bottom: 32px;
    }

    .policy-section:last-child {
      margin-bottom: 0;
    }

    .policy-section h2 {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .policy-section p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .policy-section ul {
      list-style-type: disc;
      padding-left: 20px;
      color: var(--text-muted);
      font-size: 15px;
      margin-bottom: 12px;
    }

    .policy-section li {
      margin-bottom: 6px;
    }

    .highlight-box {
      background: rgba(145, 70, 255, 0.1);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 16px 20px;
      margin: 16px 0;
      font-size: 14px;
      color: #d1c4e9;
    }
	
	 .terms-card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 40px;
      box-shadow: var(--glass-shadow);
    }

    .terms-header {
      border-bottom: 1px solid var(--glass-border-light);
      padding-bottom: 20px;
      margin-bottom: 30px;
    }

    .terms-header h1 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(180deg, #ffffff 0%, #b8a3e0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .effective-date {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .terms-section {
      margin-bottom: 30px;
    }

    .terms-section h2 {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }

    .terms-section h3 {
      font-size: 16px;
      font-weight: 600;
      color: #c4a1ff;
      margin-top: 15px;
      margin-bottom: 8px;
    }

    .terms-section p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 15px;
    }

    .terms-section ul {
      list-style-type: disc;
      padding-left: 20px;
      color: var(--text-muted);
      font-size: 15px;
      margin-bottom: 15px;
    }

    .terms-section li {
      margin-bottom: 6px;
    }

    .important-notice {
      background: rgba(145, 70, 255, 0.1);
      border: 1px solid var(--glass-border);
      border-radius: 10px;
      padding: 15px;
      margin: 20px 0;
      color: #d1c4e9;
      font-weight: 500;
    }

    .contact-info {
      background: rgba(0, 0, 0, 0.3);
      padding: 15px;
      border-radius: 8px;
      border: 1px solid var(--glass-border-light);
      font-size: 14px;
      color: var(--text-muted);
    }
