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

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
    color: #333;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    margin: 20px;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 95vw;
}

h1, p {
    margin-bottom: 1rem;
}

h1 {
    font-size: 6vw;
    min-font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.2rem;
    color: #555;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.game-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 4vw;
    min-font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 40vw;
    max-width: 180px;
    min-width: 90px;
    text-align: center;
}

.game-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
        max-width: 99vw;
    }
    h1 {
        font-size: 8vw;
    }
    .game-button {
        width: 80vw;
        font-size: 6vw;
    }
    .button-container {
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 900px;
    }
    h1 {
        font-size: 3vw;
    }
    .game-button {
        max-width: 250px;
        font-size: 2vw;
    }
}