body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #454955;
    padding: 20px;
    box-sizing: border-box;
}

.main-container {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    margin: 20px 0;
}

.help-text {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.5;
}

.help-text a {
    color: #fb9250;
    text-decoration: none;
}

.help-text a:hover {
    text-decoration: underline;
}

.genre-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.genre-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.genre-card:hover {
    transform: scale(1.05);
}

h2 {
    margin: 0 0 10px 0;
}

.genre-info {
    font-size: 0.9em;
    color: #666;
}

.branding-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    width: 300px;
}

@media (max-width: 600px) {
    .genre-container {
        grid-template-columns: 1fr;
    }
    .main-container {
        padding: 20px;
    }
    .help-text {
        font-size: 1em;
    }
    .branding-image {
        width: 200px;
    }
}

.genre-card.disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.genre-card.disabled:hover {
    transform: none;
}

/* Password screen styles */
#passwordScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #454955;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.password-container {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 16px;
    padding: 30px;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.password-container h2 {
    color: white;
    margin-bottom: 20px;
    width: 100%;
}

.password-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.password-button {
    background-color: #fb9250;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.password-button:hover {
    background-color: #e67e22;
}

.error-message {
    color: #ff6b6b;
    margin-top: 10px;
    display: none;
}

/* Song Type Selection Styles */
.song-type-selection {
    text-align: center;
    margin-bottom: 30px;
}

.song-type-selection h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.song-type-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.song-type-btn {
    background-color: #fb9250;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s;
    min-width: 150px;
}

.song-type-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.song-type-btn.disabled {
    background-color: #888888;
    color: #aaaaaa;
    cursor: not-allowed;
    opacity: 0.7;
    border: 2px solid #666666;
}

.song-type-btn.disabled:hover {
    background-color: #888888;
    color: #aaaaaa;
    transform: none;
    cursor: not-allowed;
}

.tutorial-info {
    margin-top: 25px;
    margin-bottom: 15px;
    color: white;
    font-size: 1em;
    line-height: 1.5;
}

.tutorial-info a {
    color: #fb9250;
    text-decoration: none;
    font-weight: bold;
}

.tutorial-info a:hover {
    color: #e67e22;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    color: #454955;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.modal-instruction {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9em;
    line-height: 1.4;
}

.modal-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.modal-input:focus {
    outline: none;
    border-color: #fb9250;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s;
    min-width: 80px;
}

.cancel-btn {
    background-color: #ccc;
    color: #333;
}

.cancel-btn:hover {
    background-color: #bbb;
}

.confirm-btn {
    background-color: #fb9250;
    color: white;
}

.confirm-btn:hover {
    background-color: #e67e22;
}

/* Song Selection Styles */
.song-selection {
    text-align: center;
    margin-bottom: 30px;
}

.song-selection h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.song-dropdown {
    width: 100%;
    max-width: 320px;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
}

.song-dropdown:focus {
    outline: none;
    border-color: #fb9250;
}

.load-song-btn {
    background-color: #fb9250;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s;
}

.load-song-btn:hover:not(:disabled) {
    background-color: #e67e22;
}

.load-song-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Genre Selection Styles */
.genre-selection {
    /* Inherits styles from existing .genre-container */
    display: block;
}

@media (max-width: 600px) {
    .song-type-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .song-type-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
.modal-btn {
    width: 100%;
}

/* Title validation styles */
.title-validation {
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
}

.title-validation.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.title-validation.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Demo Songs Section Styles */
.demo-songs-section {
    padding-top: 50px;
    text-align: center;
}

/* Style .demo-songs-dropdown to match .song-dropdown exactly */
.demo-songs-dropdown {
    width: 100%;
    max-width: 320px;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
}

.demo-songs-dropdown:focus {
    outline: none;
    border-color: #fb9250;
}

} 