 /* ─── PREMIUM DARK DESIGN TOKENS (ABYSS THEME) ─── */
    :root {
      /* Pushed backgrounds to an extremely deep, near-black midnight */
      --bg-base: #07090f;
      --bg-subtle: #0f1423;
      --bg-surface: #141a2e;
      
      --text-main: #ffffff;
      --text-muted: #94a3b8;
      
      /* Balanced: Visible but not overpowering semi-transparent white borders */
      --border-light: rgba(255, 255, 255, 0.4); /* Softened slightly for form usage */
      --border-hover: rgba(255, 255, 255, 0.6);
      
      /* Midas Touch (Gold replacing all vibrant colors) */
      --brand-gold: #fbbf24;
      --brand-gold-light: #fde047;
      --brand-gold-dark: #d97706;
      
      /* UI Primary variables */
      --brand-primary: var(--brand-gold); 
      --brand-primary-hover: var(--brand-gold-light);
      --brand-gradient: linear-gradient(135deg, var(--brand-gold-light), var(--brand-gold-dark));
      
      /* Semantic Colors */
      --success: #10b981;      
      --warning: #fbbf24;      
      --danger: #ef4444;
      
      /* Theme specific UI properties */
      --header-bg: rgba(7, 9, 15, 0.85);
      --header-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      
      --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
      --shadow-md: 0 10px 20px rgba(0,0,0,0.5);
      --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.7);
      --shadow-glow: 0 10px 30px -10px rgba(251, 191, 36, 0.25);
      --shadow-float: 0 20px 40px rgba(0,0,0,0.8);
      
      --font-main: 'Plus Jakarta Sans', sans-serif;
      --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      
      /* Bento-style large radii */
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 32px;
      --radius-full: 9999px;
    }

    /* ─── RESET & BASE ─── */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--font-main);
      background-color: var(--bg-base);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    button { border: none; background: none; font-family: inherit; cursor: pointer; color: inherit; outline: none; }
    ul { list-style: none; }

    /* ─── AMBIENT LIGHT BLOOMS ─── */
    .ambient-bloom {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }
    .bloom-gold { background: rgba(251, 191, 36, 0.25); }
    .bloom-violet { background: rgba(124, 58, 237, 0.15); }
    .bloom-dark-purple { background: rgba(88, 28, 135, 0.20); }

    /* ─── TYPOGRAPHY & UTILS ─── */
    .text-primary { color: var(--brand-primary); }
    .text-success { color: var(--success); }
    .text-danger { color: var(--danger); }
    .text-muted { color: var(--text-muted); }
    .font-semibold { font-weight: 600; }
    .font-bold { font-weight: 700; }
    .font-extrabold { font-weight: 800; letter-spacing: -0.02em; }
    
    .flex { display: flex; }
    .items-center { align-items: center; }
    .justify-between { justify-content: space-between; }

    /* ─── APP HEADER ─── */
    .app-header {
      position: sticky; top: 0; z-index: 100;
      background: var(--header-bg);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid transparent;
      padding: 0 32px;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      transition: var(--transition);
    }
    .app-header.scrolled { border-bottom-color: var(--border-light); box-shadow: var(--header-shadow); }
    
    .brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 24px; color: var(--text-main); letter-spacing: -0.05em; }
    .brand-icon { width: 32px; height: 32px; background: var(--brand-gold); border: 1px solid var(--border-light); border-radius: 8px; display: grid; place-items: center; color: #000; }
    .price_toptext {
      margin-bottom: 10px;
    }
    .search-bar {
      flex: 1; max-width: 600px; margin: 0 40px;
      display: flex; align-items: center; gap: 12px;
      background: var(--bg-subtle); 
      border: 1px solid var(--border-light);
      padding: 10px 16px 10px 24px; 
      border-radius: var(--radius-full);
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
      transition: var(--transition);
      position: relative;
    }
    .search-bar:focus-within { 
      border-color: var(--brand-primary); 
      box-shadow: var(--shadow-glow);
    }
    .search-bar input { flex: 1; border: none; background: transparent; color: var(--text-main); font-size: 15px; font-weight: 500; outline: none; }
    .search-bar input::placeholder { color: var(--text-muted); opacity: 0.7; }
    .search-kbd { display: flex; gap: 4px; align-items: center; }
    .search-kbd kbd {
      background: var(--bg-base); color: var(--text-muted);
      border: 1px solid var(--border-light); border-radius: 6px;
      padding: 4px 8px; font-size: 12px; font-family: monospace; font-weight: 700;
    }
    
    .header-actions { display: flex; align-items: center; gap: 12px; }
    .icon-btn { 
      width: 44px; height: 44px; border-radius: var(--radius-full); 
      display: grid; place-items: center; color: var(--text-muted); 
      border: 1px solid var(--border-light); background: rgba(255, 255, 255, 0.02);
      transition: var(--transition); box-shadow: var(--shadow-sm);
    }
    .icon-btn:hover { background: rgba(255, 255, 255, 0.06); color: var(--brand-gold); border-color: var(--brand-gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }

    /* ─── PAGE LAYOUT ─── */
    .app-container { max-width: 1200px; margin: 80px auto; padding: 40px 24px; position: relative; z-index: 10; }
     
    .page-title {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: -0.03em;
      margin-bottom: 8px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .page-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      font-weight: 500;
      margin-bottom: 48px;
    }

    .support-layout {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      align-items: start;
    }

    /* ─── INFO CARDS (LEFT) ─── */
    .info-section { display: flex; flex-direction: column; gap: 24px; }
    
    .support-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .support-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
    
    .support-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
      background: var(--brand-gradient); opacity: 0; transition: var(--transition);
    }
    .support-card:hover::before { opacity: 1; }

    .card-title {
      font-size: 18px; font-weight: 800; color: var(--text-main);
      margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
      letter-spacing: -0.02em;
    }
    .card-title i { color: var(--brand-primary); }

    .contact-detail-list { display: flex; flex-direction: column; gap: 16px; }
    .contact-item { display: flex; align-items: flex-start; gap: 16px; }
    .contact-icon {
      width: 40px; height: 40px; border-radius: var(--radius-full);
      background: rgba(251, 191, 36, 0.1); display: grid; place-items: center;
      color: var(--brand-primary); border: 1px solid var(--border-light);
      flex-shrink: 0;
    }
    .contact-text { font-size: 15px; }
    .contact-label { font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
    .contact-value { font-weight: 700; color: var(--text-main); }
    .contact-value a { transition: color 0.2s; }
    .contact-value a:hover { color: var(--brand-primary); text-decoration: underline; }

    /* Remote Links */
    .download-btn {
      display: flex; align-items: center; justify-content: space-between;
      width: 100%; padding: 16px 20px; margin-bottom: 12px;
      background: var(--bg-subtle); border: 1px solid var(--border-light);
      border-radius: var(--radius-md); font-weight: 700; color: var(--text-main);
      transition: var(--transition); cursor: pointer;
    }
    .download-btn:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--brand-primary); color: var(--brand-primary); box-shadow: var(--shadow-sm); }
    .download-left { display: flex; align-items: center; gap: 12px; }

    /* ─── FORM CARD (RIGHT) ─── */
    .form-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    
    .form-header { margin-bottom: 32px; }
    .form-header h2 { font-size: 24px; font-weight: 800; color: var(--text-main); letter-spacing: -0.03em; margin-bottom: 8px; }
    .form-header p { color: var(--text-muted); font-size: 15px; }

    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .form-group.full-width { grid-column: 1 / -1; }
    
    .form-label { display: block; font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
    .form-control {
      width: 100%; padding: 14px 16px; border: 1px solid var(--border-light);
      border-radius: var(--radius-sm); background: var(--bg-subtle);
      color: var(--text-main); font-family: inherit; font-size: 15px; font-weight: 500;
      transition: var(--transition); outline: none;
    }
    .form-control:focus {
      background: var(--bg-base); border-color: var(--brand-primary);
      box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
    }
    .form-control::placeholder { color: var(--text-muted); opacity: 0.5; }
    
    textarea.form-control { resize: vertical; min-height: 120px; }

    /* Captcha Placeholder styling */
    .captcha-box {
      display: inline-flex; align-items: center; gap: 16px;
      padding: 16px 24px; background: var(--bg-subtle); border: 1px solid var(--border-light);
      border-radius: var(--radius-sm); margin-top: 8px; width: 100%;
    }
    .captcha-box input[type="checkbox"] {
      width: 24px; height: 24px; appearance: none; border: 2px solid var(--border-light);
      border-radius: 4px; background: var(--bg-base); cursor: pointer; transition: var(--transition);
      position: relative;
    }
    .captcha-box input[type="checkbox"]:checked { background: var(--brand-gold); border-color: var(--brand-gold); }
    .captcha-box input[type="checkbox"]:checked::after {
      content: ''; position: absolute; left: 7px; top: 3px; width: 6px; height: 12px;
      border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg);
    }
    .captcha-logo { display: flex; align-items: center; font-size: 10px; font-weight: 700; }

    .submit-btn {
      width: 100%; padding: 16px; border-radius: var(--radius-full);
      background: var(--brand-gradient); color: #000; font-size: 16px; font-weight: 800;
      margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 12px;
      transition: var(--transition); box-shadow: var(--shadow-glow); cursor: pointer;
      border: 1px solid var(--border-light);
    }
    .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -5px rgba(251, 191, 36, 0.4); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 992px) {
      .support-layout { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .app-header { padding: 0 20px; }
      .search-bar { display: none; }
      .page-title { font-size: 28px; }
      .form-card { padding: 24px; }
    }