:root {
    --bg: #000;
    --panel: #0d0d0d;
    --text: #fff;
    --muted: #bbbbbb;
    --cyan: #00eaff;
    --purple: #9b00ff;
    --pink: #ff00c8;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    color: var(--text);
    min-height: 100vh;
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #050505;
    border-bottom: 1px solid #111;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-links a {
    margin-left: 14px;
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--cyan);
}

/* Main content wrapper */
.main-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 18px;
}

/* Featured Game Button */
.featured-game-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.65);
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
    transition: 0.2s ease;
}

.featured-game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px var(--cyan);
}

.featured-thumb {
    width: 60px;
    height: 60px;
    background: var(--cyan);
    border-radius: 8px;
    margin-bottom: 6px;
}

.featured-label {
    font-size: 11px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-name {
    font-size: 14px;
    font-weight: bold;
}

