* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-image: url('https://upload.wikimedia.org/wikipedia/en/d/d5/Taylor_Swift_-_1989_%28Taylor%27s_Version%29.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-image: url('https://upload.wikimedia.org/wikipedia/en/d/d5/Taylor_Swift_-_1989_%28Taylor%27s_Version%29.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}
header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}
header h1 {
    font-size: 3rem;
    color: #54B5FB;
    margin-bottom: 10px;
}
header h2 {
    font-size: 1.5rem;
    color: #54B5FB;
    margin-bottom: 20px;
}
header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Spotify Links Styling */
.spotify-links {
    margin-top: 20px;
}

.spotify-link {
    display: inline-block;
    background-color: #1DB954;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.spotify-link:hover {
    background-color: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 185, 84, 0.4);
}

.winner-spotify-link {
    margin: 20px 0;
}

.winner-spotify-link .spotify-link {
    background-color: #1DB954;
    font-size: 1.1rem;
    padding: 15px 25px;
}

.game-info {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #2c3e50;
}
.game-info span {
    font-weight: bold;
    color: #e74c3c;
}
.button-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}
.song-button {
    background-color: #87ceeb;
    border: 3px solid #5dade2;
    border-radius: 15px;
    padding: 40px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #1b4f72;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-wrap: break-word;
}
.song-button:hover {
    background-color: #5dade2;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(93, 173, 226, 0.3);
}
.song-button:active {
    transform: translateY(-2px);
}
.winner-screen {
    text-align: center;
    padding: 40px;
}
.winner-screen h2 {
    font-size: 2.5rem;
    color: #B5E5F8;
    margin-bottom: 30px;
}
.winner-song {
    background-color: #B5E5F8;
    color: white;
    padding: 30px;
    border-radius: 15px;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(253, 121, 168, 0.3);
}
.play-again-button {
    background-color: #00b894;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.play-again-button:hover {
    background-color: #00a085;
    transform: translateY(-2px);
}
.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .song-button {
        min-width: 250px;
        min-height: 120px;
        font-size: 1.1rem;
        padding: 30px 20px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header h2 {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 15px;
    }
    
    .spotify-link {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}