/* bitgamer - Gaming Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Gaming Premium Palette - Refined for "Openness" */
    --bg-dark: #050505;
    --bg-card: rgba(15, 15, 20, 0.6);
    --neon-blue: #00f2ff;
    --neon-purple: #bc13fe;
    --neon-gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));

    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(16px);

    /* Text & Borders */
    --white: #FFFFFF;
    --text: #E0E0E0;
    --muted: #888888;
    --border: rgba(255, 255, 255, 0.08);

    /* Semantic Colors */
    --primary: var(--neon-blue);
    --secondary: var(--neon-purple);
    --success: #00ff88;
    --danger: #ff3366;
    --warning: #ffcc00;

    /* Tokens */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-blue: 0 0 20px rgba(0, 242, 255, 0.4);
    --glow-purple: 0 0 20px rgba(188, 19, 254, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Enhanced Background Gradients - More Vibrant */
body::before {
    content: '';
    position: fixed;
    top: -5%; left: -5%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.18) 0%, transparent 75%);
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -5%; right: -5%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.18) 0%, transparent 75%);
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.font-orbitron { font-family: 'Outfit', sans-serif; }

/* Full-Width Desktop Optimized Container */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent, rgba(255,255,255,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(0, 242, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), var(--glow-blue);
}

/* 3D Render effect for product images */
.render-3d {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
    transition: var(--transition);
    transform-style: preserve-3d;
}

.glass-card:hover .render-3d {
    transform: translateZ(40px) translateY(-15px) rotateY(15deg);
    filter: drop-shadow(0 30px 45px rgba(0, 242, 255, 0.4));
}

/* Instant Gaming Style Storefront Elements */
.price-badge {
    background: #2D7FF9;
    color: white;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 20px;
    display: inline-block;
}

.discount-tag {
    background: #FF3366;
    color: white;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    margin-right: 8px;
}

.stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--success);
}

.stock-indicator::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--success);
}

.platform-tag {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Buttons */
.btn-primary {
    background: var(--neon-gradient);
    color: var(--bg-dark);
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--glow-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.6);
}

/* HUD Interface Components */
.hud-box {
    border-left: 5px solid var(--neon-blue);
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.15), transparent);
    padding: 20px 30px;
    margin: 25px 0;
}

.hud-label {
    font-size: 12px;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

/* Utils */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.block { display: block; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .flex-col-mobile { flex-direction: column !important; }

    h1 { font-size: clamp(32px, 8vw, 48px) !important; }
    h2 { font-size: 24px !important; }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }
}
