:root {
    --green: #39ff6a;
    --green-dim: #1a7a35;
    --teal: #00e5cc;
    --bg: #0a0d0f;
    --bg2: #0f1318;
    --bg3: #141a20;
    --border: rgba(57,255,106,0.12);
    --text: #e8edf2;
    --muted: #6b7a8a;
  }

  /* GLOBAL LINK RESET */
  a { color: inherit; text-decoration: none; }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* GRID TEXTURE */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(57,255,106,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(57,255,106,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(10,13,15,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .nav-logo span { color: var(--green); }

  nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--green); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 4px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
  }
  .btn-primary {
    background: var(--green);
    color: #0a0d0f;
  }
  .btn-primary:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(57,255,106,0.3);
  }
  .btn-outline {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
  }
  .btn-outline:hover {
    background: rgba(57,255,106,0.08);
  }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 80px;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(57,255,106,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-glow2 {
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,229,204,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
  }
  .hero-label::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 6vw, 80px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
  }
  h1 .accent { color: var(--green); }
  h1 .outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
  }

  .hero-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }

  /* MOCK PLUGIN UI */
  .plugin-mock {
    position: relative;
  }

  .device-frame {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(57,255,106,0.05);
  }

  .device-bar {
    background: var(--bg3);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .device-bar-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
  }

  .price-list {
    padding: 8px 0;
  }
  .price-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 12px;
    transition: background 0.2s;
    cursor: pointer;
  }
  .price-item:hover { background: rgba(57,255,106,0.04); }
  .price-item:last-child { border-bottom: none; }
  .price-item.best { background: rgba(57,255,106,0.06); }

  .store-badge {
    width: 32px; height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .badge-gog { background: rgba(86,189,102,0.15); color: #56bd66; }
  .badge-fan { background: rgba(255,107,53,0.15); color: #ff6b35; }
  .badge-gmg { background: rgba(0,132,255,0.15); color: #0084ff; }
  .badge-steam { background: rgba(102,170,255,0.15); color: #66aaff; }

  .price-info { flex: 1; }
  .store-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }
  .price-orig {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
  }
  .price-final {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
  }
  .price-item.best .price-final { color: var(--green); }
  .discount-tag {
    background: var(--green);
    color: #0a0d0f;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 12px;
    padding: 2px 7px;
    border-radius: 3px;
  }

  .game-title-bar {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .game-thumb {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #1a2a1a, #0a1a0f);
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    flex-shrink: 0;
  }
  .game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .game-info-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .game-info-sub {
    font-size: 11px;
    color: var(--green);
    margin-top: 2px;
  }

  /* FLOATING TAG */
  .float-tag {
    position: absolute;
    top: -16px; right: -16px;
    background: var(--green);
    color: #0a0d0f;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(57,255,106,0.4);
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  /* SECTION */
  section {
    position: relative;
    z-index: 1;
    padding: 100px 48px;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
  }

  h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 4vw, 56px);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  h2 .accent { color: var(--green); }

  .section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 64px;
  }

  /* HOW IT WORKS */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }

  .step {
    background: var(--bg2);
    padding: 40px 32px;
    position: relative;
  }

  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: rgba(57,255,106,0.08);
    position: absolute;
    top: 16px; right: 24px;
    pointer-events: none;
    user-select: none;
  }

  .step-icon {
    width: 48px; height: 48px;
    background: rgba(57,255,106,0.08);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
  }

  .step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* STORES */
  .stores-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .store-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.2s;
  }
  .store-pill:hover {
    border-color: var(--green);
    color: var(--green);
  }
  .store-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }

  /* PLANS */
  .plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 720px;
  }

  .plan {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 32px;
    position: relative;
  }

  .plan.featured {
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(57,255,106,0.04), var(--bg2));
  }

  .plan-tag {
    position: absolute;
    top: -12px; left: 24px;
    background: var(--green);
    color: #0a0d0f;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
  }

  .plan-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .plan-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
  }
  .plan-price sup {
    font-size: 20px;
    vertical-align: super;
    font-weight: 700;
    opacity: 0.6;
  }
  .plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
  }

  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .plan-features li {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .plan-features li::before {
    content: '—';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
  }
  .plan.featured .plan-features li { color: var(--text); }

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

  .platform-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .platform-icon {
    font-size: 36px;
    line-height: 1;
  }

  .platform-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .platform-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .footer-logo span { color: var(--green); }

  footer p {
    font-size: 13px;
    color: var(--muted);
  }

  footer a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--green); }

  /* DEALS SEARCH */
  .deals-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 18px;
    height: 54px;
    max-width: 600px;
    margin-bottom: 40px;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .deals-search-wrap:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(57,255,106,0.15);
  }
  .deals-search-icon {
    color: var(--muted);
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
  }
  .deals-search-wrap .gc-search-input {
    font-size: 16px;
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    outline: none;
    color: var(--text);
  }
  .deals-search-wrap .gc-search-input::placeholder {
    color: var(--muted);
  }
  .deals-search-wrap .gc-search-panel {
    top: calc(100% + 6px);
    left: 0;
    right: 0;
  }

  .gc-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
  }

  /* INSTALL SECTION */
  .install-panel {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
  }
  .install-steps {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .install-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg2);
    padding: 28px 28px;
    transition: background 0.2s;
  }
  .install-step:hover {
    background: rgba(57,255,106,0.03);
  }
  .install-step-num {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(57,255,106,0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .install-step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 6px;
  }
  .install-step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }
  .install-actions-panel {
    position: sticky;
    top: 88px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .install-actions-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
  }
  .install-actions-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .install-actions-title span { color: var(--green); }
  .install-url {
    font-size: 11px;
    color: var(--muted);
    word-break: break-all;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 12px;
    font-family: monospace;
    line-height: 1.5;
    user-select: all;
  }
  .install-toast {
    font-size: 13px;
    color: var(--green);
    min-height: 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  /* SEPARATOR */
  .sep {
    border: none;
    border-top: 1px solid var(--border);
  }

  /* TELEGRAM SECTION */
  .tg-block {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .tg-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }
  .tg-block p {
    font-size: 15px;
    color: var(--muted);
    max-width: 400px;
    line-height: 1.6;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    nav ul { display: none; }
    .hero { padding: 100px 24px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    section { padding: 60px 24px; }
    .steps { grid-template-columns: 1fr; }
    .plans { grid-template-columns: 1fr; max-width: 400px; }
    .platforms { grid-template-columns: 1fr; }
    .install-panel { grid-template-columns: 1fr; }
    .install-actions-panel { position: static; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
  }

  /* ANIMATIONS */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.6s forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }