/* Flappy Daxo Game Styles */
#game-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

#game-canvas {
    border: 2px solid #333;
    max-width: 100%;
    max-height: 80vh;
    background: #050505;
}

.game-ui {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    color: white;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.score-display {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.high-score {
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
    color: white;
}

.game-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -3px;
}

.game-msg {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 40px;
}

.game-btn {
    border: 2px solid white;
    padding: 15px 40px;
    background: transparent;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn:hover {
    background: white;
    color: black;
}

.close-game {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.3s ease;
    z-index: 100;
}

.close-game:hover {
    transform: scale(1.1);
    color: #00A3E1;
}
