/* ============================================
   GG Store — Futuristic Shop Styles
   Matches homepage aesthetic: Orbitron + Rajdhani,
   lime/purple accents, glassmorphism, star-drift
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --gg-lime: #84ff00;
    --gg-lime-dim: rgba(132, 255, 0, 0.15);
    --gg-purple: #a855f7;
    --gg-purple-dim: rgba(168, 85, 247, 0.15);
    --gg-dark: #0a0a0f;
    --gg-dark-card: #111118;
    --gg-dark-surface: #1a1a2e;
    --gg-text: #f0f0f0;
    --gg-text-muted: #9ca3af;
    --gg-text-secondary: #d8b4fe;
    --gg-gold: #fbbf24;
    --gg-cyan: #00bfff;
    --gg-red: #ef4444;
    --gg-orange: #f97316;
    --gg-transition: 0.3s ease;
    --gg-radius: 14px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--gg-dark);
    color: var(--gg-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* fixed header offset */
}

/* ---- Utility ---- */
.store-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.accent-lime { color: var(--gg-lime); }

/* ============================================
   HERO
   ============================================ */
.store-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(46, 16, 101, 0.4) 0%, var(--gg-dark) 70%);
}

/* Animated star background */
.hero-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 15% 25%, rgba(132, 255, 0, 0.6), transparent),
        radial-gradient(2px 2px at 45% 65%, rgba(168, 85, 247, 0.5), transparent),
        radial-gradient(1px 1px at 70% 15%, #fff, transparent),
        radial-gradient(1px 1px at 85% 55%, rgba(132, 255, 0, 0.4), transparent),
        radial-gradient(1px 1px at 30% 80%, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(2px 2px at 55% 35%, #fff, transparent);
    background-size: 200% 200%;
    animation: starDrift 80s linear infinite;
    opacity: 0.6;
}
@keyframes starDrift { 0% { background-position: 0% 0%; } 100% { background-position: 100% 100%; } }

.hero-content { position: relative; z-index: 1; padding: 2rem; }

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 40px rgba(132, 255, 0, 0.35);
    margin-bottom: 0.4rem;
}

.hero-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gg-purple);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(168, 85, 247, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gg-text-muted);
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

/* Quick-nav chips */
.hero-nav { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.hero-nav-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--gg-text);
    background: var(--gg-dark-card);
    border: 1px solid rgba(132, 255, 0, 0.15);
    border-radius: 999px;
    transition: all var(--gg-transition);
}
.hero-nav-chip:hover {
    background: rgba(132, 255, 0, 0.1);
    border-color: var(--gg-lime);
    color: var(--gg-lime);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(132, 255, 0, 0.15);
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-hint span { font-size: 0.75rem; color: var(--gg-text-muted); text-transform: uppercase; letter-spacing: 2px; }
.scroll-arrow { width: 18px; height: 18px; border-right: 2px solid var(--gg-lime); border-bottom: 2px solid var(--gg-lime); transform: rotate(45deg); }
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50%      { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   STORE SECTIONS — shared layout
   ============================================ */
.store-section {
    padding: 5rem 0;
    position: relative;
}
/* Alternate subtle gradient backgrounds */
#tokens   { background: linear-gradient(180deg, var(--gg-dark) 0%, var(--gg-dark-surface) 50%, var(--gg-dark) 100%); }
#games    { background: linear-gradient(180deg, var(--gg-dark) 0%, rgba(46, 16, 101, 0.12) 50%, var(--gg-dark) 100%); }
#subscriptions { background: linear-gradient(180deg, var(--gg-dark) 0%, var(--gg-dark-surface) 50%, var(--gg-dark) 100%); }
#consoles { background: linear-gradient(180deg, var(--gg-dark) 0%, rgba(46, 16, 101, 0.12) 50%, var(--gg-dark) 100%); }
#merch    { background: linear-gradient(180deg, var(--gg-dark) 0%, var(--gg-dark-surface) 50%, var(--gg-dark) 100%); }

/* Section headers */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.section-title.lime   { color: var(--gg-lime);   text-shadow: 0 0 20px rgba(132, 255, 0, 0.4); }
.section-title.purple { color: var(--gg-purple); text-shadow: 0 0 20px rgba(168, 85, 247, 0.4); }
.section-title i { margin-right: 0.5rem; }
.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gg-lime), var(--gg-purple));
    margin: 0.8rem auto;
    border-radius: 2px;
}
.section-desc { color: var(--gg-text-muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.section-cta  { text-align: center; margin-top: 2.5rem; }

/* ============================================
   SHARED BUTTONS
   ============================================ */
.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--gg-transition);
}
.btn-store.btn-lime {
    background: var(--gg-lime);
    color: #000;
    box-shadow: 0 4px 20px rgba(132, 255, 0, 0.3);
}
.btn-store.btn-lime:hover {
    background: #9fff33;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(132, 255, 0, 0.5);
}
.btn-store.btn-outline-purple {
    background: transparent;
    color: var(--gg-purple);
    border: 2px solid var(--gg-purple);
}
.btn-store.btn-outline-purple:hover {
    background: rgba(168, 85, 247, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.3);
}
.btn-store.btn-sm { padding: 0.5rem 1rem; font-size: 0.7rem; }

/* ============================================
   BADGES
   ============================================ */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    z-index: 2;
}
.badge-lime   { background: linear-gradient(135deg, var(--gg-lime), #66cc00); color: #000; }
.badge-purple { background: linear-gradient(135deg, var(--gg-purple), #7c3aed); color: #fff; }
.badge-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; }
.badge-orange { background: linear-gradient(135deg, var(--gg-orange), #ea580c); color: #fff; }

/* ============================================
   TOKENS
   ============================================ */
.tokens-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.token-card {
    position: relative;
    background: var(--gg-dark-card);
    border: 1px solid rgba(132, 255, 0, 0.12);
    border-radius: var(--gg-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--gg-transition);
    overflow: hidden;
}
.token-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(132, 255, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.token-card:hover::before { opacity: 1; }
.token-card:hover {
    transform: translateY(-8px);
    border-color: rgba(132, 255, 0, 0.35);
    box-shadow: 0 15px 40px rgba(132, 255, 0, 0.12);
}
/* Featured token highlight */
.token-card.featured {
    border-color: rgba(132, 255, 0, 0.35);
    box-shadow: 0 0 30px rgba(132, 255, 0, 0.1);
}

.token-amount { margin-bottom: 0.5rem; }
.token-icon { font-size: 2.2rem; color: var(--gg-lime); display: block; margin-bottom: 0.3rem; }
.token-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    display: block;
}
.token-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gg-text-muted);
    margin-bottom: 0.3rem;
}
.token-bonus {
    font-size: 0.8rem;
    color: var(--gg-lime);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.token-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gg-lime);
    margin-bottom: 1rem;
}

/* ============================================
   GAMES
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.game-store-card {
    position: relative;
    background: var(--gg-dark-card);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--gg-radius);
    overflow: hidden;
    transition: all var(--gg-transition);
}
.game-store-card:hover {
    transform: translateY(-8px);
    border-color: var(--gg-purple);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.25);
}

.game-store-image { position: relative; width: 100%; height: 180px; overflow: hidden; }
.game-store-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.game-store-card:hover .game-store-image img { transform: scale(1.06); }

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}
.badge-live { background: var(--gg-lime); color: #000; }
.badge-new  { background: linear-gradient(135deg, var(--gg-purple), #7c3aed); color: #fff; }

.game-store-body { padding: 1.2rem; }
.game-store-body h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: var(--gg-text);
    margin-bottom: 0.25rem;
}
.game-genre {
    font-size: 0.78rem;
    color: var(--gg-text-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.game-editions { display: flex; gap: 0.5rem; }
.edition-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.6rem 0.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 8px;
    color: var(--gg-text);
    cursor: pointer;
    transition: all var(--gg-transition);
}
.edition-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--gg-purple);
    transform: translateY(-2px);
}
.edition-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gg-text-muted);
}
.edition-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gg-purple);
}

/* ============================================
   SUBSCRIPTIONS
   ============================================ */
.subs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.sub-card {
    position: relative;
    background: var(--gg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--gg-radius);
    padding: 0 1.3rem 1.5rem;
    text-align: center;
    transition: all var(--gg-transition);
    overflow: hidden;
}
.sub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Tier color bar at top */
.sub-tier-bar { height: 4px; margin: 0 -1.3rem; margin-bottom: 1.5rem; }
.tier-casual  .sub-tier-bar { background: #6b7280; }
.tier-tryhard .sub-tier-bar { background: var(--gg-lime); }
.tier-pro     .sub-tier-bar { background: #3b82f6; }
.tier-legend  .sub-tier-bar { background: var(--gg-purple); }
.tier-godmode .sub-tier-bar { background: linear-gradient(90deg, var(--gg-orange), #f59e0b); }

/* Hover border color per tier */
.tier-casual:hover  { border-color: rgba(107, 114, 128, 0.5); }
.tier-tryhard:hover { border-color: rgba(132, 255, 0, 0.4); }
.tier-pro:hover     { border-color: rgba(59, 130, 246, 0.5); }
.tier-legend:hover  { border-color: rgba(168, 85, 247, 0.5); }
.tier-godmode:hover { border-color: rgba(249, 115, 22, 0.5); }

.sub-header { margin-bottom: 0.6rem; }
.sub-tier-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.tier-casual  .sub-tier-icon { background: rgba(107, 114, 128, 0.2); color: #9ca3af; }
.tier-tryhard .sub-tier-icon { background: rgba(132, 255, 0, 0.15); color: var(--gg-lime); }
.tier-pro     .sub-tier-icon { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.tier-legend  .sub-tier-icon { background: rgba(168, 85, 247, 0.15); color: var(--gg-purple); }
.tier-godmode .sub-tier-icon { background: rgba(249, 115, 22, 0.15); color: var(--gg-orange); }

.sub-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.15rem;
}
.sub-tier-tag {
    font-size: 0.72rem;
    color: var(--gg-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-price { margin-bottom: 0.8rem; }
.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    display: block;
}
.tier-casual  .price-amount { color: #9ca3af; }
.tier-tryhard .price-amount { color: var(--gg-lime); }
.tier-pro     .price-amount { color: #60a5fa; }
.tier-legend  .price-amount { color: var(--gg-purple); }
.tier-godmode .price-amount { color: var(--gg-orange); }

.price-cycle { font-size: 0.8rem; color: var(--gg-text-muted); display: block; }

.sub-savings {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gg-lime);
    background: rgba(132, 255, 0, 0.1);
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.sub-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.2rem;
    padding: 0;
}
.sub-features li {
    font-size: 0.82rem;
    color: var(--gg-text-muted);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sub-features li i { font-size: 0.65rem; flex-shrink: 0; }
.tier-casual  .sub-features li i { color: #6b7280; }
.tier-tryhard .sub-features li i { color: var(--gg-lime); }
.tier-pro     .sub-features li i { color: #60a5fa; }
.tier-legend  .sub-features li i { color: var(--gg-purple); }
.tier-godmode .sub-features li i { color: var(--gg-orange); }

/* Sub buttons */
.btn-sub {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--gg-transition);
}
.btn-casual {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}
.btn-casual:hover { background: rgba(107, 114, 128, 0.3); }
.btn-tryhard {
    background: var(--gg-lime);
    color: #000;
    box-shadow: 0 4px 15px rgba(132, 255, 0, 0.25);
}
.btn-tryhard:hover { background: #9fff33; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(132, 255, 0, 0.4); }
.btn-pro {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.btn-pro:hover { background: #60a5fa; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5); }
.btn-legend {
    background: var(--gg-purple);
    color: #fff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
.btn-legend:hover { background: #c084fc; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5); }
.btn-godmode {
    background: linear-gradient(135deg, var(--gg-orange), #f59e0b);
    color: #000;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
}
.btn-godmode:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5); }

/* ============================================
   CONSOLES
   ============================================ */
.consoles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.console-card {
    background: var(--gg-dark-card);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: var(--gg-radius);
    overflow: hidden;
    transition: all var(--gg-transition);
    text-align: center;
}
.console-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.console-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gg-purple);
    background: rgba(168, 85, 247, 0.06);
}

.console-body { padding: 1.5rem; }
.console-body h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.console-desc { font-size: 0.9rem; color: var(--gg-text-muted); margin-bottom: 1rem; }
.console-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gg-purple);
    margin-bottom: 1rem;
}
.coming-soon-tag {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: rgba(168, 85, 247, 0.15);
    color: var(--gg-text-secondary);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* ============================================
   MERCH
   ============================================ */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.merch-card {
    background: var(--gg-dark-card);
    border: 1px solid rgba(132, 255, 0, 0.1);
    border-radius: var(--gg-radius);
    overflow: hidden;
    transition: all var(--gg-transition);
}
.merch-card:hover {
    transform: translateY(-6px);
    border-color: rgba(132, 255, 0, 0.3);
    box-shadow: 0 12px 35px rgba(132, 255, 0, 0.1);
}

.merch-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gg-lime);
    background: rgba(132, 255, 0, 0.04);
}

.merch-body { padding: 1.2rem; }
.merch-body h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}
.merch-tag {
    display: inline-block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gg-text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.15rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.6rem;
}
.merch-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gg-lime);
    margin-bottom: 0.8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.store-footer {
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--gg-text-muted);
    font-size: 0.85rem;
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.store-notifications {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.store-toast {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.4rem;
    background: rgba(17, 17, 24, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(132, 255, 0, 0.3);
    border-radius: 10px;
    color: var(--gg-text);
    font-size: 0.9rem;
    animation: toastIn 0.35s ease forwards;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.store-toast.fade-out { animation: toastOut 0.3s ease forwards; }
.store-toast i { color: var(--gg-lime); }
@keyframes toastIn  { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(40px); } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .tokens-grid    { grid-template-columns: repeat(3, 1fr); }
    .subs-grid      { grid-template-columns: repeat(3, 1fr); }
    .games-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .tokens-grid    { grid-template-columns: repeat(2, 1fr); }
    .subs-grid      { grid-template-columns: repeat(2, 1fr); }
    .consoles-grid  { grid-template-columns: repeat(2, 1fr); }
    .merch-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title   { font-size: 3.2rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-nav     { gap: 0.5rem; }
    .hero-nav-chip { font-size: 0.7rem; padding: 0.5rem 1rem; }
    .store-container { padding: 0 1rem; }
    .store-section   { padding: 3rem 0; }
    .section-title   { font-size: 1.8rem; }
    .games-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .tokens-grid   { grid-template-columns: 1fr; }
    .subs-grid     { grid-template-columns: 1fr; }
    .consoles-grid { grid-template-columns: 1fr; }
    .merch-grid    { grid-template-columns: 1fr; }
    .hero-title    { font-size: 2.5rem; letter-spacing: 1px; }
}
