:root {
    --bg-color: #050505;
    --card-bg: #101010;
    --primary: #00f2ff;
    --secondary: #ff0055;
    --text: #ffffff;
    --text-dim: #888888;
    --font: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    min-height: 100vh;
}

.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.03), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--text);
}

.login-btn {
    border: 1px solid var(--text-dim);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.login-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* HERO */
.hero {
    text-align: center;
    padding: 6rem 1rem;
}

h1 {
    font-size: 6rem;
    line-height: 0.9;
    font-weight: 900;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* GAMES GRID */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 4rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid #222;
    transition: transform 0.3s, border-color 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.game-card.oneline:hover {
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.card-content {
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.live {
    background: var(--primary);
    color: black;
}

.coming-soon {
    background: #333;
    color: #888;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.play-btn {
    display: inline-block;
    background: var(--text);
    color: black;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.play-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.play-btn.disabled {
    background: #222;
    color: #555;
    cursor: not-allowed;
}

.play-btn.disabled:hover {
    transform: none;
    background: #222;
}

/* VISUALS */
.card-visual {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    z-index: 1;
}

.circle-visual {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid var(--primary);
    opacity: 0.1;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #333;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    header {
        padding: 1.5rem;
    }

    .games-grid {
        padding: 1rem;
    }

    nav a {
        display: none;
    }

    /* Simplified mobile nav */
}