@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #0b0d11;
    --bg-dark: #12161d;
    --bg-glass: rgba(26, 31, 44, 0.6);
    --bg-glass-heavy: rgba(18, 22, 29, 0.85);
    --primary: #00d2ff;
    --primary-glow: rgba(0, 210, 255, 0.3);
    --accent: #3aedaf;
    --text-main: #b0b8c4;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Next-Gen Gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, #1a1f2c 0%, #0b0d11 100%);
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glass Navbar */
nav {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), #3aedaf);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    opacity: 0.8;
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

/* Premium Hero */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px;
    font-weight: 300;
}

/* Button Pulse Animation */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%);
    color: white;
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 210, 255, 0.5);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(0, 210, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

/* Glass Cards */
.game-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.game-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 0.8s;
}

.game-card:hover img {
    transform: scale(1.08);
}

/* Social Proof Elements */
.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(58, 237, 175, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.live-counter {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Testimonial Gallery (Masonry style approx) */
.gallery-grid {
    display: columns;
    columns: 3;
    column-gap: 20px;
}

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 600px) { .gallery-grid { columns: 1; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: zoom-in;
    transition: 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

.gallery-item img {
    width: 100%;
    display: block;
}

/* Footer Next-Gen */
footer {
    background: var(--bg-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

footer p {
    font-size: 15px;
    opacity: 0.6;
}
