/* =========================================
   LUCENT ACCOUNTS - DESIGN SYSTEM
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #07070b;
    --bg-card: #0d0d14;
    --bg-card-hover: #12121c;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --accent: #00C4FF;
    --accent-hover: #00A8E0;
    --accent-light: #00E5FF;
    --accent-glow: rgba(0, 196, 255, 0.2);
    --accent-bg: rgba(0, 196, 255, 0.06);
    --text: #ffffff;
    --text-secondary: #888899;
    --text-muted: #555566;
    --success: #22C997;
    --warning: #FFB547;
    --danger: #FF5C5C;
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
    --container: 1140px;
    --nav-height: 68px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent);
    color: white;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .btn, .nav-links a {
    font-family: 'Space Grotesk', sans-serif;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-2px);
}

/* ---- Navigation ---- */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

header.scrolled .navbar {
    background: rgba(7, 7, 11, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}
.nav-links a.active {
    background: var(--accent-bg);
    color: var(--accent-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
}
.nav-icon-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 11, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
}
.mobile-menu-inner a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 12px 32px;
    border-radius: 10px;
    transition: all var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}
.mobile-menu-inner a:hover { color: var(--text); background: var(--accent-bg); }

/* ---- Hero ---- */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 720px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-bg);
    border: 1px solid rgba(0, 196, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .gradient {
    background: linear-gradient(135deg, var(--accent-light), var(--accent), #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- Stats Bar ---- */

.stats-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(13, 13, 20, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.stat-item .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Games Section ---- */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.games-section {
    padding: 100px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.game-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 2;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.game-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.game-card:hover .game-card-bg { transform: scale(1.05); }

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 11, 0.85) 0%, rgba(7, 7, 11, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.game-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-card-count {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.game-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
    transition: gap var(--transition);
}
.game-card:hover .game-card-link { gap: 10px; }

/* ---- Features Section ---- */

.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 196, 255, 0.02), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all var(--transition);
}
.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--accent-bg);
    color: var(--accent-light);
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ---- How It Works ---- */

.steps-section {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ---- Testimonials ---- */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 196, 255, 0.02), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border-hover);
}

.testimonial-stars {
    color: var(--warning);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-weight: 600;
    font-size: 14px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
}

.testimonial-game {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---- FAQ ---- */

.faq-section {
    padding: 100px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover,
.faq-item.active {
    border-color: var(--border-hover);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.faq-toggle {
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---- Discord CTA ---- */

.discord-cta {
    padding: 80px 0;
}

.discord-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discord-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.discord-cta-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.discord-cta-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    position: relative;
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #5865F2;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}
.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

/* ---- Footer ---- */

.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition);
    font-size: 16px;
}
.footer-social a:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition);
}
.footer-column a:hover { color: var(--text); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    gap: 8px;
}

.footer-badges span {
    font-size: 11px;
    padding: 4px 12px;
    background: var(--accent-bg);
    border: 1px solid rgba(0, 196, 255, 0.12);
    border-radius: 100px;
    color: var(--accent-light);
    font-weight: 500;
}

/* ---- Products Page ---- */

.products-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 196, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.products-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.products-hero > .container > p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Filter Buttons */
.filter-bar {
    padding: 20px 0 40px;
    position: relative;
    z-index: 1;
}

.filter-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}
.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--text);
}
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding-bottom: 80px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--bg-card-hover), var(--bg));
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}

.product-card[data-category="fortnite"] .product-card-image {
    background-image: url('/assets/fortnitethumb.png');
}
.product-card[data-category="valorant"] .product-card-image {
    background-image: url('/assets/valorantthumb.png');
}
.product-card[data-category="arc-raiders"] .product-card-image {
    background-image: url('/assets/arcraidersthumb.png');
}
.product-card[data-category="rust"] .product-card-image {
    background-image: url('/assets/rustthumb.png');
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.product-badge {
    padding: 4px 10px;
    background: rgba(7, 7, 11, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-info {
    padding: 20px;
}

.product-card-game {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

.product-card-btn {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.product-card-btn:hover {
    background: var(--accent-hover);
}

.product-card-price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.product-badge-sale {
    background: rgba(34, 201, 151, 0.15);
    color: var(--success);
}

.product-badge-hot {
    background: rgba(255, 181, 71, 0.15);
    color: var(--warning);
}

.products-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-secondary);
    font-size: 16px;
    grid-column: 1 / -1;
}

/* ---- Product Detail Page ---- */

.product-detail {
    padding: 120px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    aspect-ratio: 16 / 10;
    background: var(--bg-card);
}

.product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-info .product-game-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.product-info .product-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-price-display {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.product-features-list {
    margin-bottom: 28px;
}
.product-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}
.product-features-list li:last-child { border-bottom: none; }
.product-features-list li i {
    color: var(--success);
    font-size: 14px;
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ---- Product Detail Page ---- */

.product-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    transition: color var(--transition);
}
.product-back-link:hover { color: var(--accent-light); }

.product-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    gap: 8px;
}
.product-not-found h2 { font-size: 24px; margin-bottom: 4px; }
.product-not-found p { color: var(--text-secondary); }

.product-badges-detail {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.product-badges-detail .product-badge {
    padding: 5px 14px;
    font-size: 12px;
}

.product-desc-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.product-desc-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}
.product-desc-block p:last-child { margin-bottom: 0; }

.product-desc-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}
.product-desc-feature i {
    color: var(--success);
    font-size: 13px;
    flex-shrink: 0;
}

.product-purchase-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.product-variants {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.product-variants-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-variants-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.variant-card {
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
}
.variant-card:hover {
    border-color: var(--border-hover);
}
.variant-card.active {
    border-color: var(--accent);
    background: var(--accent-bg);
}

.variant-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.variant-card-name {
    font-size: 14px;
    font-weight: 600;
}

.variant-card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.variant-card-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.variant-card-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 6px;
    line-height: 1.5;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.product-price-display {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.product-price-old-display {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.product-quantity-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.product-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: none;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    transition: background var(--transition);
    font-family: 'Space Grotesk', sans-serif;
}
.qty-btn:hover { background: var(--bg-card-hover); }

#qty-input {
    width: 48px;
    height: 40px;
    text-align: center;
    background: var(--bg);
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    -moz-appearance: textfield;
}
#qty-input::-webkit-inner-spin-button,
#qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.product-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-total-label {
    font-size: 15px;
    color: var(--text-secondary);
}

.product-total-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.product-add-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    justify-content: center;
}

.product-discord-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(88, 101, 242, 0.06);
    border: 1px solid rgba(88, 101, 242, 0.12);
    border-radius: var(--radius);
    padding: 18px 20px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.product-discord-note > i {
    color: #5865F2;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}
.product-discord-note a {
    color: #7289DA;
    text-decoration: underline;
}

/* ---- Cart Modal ---- */

.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cart-modal.active {
    pointer-events: all;
    opacity: 1;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cart-panel {
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-modal.active .cart-panel {
    right: 0;
}

.cart-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.cart-panel-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 18px;
}
.cart-close:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 15px;
    text-align: center;
    padding: 40px 24px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
    width: 64px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cart-item-variant {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    transition: color var(--transition);
    padding: 2px;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cart-total-label {
    font-size: 15px;
    color: var(--text-secondary);
}

.cart-total-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-checkout:hover {
    background: var(--accent-hover);
}
.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ---- Checkout Form Modal ---- */

.checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.checkout-modal.active {
    pointer-events: all;
    opacity: 1;
}

.checkout-modal .cart-overlay {
    position: absolute;
    inset: 0;
}

.checkout-form {
    position: relative;
    width: 440px;
    max-width: calc(100vw - 48px);
    max-height: calc(100vh - 48px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.checkout-modal.active .checkout-form {
    transform: scale(1);
}

.checkout-form h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}
.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-method {
    flex: 1;
    position: relative;
}

.payment-method input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-card {
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}
.payment-method-card i {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.payment-method input:checked + .payment-method-card {
    border-color: var(--accent);
    color: var(--text);
    background: var(--accent-bg);
}

.checkout-discord-note {
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.checkout-discord-note i {
    color: #5865F2;
    margin-right: 6px;
}
.checkout-discord-note a {
    color: #7289DA;
    text-decoration: underline;
}

.checkout-actions {
    display: flex;
    gap: 12px;
}

.checkout-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ---- Payment Result Pages ---- */

.payment-result {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.payment-result-card {
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
}

.payment-result-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.payment-result-icon.success {
    background: rgba(34, 201, 151, 0.1);
    color: var(--success);
}

.payment-result-icon.failed {
    background: rgba(255, 92, 92, 0.1);
    color: var(--danger);
}

.payment-result-card h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.payment-result-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.payment-result-card .order-id-display {
    font-family: monospace;
    font-size: 14px;
    color: var(--accent-light);
    background: var(--accent-bg);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    margin: 12px 0 24px;
}

.payment-result-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

/* ---- Cart Notification ---- */

.cart-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 5000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}
.cart-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* ---- PayPal Instructions Modal ---- */

.paypal-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.paypal-modal.active {
    pointer-events: all;
    opacity: 1;
}

.paypal-content {
    position: relative;
    width: 420px;
    max-width: calc(100vw - 48px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    z-index: 1;
}
.paypal-modal.active .paypal-content {
    transform: scale(1);
}

.paypal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.paypal-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.paypal-total {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 12px;
    background: var(--bg);
    border-radius: 8px;
    margin-bottom: 24px;
}

/* ---- Animations ---- */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }

    .hero { min-height: auto; padding: 140px 24px 60px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .games-grid { grid-template-columns: 1fr; }

    .features-grid { grid-template-columns: 1fr; }

    .steps-grid { grid-template-columns: 1fr; gap: 8px; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cart-panel { width: 100vw; }

    .checkout-form { padding: 24px; }
    .payment-methods { flex-direction: column; }
    .checkout-actions { flex-direction: column; }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item .stat-value { font-size: 22px; }

    .section-header h2 { font-size: 28px; }
}
