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

body {
    font-family: Arial, sans-serif;
    background-color: #8B4513;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    padding: 30px 0;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.nav-btn {
    display: inline-block;
    background-color: #C41E3A;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

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

.loader {
    text-align: center;
    color: white;
    display: none;
    margin: 40px 0;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.album-card {
    background-color: white;
    overflow: hidden;
    border-radius: 10px;
}

.album-card:hover {
    opacity: 0.9;
}

.album-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.album-info {
    padding: 20px;
}

.album-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    min-height: 50px;
}

.album-artist {
    color: #C41E3A;
    font-size: 0.95em;
    margin-bottom: 10px;
    font-weight: 600;
}

.album-year {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 12px;
}

.album-tracks {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
    padding: 8px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.album-link {
    display: block;
    background-color: #C41E3A;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 0.9em;
    text-align: center;
}

.album-link:hover {
    background-color: #A01729;
}

.error {
    background-color: #ff6b6b;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
}

.no-results {
    text-align: center;
    color: white;
    font-size: 1.1em;
    padding: 40px;
}

.quote-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-text {
    color: white;
    font-size: 1.3em;
    margin-bottom: 20px;
}

.quote-btn {
    background-color: #C41E3A;
    color: white;
    padding: 12px 30px;
    border: none;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

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

.quote-display {
    color: white;
    font-size: 1.1em;
    font-style: italic;
    padding: 20px;
    min-height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #C41E3A;
}