@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #0d0d12;
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --primary-color: #ef34ff;
    --primary-glow: rgba(239, 52, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.bg-glow-2 {
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(100, 50, 255, 0.15) 0%, transparent 60%);
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 52, 255, 0.3);
    box-shadow: 0 12px 40px 0 var(--primary-glow);
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary-color);
}

.text-muted {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(239, 52, 255, 0.4);
}

.btn-primary:hover {
    background: #d41be6;
    box-shadow: 0 0 30px rgba(239, 52, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background: rgba(239, 52, 255, 0.1);
    box-shadow: 0 0 20px rgba(239, 52, 255, 0.2);
    transform: translateY(-2px);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

main {
    flex: 1;
    padding-top: 100px;
    /* Space for fixed header */
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-muted);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.flex {
    display: flex;
}

.gap-4 {
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 18, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ============================================================
   INDEX PAGE — Hero
   ============================================================ */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 3rem;
    min-height: 70vh;
}

.hero-content {
    max-width: 660px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ============================================================
   INDEX PAGE — Game Cards (Horizontal layout for boxes)
   ============================================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.gcard {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: white;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    gap: 2rem;
    position: relative;
    overflow: visible; /* Allows the box to pop out slightly if we want */
}

.gcard:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 52, 255, 0.35);
    box-shadow: 0 16px 48px rgba(239, 52, 255, 0.15);
}

.gcard-img {
    width: auto;
    height: 280px;
    max-width: 45%;
    object-fit: contain;
    display: block;
    margin: 0;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gcard:hover .gcard-img {
    transform: translateY(-10px) scale(1.03) rotate(1deg);
}

.gcard-body {
    padding: 0;
    background: transparent;
    flex: 1;
}

@media (max-width: 768px) {
    .game-cards-grid {
        grid-template-columns: 1fr;
    }
    .gcard {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    .gcard-img {
        max-width: 80%;
        height: 220px;
        margin: 0 auto;
    }
    .gcard-features li {
        justify-content: center;
    }
}

.gcard-status {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #00c853;
    margin-bottom: 0.35rem;
}

.gcard-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.gcard-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.gcard-features li {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gcard-features li i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.gcard-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ============================================================
   INDEX PAGE — Why Grid (3 × 2)
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 52, 255, 0.3);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(239, 52, 255, 0.12);
    border: 1px solid rgba(239, 52, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================================
   PRODUCTS PAGE — Two-column layout
   ============================================================ */
.prods-page {
    padding: 2rem 2rem 5rem;
}

.prod-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.prod-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
}

.prod-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prod-title {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-align: center;
}

.prod-img {
    width: auto;
    max-width: 100%;
    height: 340px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    margin: 1rem auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.prod-status-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.prod-game-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.prod-game-badge i {
    color: var(--primary-color);
}

.prod-status-badge i {
    font-size: 0.55rem;
}

.prod-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.prod-features-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.prod-features-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Info container layout */
.prod-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-box {
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .prod-info-container {
        grid-template-columns: 1fr;
    }
}

/* Specs grid */
.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.spec-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(239, 52, 255, 0.1);
    border: 1px solid rgba(239, 52, 255, 0.25);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.spec-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.spec-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.spec-value {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================================
   PRODUCTS PAGE — Pricing Panel
   ============================================================ */
.prod-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prod-pricing {
    /* inherits glass-panel */
}

.key-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    margin-bottom: 0.5rem;
}

.key-row:hover {
    border-color: rgba(239, 52, 255, 0.45);
}

.key-row.active {
    border-color: var(--primary-color);
    background: rgba(239, 52, 255, 0.15);
    box-shadow: 0 0 15px rgba(239, 52, 255, 0.3), inset 0 0 10px rgba(239, 52, 255, 0.2);
    transform: scale(1.02);
}

.key-row.trial-tab:hover {
    border-color: rgba(52, 255, 100, 0.45);
}

.key-row.trial-tab.active-green {
    border-color: #34ff64;
    background: rgba(52, 255, 100, 0.15);
    box-shadow: 0 0 15px rgba(52, 255, 100, 0.3), inset 0 0 10px rgba(52, 255, 100, 0.2);
    transform: scale(1.02);
}

.trial-input-container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 1.5rem 0;
}

.trial-char-input {
    width: 45px;
    height: 55px;
    font-size: 24px;
    text-align: center;
    background: transparent;
    border: none;
    border-bottom: 3px solid var(--text-muted);
    color: var(--text-color);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trial-char-input:focus {
    border-bottom-color: #34ff64;
    box-shadow: 0 10px 10px -10px rgba(52, 255, 100, 0.5);
}

.key-name {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
}

.key-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.key-price {
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-form {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pf-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.pf-row-variant {
    justify-content: flex-start !important;
}

.pf-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.pf-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    color: white;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}

.pf-input:focus {
    border-color: var(--primary-color);
}

.pf-input-sm {
    flex: none;
    width: 70px;
}

/* Promo code row wrapper */
.pf-promo-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
}

.pf-promo-wrap .pf-input {
    flex: 1;
    margin: 0;
}

.pf-apply-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ef34ff 0%, #c020d8 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.44rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.pf-apply-btn:hover {
    opacity: 0.85;
}

.pf-apply-btn:active {
    transform: scale(0.96);
}

/* Promo feedback message */
.pf-promo-msg {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    margin-top: -0.2rem;
}

.pf-promo-ok {
    color: #00e676;
    background: rgba(0, 230, 118, 0.1);
}

.pf-promo-err {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
}

/* Variant Toggle */
.variant-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.25rem;
    gap: 0.25rem;
}

.vt-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vt-btn:hover {
    color: white;
}

.vt-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px rgba(239, 52, 255, 0.3);
}

/* Insufficient Balance Overlay */
.balance-error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 18, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.balance-error-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.error-content {
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 450px;
    padding: 2rem;
}

.balance-error-overlay.show .error-content {
    transform: scale(1);
}

.error-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 77, 77, 0.1);
    border: 2px solid #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ff4d4d;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(255, 77, 77, 0.3);
}

.error-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.error-msg {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-btn {
    background: #ff4d4d;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.error-btn:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.4);
}

.success-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.purchase-success-overlay.show .success-content {
    transform: translateY(0);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 200, 83, 0.15);
    border: 3px solid #00c853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00c853;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.4);
}

.success-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, #fff, #00c853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-msg {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

/* Quantity stepper */
.qty-stepper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: #fff;
    width: 34px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.qty-btn:hover {
    background: var(--primary-color);
}

.qty-val {
    width: 46px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.4rem 0;
    outline: none;
    -moz-appearance: textfield;
}

.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pf-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
}

.pf-note i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

/* Variant Toggle */
.variant-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.25rem;
    gap: 0.25rem;
    flex: 1;
    justify-content: flex-end;
}

.vt-btn {
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vt-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.vt-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px rgba(239, 52, 255, 0.3);
}

.ps-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
}

.ps-val {
    color: white;
    font-weight: 600;
}

.prod-buy-btn {
    width: 100%;
    margin-top: 1.25rem;
    justify-content: center;
    gap: 0.5rem;
}

/* ============================================================
   NEW PRODUCT PAGE LAYOUT
   ============================================================ */
.new-prods-page {
    padding: 3rem 2rem 6rem;
}

.new-prod-header {
    text-align: center;
    margin-bottom: 3rem;
}

.new-prod-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.badge-status, .badge-game {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-status.status-undetected {
    color: #00c853;
    border-color: rgba(0, 200, 83, 0.3);
    background: rgba(0, 200, 83, 0.1);
}

.new-prod-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #ef34ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-prod-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.new-prod-visuals {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.visual-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 0;
}

.new-prod-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.8));
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.new-prod-visuals:hover .new-prod-img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.new-prod-checkout {
    padding: 2rem;
}

.checkout-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.license-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.license-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.license-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(239, 52, 255, 0.3);
}

.license-card.active {
    background: rgba(239, 52, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(239, 52, 255, 0.2);
}

.lc-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lc-name {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.lc-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.lc-price {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Info Section below Layout */
.new-prod-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-heading {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-heading i {
    color: var(--primary-color);
}

.features-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-pill {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.feature-pill:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(239, 52, 255, 0.3);
}

.feature-pill i {
    color: var(--primary-color);
}

.req-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.req-box {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.req-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.req-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.req-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 700;
}

.req-val {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .new-prod-layout {
        grid-template-columns: 1fr;
    }
    .new-prod-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .req-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   FAQ PAGE — Standalone
   ============================================================ */
.faq-page-hero {
    padding: 4rem 2rem 3rem;
}

.faq-page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.faq-page-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-card.open {
    border-color: rgba(239, 52, 255, 0.2);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 500;
    gap: 1rem;
    user-select: none;
    transition: background 0.2s;
}

.faq-q:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-chevron {
    color: var(--primary-color);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-card.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
    padding-bottom: 0;
}

.faq-a-inner {
    overflow: hidden;
    min-height: 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-a-inner a {
    color: var(--primary-color);
}

.faq-a.open {
    grid-template-rows: 1fr;
    padding-bottom: 1.25rem;
}

/* ============================================================
   PURCHASE FLOW — new styles
   ============================================================ */
.pay-balance-btn {
    width: 100%;
    margin-top: 1rem;
    background: #00c853;
    color: white;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
    display: none;
    /* hidden by default */
}

.pay-balance-btn:hover {
    background: #00b34a;
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.5);
    transform: translateY(-2px);
}

.purchase-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.purchase-success-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.purchase-success-overlay.show .success-content {
    transform: translateY(0);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(0, 200, 83, 0.15);
    border: 3px solid #00c853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00c853;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px rgba(0, 200, 83, 0.4);
}

.success-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, #fff, #00c853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-msg {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 2rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .faq-page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   INDEX PAGE — Feature Cards Grid
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* ============================================================
   INDEX PAGE — Game Cards
   ============================================================ */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--glass-border);
}

.game-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.game-card:hover img {
    transform: scale(1.04);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(239, 52, 255, 0.3);
    border-color: rgba(239, 52, 255, 0.4);
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

.game-card-status {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.game-card-status.undetected {
    color: #00c853;
}

.game-card-status.maintenance {
    color: #ff9800;
}

/* Product status label colours */
.status-undetected {
    color: #00c853;
}

.status-detected {
    color: #f44336;
}

.status-updating {
    color: #ff9800;
}

.status-coming-soon {
    color: #9e9e9e;
}

.game-card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.game-card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
}

.game-card-features li {
    margin-bottom: 0.25rem;
}

.game-card-features li i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 0.72rem;
}

.game-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 0 20px rgba(239, 52, 255, 0.4);
}

/* ============================================================
   INDEX PAGE — FAQ Accordion
   ============================================================ */
.faq-section {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    padding: 0 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    user-select: none;
    gap: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.9rem;
}

.faq-answer.open {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-chevron {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

/* ============================================================
   PRODUCTS PAGE — Layout
   ============================================================ */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

.product-heading {
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

.product-screenshot {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 360px;
    display: block;
}

.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(239, 52, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.info-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.info-value {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================================
   PRODUCTS PAGE — Pricing Panel
   ============================================================ */
.pricing-panel {
    /* inherits .glass-panel */
}

.price-row {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 0.5rem;
}

.price-row:hover {
    border-color: rgba(239, 52, 255, 0.5);
}

.price-row.selected {
    border-color: var(--primary-color);
    background: rgba(239, 52, 255, 0.07);
    box-shadow: 0 0 14px rgba(239, 52, 255, 0.12);
}

.price-label {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
}

.price-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-weight: 700;
    font-size: 0.95rem;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.form-row label {
    font-size: 0.88rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 0.45rem 0.75rem;
    color: white;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    flex: 1;
    min-width: 0;
}

.form-input-sm {
    max-width: 70px;
    flex: none;
}

.form-input:focus {
    border-color: var(--primary-color);
}

.info-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0;
    font-size: 0.92rem;
}

.cheat-features {
    list-style: none;
    padding: 0;
}

.cheat-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.93rem;
    display: flex;
    align-items: center;
}

.cheat-features li:last-child {
    border-bottom: none;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 2rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .faq-section {
        max-width: 100%;
    }

    .faq-container {
        padding: 0 1rem;
    }
}

/* ============================================================
   NAV — Login button
   ============================================================ */
.nav-login {
    padding: 0.4rem 1.4rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: none !important;
    transition: background 0.2s, border-color 0.2s !important;
}

.nav-login:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
    color: white !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ── Logged-in user widget + dropdown ─────────────────────────────────── */
.nav-user {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: white;
    user-select: none;
}

.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.nav-avatar--icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1.35rem;
    color: var(--primary-color);
    border: none;
    background: none;
}

.nav-username {
    font-size: 0.88rem;
    font-weight: 600;
    color: white;
    line-height: 1;
    vertical-align: middle;
}

.nav-chevron {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.2s;
    line-height: 1;
    vertical-align: middle;
}

.nav-user.open .nav-chevron {
    transform: rotate(180deg);
}

.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: -8px;
    min-width: 150px;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.35rem 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav-user.open .user-dropdown {
    display: block;
}

.user-dropdown__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.user-dropdown__item:hover {
    background: rgba(255, 255, 255, 0.07);
    color: white;
}

.user-dropdown__item--logout {
    color: #ff6b6b;
}

.user-dropdown__item--logout:hover {
    color: #ff4444;
    background: rgba(255, 80, 80, 0.08);
}

/* ============================================================
   AUTH PAGES — Login & Register
   ============================================================ */
.auth-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.auth-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
}

.auth-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.auth-field {
    margin-bottom: 1.1rem;
}

.auth-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    color: white;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.auth-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.auth-input:focus {
    border-color: #4f7dff;
}

.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    user-select: none;
}

.auth-link {
    color: #4f7dff;
    text-decoration: none;
    font-size: 0.85rem;
}

.auth-link:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 0.6rem;
}

.auth-btn:hover {
    background: rgba(255, 255, 255, 0.17);
    border-color: rgba(255, 255, 255, 0.28);
}

.auth-btn--primary {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.22);
    margin-top: 0.25rem;
}

.auth-btn--primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0.5rem 0 0.75rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.auth-social {
    width: 100%;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.65rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.2s, border-color 0.2s;
    margin-bottom: 0.55rem;
    text-decoration: none;
    font-family: inherit;
    box-sizing: border-box;
}

.auth-social:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
}

.auth-social .fa-discord {
    color: #5865f2;
}

.auth-social .fa-google {
    color: #ea4335;
}

.auth-terms {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
}

.auth-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.auth-alert--error {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.3);
    color: #ff6b6b;
}

.auth-alert--success {
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00c853;
}

/* ============================================================
   PRODUCTS — Overview cards (pov)
   ============================================================ */
.pov-wrap {
    padding: 4rem 2rem 5rem;
}

.pov-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 680px;
    margin: 0 auto;
}

.pov-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pov-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 64px rgba(239, 52, 255, 0.18);
    border-color: rgba(239, 52, 255, 0.35);
}

.pov-bg {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    width: auto;
    height: 70%;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.pov-card:hover .pov-bg {
    transform: scale(1.05) translateY(-5px);
}

.pov-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(239, 52, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.pov-top {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

.pov-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.pov-divider {
    position: relative;
    z-index: 3;
    height: 1px;
    margin: 0 1.5rem;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.pov-bottom {
    position: relative;
    z-index: 3;
    padding: 1.25rem 1.5rem 1.75rem;
}

.pov-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.pov-price {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 500px) {
    .pov-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   USER DASHBOARD
   ============================================================ */
.dash-section {
    padding: 3rem 0 5rem;
    min-height: 70vh;
}

.dash-alert {
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dash-alert-success {
    background: rgba(0, 200, 83, 0.12);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00c853;
}

.dash-alert-danger {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid rgba(255, 80, 80, 0.3);
    color: #ff6b6b;
}

/* Profile header bar */
.dash-profile-bar {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.dash-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    object-fit: cover;
    flex-shrink: 0;
}

.dash-avatar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.dash-username {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
}

.dash-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-balance-badge {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
}

.dash-balance-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.dash-balance-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.dash-balance-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats row */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
    .dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .dash-stats {
        grid-template-columns: 1fr;
    }
}

.dash-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.3rem 1.25rem;
    text-align: center;
}

.dash-stat-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    display: block;
}

.dash-stat-val {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.dash-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards */
.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
}

.dash-card-header {
    margin-bottom: 1.25rem;
}

.dash-card-header h2 {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.dash-card-header h2 i {
    color: var(--primary-color);
}

/* Top-up grid */
.dash-topup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.85rem;
}

.dash-topup-btn {
    background: rgba(239, 52, 255, 0.08);
    border: 1px solid rgba(239, 52, 255, 0.25);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    width: 100%;
    color: white;
    font-family: inherit;
}

.dash-topup-btn:hover {
    background: rgba(239, 52, 255, 0.18);
    border-color: rgba(239, 52, 255, 0.6);
    transform: translateY(-2px);
}

.dash-topup-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.dash-topup-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.dash-topup-btn--beta {
    background: rgba(124, 92, 252, 0.1);
    border-color: rgba(124, 92, 252, 0.35);
}

.dash-topup-btn--beta:hover {
    background: rgba(124, 92, 252, 0.22);
    border-color: rgba(124, 92, 252, 0.7);
}

.dash-topup-btn--beta .dash-topup-amount {
    color: #7c5cfc;
}

/* ── Buy Cheats section ──────────────────────────────────────────────── */
.dash-buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.dash-buy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dash-buy-card:hover {
    border-color: rgba(239, 52, 255, 0.35);
    box-shadow: 0 0 24px rgba(239, 52, 255, 0.08);
}

.dash-buy-img-wrap {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.dash-buy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dash-buy-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.dash-buy-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.dash-buy-name {
    font-size: 1rem;
    font-weight: 700;
}

.dash-buy-variants {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dash-variant-pill {
    cursor: pointer;
}

.dash-variant-pill input {
    display: none;
}

.dash-variant-pill span {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dash-variant-pill input:checked+span {
    background: rgba(239, 52, 255, 0.18);
    border-color: rgba(239, 52, 255, 0.55);
    color: var(--primary-color);
}

.dash-variant-pill:hover span {
    border-color: rgba(239, 52, 255, 0.3);
    color: #fff;
}

.dash-price-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    color: white;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    cursor: pointer;
}

.dash-price-select:focus {
    border-color: rgba(239, 52, 255, 0.5);
}

.dash-buy-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dash-buy-price-val {
    font-weight: 700;
    color: #fff;
}

.dash-buy-submit {
    margin-top: auto;
    width: 100%;
    padding: 0.65rem;
    font-size: 0.9rem;
}

/* Tables */
.dash-table-wrap {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.dash-table th {
    text-align: left;
    padding: 0.65rem 0.85rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.dash-table td {
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.dash-table tr:last-child td {
    border-bottom: none;
}

.dash-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.dash-key {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    background: rgba(239, 52, 255, 0.08);
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
}

.dash-badge-green {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

.dash-badge-orange {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

.dash-badge-red {
    background: rgba(255, 80, 80, 0.12);
    color: #ff6b6b;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

.dash-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Dropdown divider between Dashboard and Logout */
.user-dropdown__item+.user-dropdown__item--logout {
    border-top: 1px solid var(--glass-border);
    margin-top: 0.25rem;
    padding-top: 0.65rem;
}