:root {
    --primary: #ff4757;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f1f2f6;
    --glow: 0 0 20px rgba(255, 71, 87, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem; /* Fallback */
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.4;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

.glow {
    text-shadow: 4px 4px 0px #000, var(--glow);
}

.tagline {
    font-size: 1.2rem;
    color: #a4b0be;
    letter-spacing: 2px;
}

h2.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 10px;
}

/* Hero Section */
#hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #2c3e50 0%, #000 100%);
    position: relative;
}

#hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        #000 3px,
        #000 3px
    );
    opacity: 0.2;
    pointer-events: none;
}

/* Games Section */
.section {
    padding: 80px 0;
}

.game-card {
    background: #1e272e;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.game-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: 'Press Start 2P', cursive;
    color: var(--primary);
}

.game-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #dfe4ea;
    max-width: 600px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.primary-btn:hover {
    background-color: #ff6b81;
    transform: scale(1.05);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--dark);
}

/* Footer */
footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    color: #747d8c;
    font-size: 0.9rem;
}