:root {
    --primary: #ff4757;
    --bg: #0a0a0b;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background: var(--bg);
    color: white;
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Subtle background glow */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, #ff475733, transparent 50%);
    z-index: -1;
}

.game-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 100px 10%;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.game-row:hover {
    background: rgba(255, 255, 255, 0.01);
}

.game-row:nth-child(even) {
    flex-direction: row-reverse;
}

.info h2 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info p {
    color: #888;
    font-size: 1.1rem;
    max-width: 400px;
}

.stats-box {
    width: 400px;
    min-height: 220px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* The Glowing Border Effect */
.stats-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 71, 87, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: #666;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
}