:root {
    --text-color: #444444;
    --shadow-color: rgba(255, 255, 255, 0.5);
    --spacing-base: 1rem;
    --button-min-width: 200px;
    --button-min-height: 60px;
    --logo-width: 300px;
}

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
    font-family: 'Bangers', cursive, system-ui;
    letter-spacing: 2px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-base);
}

.button-container {
    display: flex;
    gap: var(--spacing-base);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-base);
}

.game-button {
    position: relative;
    padding: 0;
    font-size: 1.35rem;
    color: #3c3c3c;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: url('8bit-empty-btn-trans.png') no-repeat center center;
    width: 265px;
    height: 110px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    transition: transform 0.2s ease;
    font-family: 'Bangers', cursive, system-ui;
    text-transform: uppercase;
    image-rendering: pixelated;
    background-size: 100% 100%;
    padding: 10px 20px;
}

.game-button:hover,
.game-button:focus {
    transform: scale(1.05);
    outline: none;
}

.game-button:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}

.logo {
    width: var(--logo-width);
    height: auto;
    margin-bottom: var(--spacing-base);
}

@media (max-width: 480px) {
    :root {
        --button-min-width: 160px;
        --logo-width: 200px;
    }
} 