:root {
    --gold: #f1c40f;
    --bg: #000000;
    --card-bg: #080808;
    --border: #111111;
    --text-dim: #666666;
}

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

body {
    background-color: var(--bg);
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.sticky-nav {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sticky-nav a {
    color: var(--text-dim);
    font-family: 'Bungee';
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
    text-transform: none;
}

.sticky-nav a.active,
.sticky-nav a:hover { color: var(--gold); }

/* ── LAYOUT ── */
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

/* ── HEADER ── */
header { margin-bottom: 10px; }

header h1 {
    font-family: 'Bungee';
    font-size: 40px;
    margin: 0 0 6px;
    line-height: 1.1;
}

header h1 span { color: var(--gold); }

header p {
    font-family: 'Bungee';
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin: 0;
    text-transform: none;
}

/* ── LABELS ── */
.category-label {
    display: inline-block;
    font-family: 'Bungee';
    font-size: 10px;
    color: var(--gold);
    margin: 40px 0 18px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
}

/* ── GRID ── */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

/* ── CARDS ── */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.icon-sq {
    font-size: 30px;
    margin-bottom: 14px;
    line-height: 1;
}

.product-card h3 {
    font-family: 'Bungee';
    font-size: 15px;
    margin: 0 0 4px;
    color: #fff;
}

/* ── LEADERSHIP ── */
.leadership-box {
    text-align: left;
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid #151515;
    font-size: 13px;
    color: #ccc;
    line-height: 1.7;
}

.cmd-tag {
    font-family: 'Bungee';
    color: var(--gold);
    font-size: 10px;
    margin-right: 5px;
}

/* ── BUTTON ── */
.buy-btn {
    display: block;
    background: white;
    color: black;
    text-decoration: none;
    font-family: 'Bungee';
    padding: 12px;
    border-radius: 8px;
    margin-top: 18px;
    font-size: 12px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.5px;
}

.buy-btn:hover { background: var(--gold); }

/* ── FOOTER ── */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid var(--border);
    margin-top: 80px;
}

.footer-credits { font-size: 12px; color: var(--text-dim); }
.footer-credits b { color: white; }
.copyright { font-family: 'Bungee'; font-size: 10px; color: #333; margin-top: 8px; }

/* ── MOBILE ── */
@media (max-width: 700px) {
    .sticky-nav { gap: 12px; padding: 12px 16px; }
    .sticky-nav a { font-size: 10px; }

    .container { margin: 30px auto; padding: 0 16px; }

    header h1 { font-size: 28px; }
    header p  { font-size: 10px; }

    .store-grid { grid-template-columns: 1fr; gap: 14px; }

    .product-card { padding: 20px 18px; }
    .buy-btn { font-size: 11px; padding: 11px; }

    footer { padding: 40px 16px; margin-top: 50px; }
}

@media (max-width: 420px) {
    .sticky-nav { gap: 8px; }
    .sticky-nav a { font-size: 9px; }
    header h1 { font-size: 24px; }
}
