/* ============================================================
   DUELIST SOFTWARE — STYLE SHEET
   ============================================================ */

:root {
    --primary-bg: hsl(220, 60%, 4%);
    --nav-bg: hsla(220, 60%, 5%, 0.96);
    --accent: hsl(210, 100%, 55%);
    --accent-2: hsl(195, 100%, 50%);
    --accent-glow: hsla(210, 100%, 55%, 0.35);
    --card-bg: hsla(215, 50%, 10%, 0.6);
    --card-border: hsla(210, 80%, 65%, 0.12);
    --text: #fff;
    --text-muted: hsla(210, 20%, 62%, 1);
    --font: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* legacy compat */
    --accent-purple: hsl(210, 100%, 55%);
    --accent-purple-glow: hsla(210, 100%, 55%, 0.35);
    --text-dim: hsla(210, 20%, 62%, 1);
    --glass-border: hsla(210, 80%, 65%, 0.12);
    --glass-card: hsla(215, 50%, 10%, 0.6);
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
    user-select: none;
}

/* Input ve textarea'da user-select açık olmalı */
input, textarea, select, code {
    user-select: text;
}

html { scroll-behavior: smooth; }

body {
    background: var(--primary-bg);
    background-image:
        radial-gradient(ellipse at 15% 15%, hsla(210, 100%, 20%, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, hsla(195, 100%, 18%, 0.22) 0%, transparent 55%);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

.canvas-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    opacity: 0.55;
}

/* ── GLOW ELEMENTS ── */
.glow-el {
    position: fixed;
    width: 700px; height: 700px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.14;
    z-index: -1;
    pointer-events: none;
    animation: floatGlow 22s infinite alternate;
}
.glow-1 { top: -200px; left: -200px; background: radial-gradient(circle, hsl(210,100%,45%) 0%, transparent 70%); }
.glow-2 { bottom: -200px; right: -200px; background: radial-gradient(circle, hsl(195,100%,42%) 0%, transparent 70%); animation-delay: -11s; }

@keyframes floatGlow {
    0%   { transform: translate(0,0) scale(1); }
    50%  { transform: translate(80px,60px) scale(1.15); }
    100% { transform: translate(-40px,90px) scale(0.85); }
}

/* ── LOADER ── */
.loader {
    position: fixed; inset: 0;
    background: var(--primary-bg);
    z-index: 99999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 20px;
    transition: opacity 0.6s ease;
}
.loader.hide { opacity: 0; pointer-events: none; }
.loader-ring {
    width: 56px; height: 56px;
    border: 3px solid hsla(210,100%,55%,0.15);
    border-top-color: var(--accent);
    border-right-color: var(--accent-2);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    box-shadow: 0 0 24px var(--accent-glow);
}
.loader-text {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   NAVBAR — DOKUNULMADI
   ══════════════════════════════════════════════════════════ */
.navbar-wrapper {
    position: fixed; top: 20px; left: 0;
    width: 100%; z-index: 1000;
    display: flex; justify-content: center;
    padding: 0 20px;
}
.navbar-pill {
    width: 100%; max-width: 1260px; height: 64px;
    background: hsla(220, 60%, 5%, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid hsla(210, 80%, 60%, 0.12);
    border-radius: 100px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 8px 0 20px;
    box-shadow:
        0 8px 32px -8px hsla(210, 100%, 20%, 0.5),
        0 0 0 1px hsla(210, 80%, 60%, 0.06),
        inset 0 1px 0 hsla(210, 80%, 80%, 0.04);
}
.nav-left { display: flex; align-items: center; gap: 16px; padding-left: 12px; }
.nav-logo-wrap {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
    padding: 6px 10px 6px 0;
    border-right: 1px solid hsla(210, 60%, 60%, 0.1);
    margin-right: 4px;
}
.nav-logo-wrap img { height: 34px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-text .brand { font-weight: 800; font-size: 1rem; color: #fff; letter-spacing: -0.3px; }
.nav-logo-text .sub { font-size: 0.6rem; color: hsla(210,30%,65%,1); font-weight: 600; }
.nav-search-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: hsla(210,20%,60%,1);
    cursor: pointer; transition: var(--transition); font-size: 0.85rem;
}
.nav-search-icon:hover { color: #fff; background: hsla(210,50%,20%,0.5); }
.nav-currency {
    display: flex; align-items: center; gap: 7px;
    background: hsla(215,40%,10%,0.8);
    border: 1px solid hsla(210,60%,60%,0.1);
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.75rem; font-weight: 700; color: #fff;
    cursor: pointer; transition: var(--transition);
}
.nav-currency:hover { border-color: hsla(210,80%,60%,0.3); background: hsla(210,50%,15%,0.8); }
.nav-currency .currency-icon {
    width: 18px; height: 18px;
    background: linear-gradient(135deg, hsl(210,100%,50%), hsl(195,100%,45%));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 900; color: #fff;
    box-shadow: 0 0 8px var(--accent-glow);
    flex-shrink: 0;
}
.nav-currency .chev {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: hsla(210,20%,55%,1);
}
.nav-center { display: flex; align-items: center; }
.nav-links-pill {
    display: flex; align-items: center; gap: 2px;
    background: hsla(215,50%,12%,0.85);
    border: 1px solid hsla(210,70%,65%,0.18);
    border-radius: 100px; padding: 5px;
    box-shadow: inset 0 1px 0 hsla(210,80%,80%,0.06), 0 2px 12px hsla(210,80%,20%,0.2);
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
    text-decoration: none; color: hsla(210,15%,55%,1);
    font-size: 0.75rem; font-weight: 700;
    padding: 8px 15px; border-radius: 50px;
    transition: var(--transition);
    display: flex; align-items: center; gap: 7px;
    white-space: nowrap; border: 1px solid transparent;
}
.nav-links a svg { flex-shrink: 0; opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover { color: #fff; background: hsla(210,50%,16%,0.7); }
.nav-links a:hover svg, .nav-links a.active svg { opacity: 1; }
.nav-links a.active {
    color: #fff;
    background: hsla(210,80%,22%,0.8);
    border-color: hsla(210,80%,60%,0.3);
    box-shadow: 0 0 14px hsla(210,100%,55%,0.18), inset 0 1px 0 hsla(210,80%,80%,0.07);
}
.nav-right { display: flex; align-items: center; gap: 6px; padding-right: 4px; }
.nav-btn-ghost {
    display: inline-flex; align-items: center; gap: 7px;
    background: hsla(215,40%,10%,0.7);
    border: 1px solid hsla(210,60%,60%,0.1);
    padding: 9px 16px; border-radius: 50px;
    color: hsla(210,15%,60%,1); font-weight: 700;
    font-size: 0.75rem; text-decoration: none;
    transition: var(--transition); white-space: nowrap;
}
.nav-btn-ghost:hover { color: #fff; border-color: hsla(210,60%,60%,0.25); background: hsla(210,50%,16%,0.8); }
.nav-btn-ghost i { font-size: 0.85rem; }
.logo-text { font-weight: 800; font-size: 1.25rem; color: #fff; cursor: pointer; }
.purple-color { color: var(--accent); text-shadow: 0 0 15px var(--accent-glow); }
.discord-nav-btn {
    background: var(--accent); color: #fff; text-decoration: none;
    padding: 12px 24px; border-radius: 50px; font-weight: 800;
    font-size: 0.75rem; display: flex; align-items: center; gap: 10px;
    transition: var(--transition); box-shadow: 0 4px 15px var(--accent-glow);
}
.discord-nav-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--accent-glow); filter: brightness(1.1); }

/* ══════════════════════════════════════════════════════════
   GENEL LAYOUT
   ══════════════════════════════════════════════════════════ */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.content-sec { display: none; padding: 130px 0 80px; }

/* Reveal animasyonu */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Ortak butonlar */
.btn-outline {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 26px;
    background: transparent;
    border: 1.5px solid hsla(210,80%,60%,0.5);
    border-radius: 50px; color: #fff;
    font-size: 0.8rem; font-weight: 800;
    cursor: pointer; text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 18px hsla(210,100%,55%,0.08);
}
.btn-outline:hover {
    background: hsla(210,80%,55%,0.12);
    border-color: var(--accent);
    box-shadow: 0 0 28px hsla(210,100%,55%,0.22);
    transform: translateY(-2px);
}
.btn-outline svg { color: var(--accent); }

.btn-solid {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 26px;
    background: linear-gradient(135deg, hsl(210,100%,50%) 0%, hsl(195,100%,45%) 100%);
    border: 1px solid hsla(210,100%,70%,0.2);
    border-radius: 50px; color: #fff;
    font-size: 0.8rem; font-weight: 800;
    text-decoration: none; cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 22px var(--accent-glow);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--accent-glow); filter: brightness(1.1); }

/* Section başlıkları */
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-eyebrow {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 4px;
    color: var(--accent); text-transform: uppercase; margin-bottom: 12px;
}
.sec-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; letter-spacing: -1px;
    text-transform: uppercase; color: #fff;
    margin-bottom: 14px;
}
.sec-title .accent { color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }.sec-desc { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero-view {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 110px 20px 80px;
    overflow: hidden;
}
.hero-container {
    width: 100%; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 60px;
    padding-bottom: 80px;
}
.home-section {
    width: 100%;
    padding: 80px 0;
    border-top: 1px solid hsla(270, 60%, 60%, 0.08);
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 700;
    color: hsla(210,30%,80%,0.9);
    background: hsla(210,50%,12%,0.8);
    border: 1px solid hsla(210,70%,60%,0.2);
    padding: 7px 14px; border-radius: 50px;
    margin-bottom: 22px;
}
.hero-badge svg { color: var(--accent); flex-shrink: 0; }
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900; font-style: normal;
    text-transform: none; line-height: 1.07;
    letter-spacing: -1.5px; color: #fff;
    margin-bottom: 18px;
}
.hero-sub {
    font-size: 0.98rem; color: var(--text-muted);
    max-width: 500px; line-height: 1.75;
    margin-bottom: 34px; font-weight: 400;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 14px; flex-wrap: wrap; }
.stat-card {
    padding: 18px 26px;
    background: hsla(215,40%,10%,0.7);
    border: 1px solid hsla(210,60%,60%,0.14);
    border-radius: 16px; min-width: 180px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.stat-card:hover { border-color: hsla(210,80%,60%,0.28); background: hsla(210,50%,13%,0.8); }
.stat-card h3 { font-size: 1.45rem; font-weight: 900; color: #fff; margin-bottom: 4px; letter-spacing: -0.5px; }
.stat-card p { font-size: 0.73rem; color: var(--text-muted); font-weight: 500; }

/* Hero sağ görsel */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual img {
    width: 100%; max-width: 500px; height: 520px;
    object-fit: cover; object-position: center top;
    border-radius: 24px; display: block;
    mask-image: linear-gradient(to bottom, black 45%, transparent 100%),
                linear-gradient(to left, black 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%),
                        linear-gradient(to left, black 55%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}
.hero-visual-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 40%, hsla(270,80%,50%,0.12) 0%, transparent 70%);
    pointer-events: none; border-radius: 24px;
}

/* ══════════════════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════════════════ */
.filter-bar {
    display: flex; gap: 8px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 44px;
}
.filter-btn {
    padding: 9px 22px;
    background: hsla(215,40%,10%,0.7);
    border: 1px solid hsla(210,60%,60%,0.12);
    border-radius: 50px; color: var(--text-muted);
    font-size: 0.78rem; font-weight: 700;
    cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { color: #fff; border-color: hsla(210,80%,60%,0.3); background: hsla(210,50%,16%,0.8); }
.filter-btn.active {
    color: #fff;
    background: linear-gradient(135deg, hsl(210,100%,48%) 0%, hsl(195,100%,43%) 100%);
    border-color: transparent;
    box-shadow: 0 4px 18px var(--accent-glow);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.p-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px; overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition);
    position: relative;
}
.p-card::before {
    content: ''; position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.025), transparent);
    transform: rotate(45deg); transition: 0.7s; pointer-events: none;
}
.p-card:hover::before { left: 100%; top: 100%; }
.p-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px hsla(210,100%,20%,0.4), 0 0 28px var(--accent-glow);
}
.p-card-img {
    height: 190px; background-size: cover; background-position: center;
    position: relative;
}
.p-card-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, hsla(220,60%,6%,0.8) 100%);
}
.p-card-cat {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: hsla(220,60%,6%,0.75); backdrop-filter: blur(8px);
    border: 1px solid var(--accent); color: var(--accent);
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.58rem; font-weight: 900; letter-spacing: 1px;
}
.p-card-body { padding: 20px 22px; }
.p-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.p-card-name { font-size: 1.05rem; font-weight: 900; color: #fff; letter-spacing: -0.3px; }
.p-card-status {
    display: flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, hsl(210,100%,48%), hsl(195,100%,43%));
    padding: 5px 12px; border-radius: 50px;
    font-size: 0.6rem; font-weight: 900; letter-spacing: 0.5px; color: #fff;
    box-shadow: 0 3px 12px var(--accent-glow);
}
.p-card-status .dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 6px #fff; }
.p-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 22px;
    border-top: 1px solid hsla(210,60%,60%,0.08);
    background: hsla(220,60%,6%,0.3);
}
.p-card-price-label { font-size: 0.58rem; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; margin-bottom: 3px; }
.p-card-price { font-size: 1.3rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.p-card-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid hsla(210,80%,60%,0.4);
    border-radius: 50px; color: var(--accent);
    font-size: 0.72rem; font-weight: 800;
    cursor: pointer; transition: var(--transition);
    position: relative; overflow: hidden;
}
.p-card-btn:hover {
    background: linear-gradient(135deg, hsl(210,100%,48%), hsl(195,100%,43%));
    border-color: transparent; color: #fff;
    box-shadow: 0 6px 18px var(--accent-glow);
    transform: scale(1.04);
}

/* ══════════════════════════════════════════════════════════
   FEEDBACK
   ══════════════════════════════════════════════════════════ */
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.fb-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px; padding: 28px;
    backdrop-filter: blur(16px);
    transition: var(--transition);
    display: flex; flex-direction: column; gap: 16px;
}
.fb-card:hover { border-color: hsla(210,80%,60%,0.28); transform: translateY(-6px); box-shadow: 0 16px 36px hsla(210,100%,20%,0.3); }
.fb-stars { display: flex; gap: 4px; }
.fb-stars svg { color: hsl(45,100%,60%); }
.fb-text { font-size: 0.9rem; color: hsla(210,10%,85%,1); line-height: 1.7; font-style: italic; }
.fb-user { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.fb-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, hsl(210,100%,48%), hsl(195,100%,43%));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 900; color: #fff;
    flex-shrink: 0;
}
.fb-name { font-size: 0.8rem; font-weight: 800; color: #fff; }
.fb-verified { font-size: 0.65rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   STATUS
   ══════════════════════════════════════════════════════════ */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.status-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: var(--transition);
    position: relative;
}
.status-card:hover {
    border-color: hsla(210,80%,60%,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px hsla(210,100%,20%,0.2);
}

/* Top image strip */
.status-card-img {
    height: 90px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.status-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 30%, hsla(215,40%,8%,0.85) 100%);
}

/* Body */
.status-card-body {
    padding: 16px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.status-card-info { display: flex; flex-direction: column; gap: 3px; }
.status-name { font-size: 0.95rem; font-weight: 900; color: #fff; letter-spacing: -0.3px; }
.status-game {
    font-size: 0.62rem; color: var(--text-muted);
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

/* Pills */
.status-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px; border-radius: 50px;
    font-size: 0.62rem; font-weight: 900; letter-spacing: 0.5px;
    flex-shrink: 0;
}
.status-pill.undetected {
    background: hsla(145,70%,40%,0.15);
    border: 1px solid hsla(145,70%,50%,0.3);
    color: hsl(145,70%,60%);
}
.status-pill.undetected .dot {
    background: hsl(145,70%,55%);
    box-shadow: 0 0 8px hsl(145,70%,55%);
    animation: statusPulse 2s infinite;
}
.status-pill.detected {
    background: hsla(0,70%,50%,0.15);
    border: 1px solid hsla(0,70%,50%,0.3);
    color: hsl(0,70%,65%);
}
.status-pill.detected .dot { background: hsl(0,70%,60%); box-shadow: 0 0 8px hsl(0,70%,60%); }
.status-pill.updating {
    background: hsla(38,100%,50%,0.15);
    border: 1px solid hsla(38,100%,50%,0.3);
    color: hsl(38,100%,65%);
}
.status-pill.updating .dot {
    background: hsl(38,100%,60%);
    box-shadow: 0 0 8px hsl(38,100%,60%);
    animation: statusPulse 1s infinite;
}
.status-pill .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
@keyframes statusPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

/* Footer bar */
.status-card-footer {
    padding: 10px 20px;
    border-top: 1px solid hsla(210,60%,60%,0.08);
    background: hsla(215,40%,7%,0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.status-card-footer-label { font-size: 0.6rem; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.status-card-footer-time { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   SUPPORT
   ══════════════════════════════════════════════════════════ */
.support-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.support-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 14px;
    backdrop-filter: blur(16px); transition: var(--transition);
}
.support-card:hover { border-color: hsla(210,80%,60%,0.28); transform: translateY(-6px); box-shadow: 0 16px 36px hsla(210,100%,20%,0.3); }
.support-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: hsla(210,80%,20%,0.4);
    border: 1px solid hsla(210,80%,60%,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.support-card h3 { font-size: 1.1rem; font-weight: 900; color: #fff; }
.support-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
    border-top: 1px solid hsla(210,80%,60%,0.1);
    padding: 80px 0 40px;
    margin-top: 60px;
    background: hsla(220,60%,4%,0.8);
}
.footer-top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.2; margin-bottom: 4px; }
.footer-brand-name { font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: -0.3px; }
.footer-brand-sub { font-size: 0.6rem; font-weight: 700; letter-spacing: 2.5px; color: var(--accent); text-transform: uppercase; }
.footer-logo { height: 38px; filter: drop-shadow(0 0 10px var(--accent-glow)); }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.footer-discord { align-self: flex-start; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 900; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid hsla(210,80%,60%,0.08);
    padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--text-muted); font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   PURCHASE MODAL
   ══════════════════════════════════════════════════════════ */
.p-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(20px);
    z-index: 99998; display: none;
    justify-content: center; align-items: center;
    padding: 20px;
}
.pm-inner {
    background: hsla(220,60%,5%,0.98);
    border: 1px solid hsla(210,80%,60%,0.18);
    border-radius: 28px; width: 100%; max-width: 860px;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
    animation: pmIn 0.35s var(--ease);
    box-shadow: 0 24px 60px hsla(210,100%,15%,0.6);
}
@keyframes pmIn { from { opacity: 0; transform: scale(0.92) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.pm-close {
    position: absolute; top: 20px; right: 20px; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: hsla(215,40%,15%,0.8);
    border: 1px solid hsla(210,60%,60%,0.15);
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.pm-close:hover { color: #fff; background: hsla(0,70%,50%,0.2); border-color: hsla(0,70%,50%,0.4); transform: rotate(90deg); }
.pm-left {
    padding: 36px 28px;
    background: hsla(220,60%,4%,0.5);
    border-right: 1px solid hsla(210,60%,60%,0.08);
    display: flex; flex-direction: column; gap: 20px;
}
.pm-right {
    padding: 36px 32px;
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.pm-product-name {
    font-size: 1.3rem; font-weight: 900; color: #fff;
    letter-spacing: -0.5px; margin-bottom: 28px;
    line-height: 1.2;
}
.pm-img { width: 100%; height: 170px; border-radius: 16px; background-size: cover; background-position: center; border: 1px solid var(--card-border); }
.pm-label { font-size: 0.62rem; font-weight: 900; letter-spacing: 2px; color: var(--accent); }
.pm-prices { display: flex; flex-direction: column; gap: 10px; }
.pm-price-btn {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; border-radius: 12px;
    background: hsla(215,40%,12%,0.7);
    border: 1px solid hsla(210,60%,60%,0.12);
    color: var(--text-muted); text-decoration: none;
    transition: var(--transition); cursor: pointer;
}
.pm-price-btn:hover { background: hsla(210,80%,20%,0.4); border-color: var(--accent); color: #fff; box-shadow: 0 0 18px var(--accent-glow); }
.pm-price-btn .pm-plan { font-size: 0.62rem; font-weight: 900; letter-spacing: 1px; color: var(--accent); }
.pm-price-btn .pm-val { font-size: 0.95rem; font-weight: 900; color: #fff; }
.pm-section-title {
    font-size: 0.65rem; font-weight: 900; letter-spacing: 2px;
    color: var(--accent); border-left: 3px solid var(--accent);
    padding-left: 10px; margin-bottom: 14px;
}
.pm-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pm-list li { font-size: 0.82rem; color: hsla(210,10%,75%,1); display: flex; align-items: flex-start; gap: 8px; }
.pm-list li::before { content: '▶'; color: var(--accent); font-size: 0.55rem; margin-top: 3px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-links { flex-wrap: wrap; }
    .pm-inner { grid-template-columns: 1fr; }
    .pm-left { border-right: none; border-bottom: 1px solid hsla(210,60%,60%,0.08); }
}
@media (max-width: 1000px) {
    .navbar-pill { border-radius: 30px; height: auto; padding: 16px; flex-direction: column; gap: 16px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .nav-right { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── SEARCH + FILTER BAR ── */
.filter-search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: hsla(215,40%,10%,0.7);
    border: 1px solid hsla(210,60%,60%,0.14);
    border-radius: 50px;
    padding: 9px 18px;
    min-width: 220px;
    transition: var(--transition);
}
.search-box:focus-within {
    border-color: hsla(210,80%,60%,0.4);
    background: hsla(215,50%,13%,0.8);
    box-shadow: 0 0 0 3px hsla(210,100%,52%,0.08);
}
.search-box svg { color: var(--text-muted); flex-shrink: 0; }
.search-box input {
    background: none; border: none; outline: none;
    color: #fff; font-size: 0.8rem; font-weight: 600;
    width: 100%; font-family: var(--font);
}
.search-box input::placeholder { color: var(--text-muted); }

/* ── CURRENCY DROPDOWN ── */
.nav-left { position: relative; }
.currency-dropdown {
    position: absolute;
    top: 48px;
    left: 0;
    background: hsla(220,60%,6%,0.98);
    border: 1px solid hsla(210,60%,60%,0.18);
    border-radius: 14px;
    padding: 6px;
    min-width: 200px;
    z-index: 2000;
    display: none;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
}
.currency-dropdown.open { display: block; animation: dropIn 0.2s ease; }
@keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.currency-option {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 9px;
    font-size: 0.78rem; font-weight: 700;
    color: var(--text-muted); cursor: pointer; transition: 0.15s;
}
.currency-option:hover { background: hsla(210,60%,20%,0.4); color: #fff; }
.currency-option.active { color: var(--accent); background: hsla(210,80%,20%,0.3); }
.currency-sym {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, hsl(210,100%,50%), hsl(195,100%,44%));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; color: #fff; font-weight: 900; flex-shrink: 0;
}
.nav-currency { cursor: pointer; transition: var(--transition); position: relative; }
.nav-currency:hover { border-color: hsla(210,80%,60%,0.3) !important; }
.footer-brand-name { font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: -1px; }
.footer-brand-sub  { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════
   KEY DELIVERY MODAL
   ══════════════════════════════════════════════════════════ */
.km-inner {
    background: hsla(220,60%,5%,0.99);
    border: 1px solid hsla(210,80%,60%,0.2);
    border-radius: 28px;
    width: 100%; max-width: 520px;
    padding: 36px;
    position: relative;
    animation: pmIn 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 32px 80px hsla(210,100%,10%,0.7), 0 0 0 1px hsla(210,80%,60%,0.08);
}

.km-header {
    display: flex; align-items: center; gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid hsla(210,60%,60%,0.1);
}

.km-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
    background: linear-gradient(135deg, hsla(145,70%,30%,0.3), hsla(145,70%,20%,0.2));
    border: 1px solid hsla(145,70%,50%,0.3);
    display: flex; align-items: center; justify-content: center;
    color: hsl(145,70%,60%);
    box-shadow: 0 0 24px hsla(145,70%,50%,0.15);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 24px hsla(145,70%,50%,0.15); }
    50% { box-shadow: 0 0 40px hsla(145,70%,50%,0.35); }
}

.km-title {
    font-size: 1.2rem; font-weight: 900; color: #fff; letter-spacing: -0.4px;
    margin-bottom: 4px;
}
.km-sub { font-size: 0.8rem; color: var(--text-muted); }

.km-product-info {
    background: hsla(215,50%,10%,0.6);
    border: 1px solid hsla(210,60%,60%,0.1);
    border-radius: 14px; padding: 14px 18px;
    margin-bottom: 22px;
    display: flex; align-items: center; gap: 14px;
}
.km-prod-img {
    width: 48px; height: 48px; border-radius: 10px;
    background-size: cover; background-position: center;
    border: 1px solid hsla(210,60%,60%,0.15); flex-shrink: 0;
}
.km-prod-name { font-size: 0.9rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.km-prod-plan {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1px;
    color: var(--accent); text-transform: uppercase;
}

.km-key-section { margin-bottom: 24px; }

.km-key-label {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.6rem; font-weight: 900; letter-spacing: 2px;
    color: var(--accent); text-transform: uppercase;
    margin-bottom: 10px;
}

.km-key-box {
    display: flex; align-items: center; gap: 10px;
    background: hsla(210,40%,6%,0.9);
    border: 1px solid hsla(210,80%,60%,0.25);
    border-radius: 12px; padding: 14px 16px;
    box-shadow: 0 0 20px hsla(210,100%,55%,0.06), inset 0 1px 0 hsla(210,80%,80%,0.04);
}

.km-key-code {
    flex: 1; font-family: 'Courier New', monospace;
    font-size: 1rem; font-weight: 700; color: #fff;
    letter-spacing: 2px; word-break: break-all;
    user-select: all;
}

.km-copy-btn {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: 9px;
    background: linear-gradient(135deg, hsl(210,100%,50%), hsl(195,100%,45%));
    border: none; color: #fff;
    font-size: 0.75rem; font-weight: 800;
    cursor: pointer; transition: all 0.25s;
    white-space: nowrap; flex-shrink: 0;
    box-shadow: 0 4px 14px var(--accent-glow);
}
.km-copy-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.km-copy-btn.copied {
    background: linear-gradient(135deg, hsl(145,70%,40%), hsl(145,70%,35%));
    box-shadow: 0 4px 14px hsla(145,70%,40%,0.4);
}

.km-key-warning {
    display: flex; align-items: center; gap: 8px;
    margin-top: 10px; padding: 10px 14px;
    background: hsla(38,100%,50%,0.08);
    border: 1px solid hsla(38,100%,50%,0.2);
    border-radius: 9px;
    font-size: 0.72rem; font-weight: 700;
    color: hsl(38,100%,65%);
}

.km-steps {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 24px;
    padding: 18px;
    background: hsla(215,50%,8%,0.6);
    border: 1px solid hsla(210,60%,60%,0.08);
    border-radius: 14px;
}
.km-step {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; flex: 1; text-align: center;
}
.km-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, hsl(210,100%,50%), hsl(195,100%,45%));
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 900; color: #fff;
    box-shadow: 0 4px 12px var(--accent-glow);
}
.km-step-text { font-size: 0.68rem; font-weight: 700; color: var(--text-muted); line-height: 1.4; }
.km-step-arrow { color: hsla(210,60%,60%,0.4); flex-shrink: 0; }

.km-footer {
    display: flex; gap: 12px;
}

/* ── DELIVERY LOADER ── */
.delivery-loader {
    position: fixed; inset: 0;
    background: rgba(4,7,15,0.92);
    backdrop-filter: blur(20px);
    z-index: 99997;
    display: none;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 20px;
}
.delivery-loader.show { display: flex; }
.dl-ring {
    width: 64px; height: 64px;
    border: 3px solid hsla(210,100%,55%,0.12);
    border-top-color: var(--accent);
    border-right-color: var(--accent-2);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 30px var(--accent-glow);
}
.dl-text {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 4px;
    color: var(--accent); text-shadow: 0 0 14px var(--accent-glow);
    animation: dlPulse 1.2s ease-in-out infinite;
}
@keyframes dlPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ── AUTH MODAL ── */
.auth-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(20px);
    z-index: 99998; display: none;
    justify-content: center; align-items: center;
    padding: 20px;
}
.auth-modal.open { display: flex; }
.auth-inner {
    background: hsla(220,60%,5%,0.99);
    border: 1px solid hsla(210,80%,60%,0.18);
    border-radius: 24px; width: 100%; max-width: 420px;
    padding: 40px;
    animation: pmIn 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 32px 80px hsla(210,100%,10%,0.7);
}
.auth-tabs {
    display: flex; gap: 4px;
    background: hsla(215,50%,10%,0.8);
    border: 1px solid hsla(210,60%,60%,0.1);
    border-radius: 12px; padding: 4px;
    margin-bottom: 28px;
}
.auth-tab {
    flex: 1; padding: 9px; border-radius: 9px;
    font-size: 0.78rem; font-weight: 800;
    color: var(--text-muted); cursor: pointer;
    transition: all 0.25s; text-align: center; border: none;
    background: transparent;
}
.auth-tab.active {
    background: linear-gradient(135deg, hsl(210,100%,50%), hsl(195,100%,45%));
    color: #fff; box-shadow: 0 4px 14px var(--accent-glow);
}
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-input-wrap { display: flex; flex-direction: column; gap: 6px; }
.auth-label {
    font-size: 0.6rem; font-weight: 900; letter-spacing: 2px;
    color: var(--text-muted); text-transform: uppercase;
}
.auth-input {
    background: hsla(215,50%,8%,0.9);
    border: 1px solid hsla(210,60%,60%,0.14);
    border-radius: 10px; padding: 12px 14px;
    color: #fff; font-size: 0.85rem; font-weight: 600;
    outline: none; transition: all 0.25s;
    font-family: var(--font);
}
.auth-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px hsla(210,100%,55%,0.1);
}
.auth-err {
    font-size: 0.72rem; font-weight: 700; color: hsl(0,70%,65%);
    background: hsla(0,70%,50%,0.1);
    border: 1px solid hsla(0,70%,50%,0.25);
    padding: 10px 14px; border-radius: 9px;
    display: none; text-align: center;
}
.auth-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: hsla(215,40%,15%,0.8);
    border: 1px solid hsla(210,60%,60%,0.15);
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
}
.auth-close:hover { color: #fff; transform: rotate(90deg); }

/* ── MY ORDERS MODAL ── */
.orders-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(20px);
    z-index: 99998; display: none;
    justify-content: center; align-items: center;
    padding: 20px;
}
.orders-modal.open { display: flex; }
.orders-inner {
    background: hsla(220,60%,5%,0.99);
    border: 1px solid hsla(210,80%,60%,0.18);
    border-radius: 24px; width: 100%; max-width: 680px;
    max-height: 80vh; overflow-y: auto;
    padding: 36px;
    animation: pmIn 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 32px 80px hsla(210,100%,10%,0.7);
    position: relative;
}
.orders-title {
    font-size: 1.2rem; font-weight: 900; color: #fff;
    margin-bottom: 24px; letter-spacing: -0.4px;
}
.order-card {
    background: hsla(215,50%,10%,0.6);
    border: 1px solid hsla(210,60%,60%,0.1);
    border-radius: 16px; padding: 20px;
    margin-bottom: 14px; transition: all 0.3s;
}
.order-card:hover { border-color: hsla(210,80%,60%,0.25); }
.order-card-top {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 14px;
}
.order-card-img {
    width: 48px; height: 48px; border-radius: 10px;
    background-size: cover; background-position: center;
    border: 1px solid hsla(210,60%,60%,0.15); flex-shrink: 0;
}
.order-card-info { flex: 1; }
.order-card-name { font-size: 0.9rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.order-card-meta { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }
.order-card-key {
    display: flex; align-items: center; gap: 10px;
    background: hsla(210,40%,6%,0.9);
    border: 1px solid hsla(210,80%,60%,0.2);
    border-radius: 10px; padding: 12px 14px;
}
.order-card-key code {
    flex: 1; font-family: 'Courier New', monospace;
    font-size: 0.85rem; font-weight: 700; color: #fff;
    letter-spacing: 1.5px;
}
.order-copy-btn {
    padding: 6px 12px; border-radius: 7px;
    background: hsla(210,80%,20%,0.5);
    border: 1px solid hsla(210,80%,60%,0.2);
    color: var(--accent); font-size: 0.68rem; font-weight: 800;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.order-copy-btn:hover { background: var(--accent); color: #fff; }
.order-pending-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 9px;
    background: hsla(38,100%,50%,0.1);
    border: 1px solid hsla(38,100%,50%,0.25);
    font-size: 0.7rem; font-weight: 800;
    color: hsl(38,100%,65%);
}

/* ══════════════════════════════════════════════════════════
   ENHANCED ANIMATIONS
   ══════════════════════════════════════════════════════════ */

/* Shimmer effect on cards */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Floating animation for hero badge */
.hero-badge {
    animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Stat card counter animation */
.stat-card h3 {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product card enhanced hover */
.p-card {
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
                border-color 0.3s ease,
                box-shadow 0.4s ease;
}

/* Pulse dot animation for status */
.pm-status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: hsl(145,70%,55%);
    box-shadow: 0 0 10px hsl(145,70%,55%);
    animation: statusPulse 2s infinite;
    flex-shrink: 0;
}
.pm-status-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: 10px;
    background: hsla(145,70%,40%,0.1);
    border: 1px solid hsla(145,70%,50%,0.2);
    font-size: 0.62rem; font-weight: 900;
    letter-spacing: 1.5px; color: hsl(145,70%,60%);
}

/* Smooth page transitions */
.content-sec {
    animation: sectionFadeIn 0.5s cubic-bezier(0.16,1,0.3,1);
}
@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced loader */
.loader-ring {
    position: relative;
}
.loader-ring::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid hsla(210,100%,55%,0.08);
    animation: spin 2s linear infinite reverse;
}

/* Glow pulse on accent elements */
.btn-solid {
    position: relative; overflow: hidden;
}
.btn-solid::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 30%, hsla(255,255,255,0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-solid:hover::after { transform: translateX(100%); }

/* Nav active indicator */
.nav-links a.active::after {
    content: '';
    position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}
.nav-links a { position: relative; }

/* Feedback card star animation */
.fb-stars svg {
    transition: transform 0.2s ease;
}
.fb-card:hover .fb-stars svg {
    animation: starPop 0.4s ease forwards;
}
@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.1); }
}

/* Key modal no-key state */
.km-no-key {
    text-align: center; padding: 32px 20px;
}
.km-no-key-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: hsla(38,100%,50%,0.1);
    border: 1px solid hsla(38,100%,50%,0.25);
    display: flex; align-items: center; justify-content: center;
    color: hsl(38,100%,65%); margin: 0 auto 16px;
}
.km-no-key-title { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.km-no-key-sub { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════
   PURCHASE NOTIFICATION (sol alt, alttan üste)
   ══════════════════════════════════════════════════════════ */
#purchase-notif-container {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 99990;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    pointer-events: none;
}

.purchase-notif {
    display: flex;
    align-items: center;
    gap: 0;
    width: 340px;
    background: hsla(220, 60%, 6%, 0.97);
    border: 1px solid hsla(210, 80%, 60%, 0.18);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 16px 48px hsla(210, 100%, 10%, 0.6),
        0 0 0 1px hsla(210, 80%, 60%, 0.06);
    backdrop-filter: blur(20px);
    pointer-events: auto;
    /* alttan üste slide-in */
    animation: notifSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.purchase-notif.hiding {
    animation: notifSlideOut 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes notifSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes notifSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}

/* Sol taraf — metin */
.pn-body {
    flex: 1;
    padding: 16px 18px;
    min-width: 0;
}

.pn-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.pn-product {
    font-size: 0.92rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pn-plan {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pn-date {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pn-vouch {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    padding: 4px 10px;
    background: hsla(145, 70%, 40%, 0.12);
    border: 1px solid hsla(145, 70%, 50%, 0.25);
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 800;
    color: hsl(145, 70%, 60%);
}

.pn-vouch-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: hsl(145, 70%, 55%);
    box-shadow: 0 0 6px hsl(145, 70%, 55%);
    animation: statusPulse 2s infinite;
}

/* Sağ taraf — ürün görseli */
.pn-img {
    width: 110px;
    height: 90px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pn-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(220, 60%, 6%, 0.85) 0%, transparent 50%);
}

/* Görsel yoksa placeholder */
.pn-img-placeholder {
    width: 110px;
    height: 90px;
    flex-shrink: 0;
    background: hsla(210, 80%, 14%, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsla(210, 80%, 60%, 0.3);
}

/* Progress bar — otomatik kapanma */
.pn-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 0 0 0 16px;
    animation: pnProgress 5s linear forwards;
}

@keyframes pnProgress {
    from { width: 100%; }
    to   { width: 0%; }
}

.purchase-notif { position: relative; }
