/* Global Styles */
body {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    background-color: #121212;
    color: white;
    line-height: 1.6;
}

/* Custom Spotify button */
.spotify-button {
    background-color: #1DB954;
    color: white;
    font-weight: bold;
    padding: 12px, 24px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spotify-button:hover {
    background-color: #1ed760;
    transform: scale(1.05);
}

/* Custom animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Timeline Animations */
@keyframes timelineProgress {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-timeline {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Form styling */
.form-input {
    background-color: #282828;
    border: 1px solid #333;
    color: white;
    padding: 12px 16px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 1rem;
}

.form-input:focus {
    border-color: #1DB954;
    outline: none;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #B3B3B3;
    font-weight: 500;
}

/* Card styling */
.spotify-card {
    background-color: #282828;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.spotify-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Language selector styling */
.language-selector-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.2s ease;
}

.language-selector-btn:hover {
    color: #1DB954;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #282828;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;
    overflow: hidden;
    min-width: 150px;
}

.language-option {
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

.language-option:hover {
    background-color: #333;
}

.language-option.active {
    background-color: rgba(29, 185, 84, 0.2);
}

/* Custom Spotify gradient */
.spotify-gradient {
    background: linear-gradient(135deg, #1DB954 0%, #1ed760 100%);
}