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

body {
    font-family: Arial, sans-serif;
    background: url('kanye.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: white;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    border-radius: 15px;
}

h1 {
    text-align: center;
    color: #8B4513;
    margin-bottom: 10px;
    font-size: 2em;
}

.subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-size: 0.95em;
}

.song-info {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.song-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.song-artist {
    color: #C41E3A;
    font-size: 1em;
    margin-bottom: 8px;
}

.song-album {
    color: #999;
    font-size: 0.9em;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    font-size: 1.1em;
}

.vote-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.vote-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}

.vote-btn:hover {
    border-color: #C41E3A;
    background: #f0f0f0;
}

.vote-btn.yes {
    color: #27ae60;
    border-color: #27ae60;
}

.vote-btn.yes:hover {
    background: #d5f4e6;
}

.vote-btn.no {
    color: #e74c3c;
    border-color: #e74c3c;
}

.vote-btn.no:hover {
    background: #fadbd8;
}

.vote-btn.selected {
    background: #C41E3A;
    color: white;
    border-color: #C41E3A;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #C41E3A;
    color: white;
    border: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #A01729;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.loader {
    text-align: center;
    color: #C41E3A;
    font-size: 1.1em;
    margin-bottom: 20px;
    display: none;
}

.loader::after {
    content: " ⏳";
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.message.success {
    background: #d5f4e6;
    color: #27ae60;
    display: block;
}

.message.error {
    background: #fadbd8;
    color: #e74c3c;
    display: block;
}

.stats {
    background: #f5f5f5;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

.stats h3 {
    color: #333;
    margin-bottom: 10px;
}

.stats p {
    color: #666;
    margin: 5px 0;
}

.back-btn {
    display: inline-block;
    background-color: #C41E3A;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.back-btn:hover {
    background-color: #A01729;
}