:root {
    --bg-color: #0b0f19;
    --text-color: #ffffff;
    --primary-glow: #00f0ff;
    --card-bg: rgba(255, 255, 255, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 50% 50%, #161f36 0%, var(--bg-color) 100%);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hub-container {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
    text-align: center;
}

.hub-header {
    margin-bottom: 50px;
}

.hub-header h1 {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #00f0ff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    margin-bottom: 10px;
}

.hub-header p {
    font-size: 1.5rem;
    color: #a0aabf;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-glow);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
}

.game-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.game-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.game-info p {
    color: #bcc6db;
    line-height: 1.5;
}
