* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(circle at center, #2a2a2a 0%, #121212 100%);
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

header {
    margin-bottom: 3rem;
}

h1 {
    font-size: 5rem;
    color: #e63946;
    letter-spacing: 8px;
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.5rem;
    color: #a8dadc;
    font-weight: 300;
    letter-spacing: 2px;
}

.game-intro {
    margin-bottom: 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.game-intro p {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary {
    background-color: #e63946;
    color: white;
    border: 2px solid #e63946;
}

.primary:hover {
    background-color: transparent;
    color: #e63946;
}

.secondary {
    background-color: transparent;
    color: #a8dadc;
    border: 2px solid #a8dadc;
}

.secondary:hover {
    background-color: #a8dadc;
    color: #121212;
}

footer {
    font-size: 0.9rem;
    color: #657786;
}
