/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo .tagline {
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="rgba(255,255,255,0.05)" /><rect width="1200" height="600" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 80px 20px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    /* ...existing code... */
}

/* Single column about text (no image) */
.about-text[style*="max-width"] {
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* ==========================================
   STREAMING PLATFORMS
   ========================================== */
.streaming {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.streaming h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.platform-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card.spotify i {
    color: #1DB954;
}

.platform-card.deezer i {
    color: #FF6B00;
}

.platform-card.apple i {
    color: #000;
}

.platform-card.apple {
    /* ...existing code... */
}

.platform-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.platform-card p {
    color: #666;
    font-size: 1rem;
}

/* ==========================================
   MUSIC PAGE - STREAMING HERO
   ========================================== */
.streaming-hero {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
}

.streaming-intro {
    font-size: 1.3rem;
    color: #667eea;
    margin-bottom: 2rem;
    font-weight: 600;
}

.streaming-platforms-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.streaming-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.streaming-btn i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.streaming-btn span {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.streaming-btn p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.streaming-btn.spotify-large {
    background: linear-gradient(135deg, #1DB954 0%, #1aa34a 100%);
}

.streaming-btn.spotify-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(29, 185, 84, 0.4);
}

.streaming-btn.soundcloud-large {
    background: linear-gradient(135deg, #FF5500 0%, #E64A00 100%);
}

.streaming-btn.soundcloud-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.4);
}

/* Additional Platforms Section */
.additional-platforms {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.additional-platforms h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}
.music-page {
    padding: 80px 20px;
    background: white;
}

.music-page h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.featured-song {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem;
    border-radius: 15px;
}

.featured-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.featured-info h2 {
    color: #999;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.featured-info h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.featured-info p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.featured-platforms {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.platform-btn.spotify {
    background: #1DB954;
}

.platform-btn.spotify:hover {
    background: #1ed760;
    transform: translateY(-3px);
}

.platform-btn.deezer {
    background: #FF6B00;
}

.platform-btn.deezer:hover {
    background: #FF7F2D;
    transform: translateY(-3px);
}

.platform-btn.soundcloud {
    background: #FF5500;
}

.platform-btn.soundcloud:hover {
    background: #FF7A4D;
    transform: translateY(-3px);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 600;
}

.info-banner i {
    font-size: 1.5rem;
    animation: spin 2s linear infinite;
}

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

.song-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.song-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Merged Song Cards (mit beiden Plattformen) */
.song-card.merged {
    border: 2px solid transparent;
}

.song-card.merged:hover {
    border-color: #667eea;
}

.song-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.song-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.song-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.song-card:hover .song-overlay {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.play-btn.spotify {
    color: #1DB954;
}

.play-btn.spotify:hover {
    background: #1DB954;
    color: white;
    transform: scale(1.1);
}

.play-btn.deezer {
    color: #FF6B00;
}

.play-btn.deezer:hover {
    background: #FF6B00;
    color: white;
    transform: scale(1.1);
}

.play-btn.soundcloud {
    color: #FF5500;
}

.play-btn.soundcloud:hover {
    background: #FF5500;
    color: white;
    transform: scale(1.1);
}

.song-info {
    padding: 1.5rem;
}

.song-info h3 {
    color: #667eea;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.song-info p {
    color: #999;
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.song-duration {
    font-size: 0.85rem !important;
    color: #aaa !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Platform Badges */
.platform-badges {
    display: flex;
    gap: 0.4rem;
    margin: 0.8rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.badge:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge.spotify-badge {
    background: #1DB954;
    color: white;
}

.badge.soundcloud-badge {
    background: #FF5500;
    color: white;
}

.badge.deezer-badge {
    background: #FF6B00;
    color: white;
}

.badge.apple-badge {
    background: #000;
    color: white;
}

.badge.youtube-badge {
    background: #FF0000;
    color: white;
}

/* Quick Links - Standard */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
}

/* Quick Links - Mobile Optimized (nur eine Anzeige) */
.quick-links-mobile-optimized {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-wrap: wrap;
}

.quick-link span {
    display: inline;
}

.quick-link.spotify {
    background: #1DB954;
}

.quick-link.spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 185, 84, 0.3);
}

.quick-link.soundcloud {
    background: #FF5500;
}

.quick-link.soundcloud:hover {
    background: #FF7F2D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}

.quick-link.deezer {
    background: #FF6B00;
}

.quick-link.deezer:hover {
    background: #FF8B2D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.quick-link.apple {
    background: #000;
}

.quick-link.apple:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quick-link.youtube {
    background: #FF0000;
}

.quick-link.youtube:hover {
    background: #FF3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.play-btn.apple {
    color: #000;
}

.play-btn.apple:hover {
    background: #000;
    color: white;
}

.play-btn.youtube {
    color: #FF0000;
}

.play-btn.youtube:hover {
    background: #FF0000;
    color: white;
}

/* Platform Links (in overlay) */
.platform-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.play-btn.spotify {
    color: #1DB954;
}

.play-btn.spotify:hover {
    background: #1DB954;
    color: white;
    transform: scale(1.15);
}

.play-btn.soundcloud {
    color: #FF5500;
}

.play-btn.soundcloud:hover {
    background: #FF5500;
    color: white;
    transform: scale(1.15);
}

.play-btn.deezer {
    color: #FF6B00;
}

.play-btn.deezer:hover {
    background: #FF6B00;
    color: white;
    transform: scale(1.15);
}

.play-btn.apple {
    color: #000;
}

.play-btn.apple:hover {
    background: #000;
    color: white;
    transform: scale(1.15);
}

.play-btn.youtube {
    color: #FF0000;
}

.play-btn.youtube:hover {
    background: #FF0000;
    color: white;
    transform: scale(1.15);
}

/* Maintenance Notice */
.maintenance-notice {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.maintenance-notice i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

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

.maintenance-notice h2 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.maintenance-notice p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==========================================
   GALLERY PAGE
   ========================================== */
.gallery-page {
    padding: 80px 20px;
    background: white;
}

.gallery-page h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-page {
    padding: 80px 20px;
    background: white;
}

.contact-page h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-info {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-info h2 {
    color: #667eea;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #667eea;
    min-width: 30px;
}

.info-item h3 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    font-size: 0.95rem;
}

.info-item a {
    color: #667eea;
    font-weight: 600;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.social-section h3 {
    color: #333;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: #764ba2;
    transform: translateY(-3px) scale(1.1);
}

/* Mensajes de éxito y error */
.success-message {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.success-message i {
    font-size: 1.5rem;
    min-width: 30px;
}

.error-messages {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.error-messages i {
    font-size: 1.5rem;
    min-width: 30px;
}

.error-messages ul {
    list-style: none;
}

.error-messages li {
    margin-bottom: 0.5rem;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-page {
    padding: 80px 20px;
    background: white;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #667eea;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.legal-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: justify;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: #555;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #764ba2;
    transform: translateY(-3px) scale(1.1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 4px solid #667eea;
    padding: 1.5rem 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    animation: slideUp 0.5s ease-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-accept,
.btn-more {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

.btn-more {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-more:hover {
    background: #667eea;
    color: white;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 50;
    }

    .navbar .container {
        position: relative;
    }

    body {
        overflow-x: hidden;
    }

    body.menu-active {
        overflow: hidden;
    }

    /* Mobile Navigation Menu - Slide In Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        list-style: none;
        margin: 0;
        padding: 80px 20px 20px 20px;
        z-index: 49;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 0;
        padding: 0;
        list-style: none;
        display: block;
    }

    .nav-links a {
        color: white;
        display: block;
        padding: 1.5rem 1rem;
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 8px;
        transition: all 0.3s ease;
        margin-bottom: 0.5rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: rgba(255, 255, 255, 0.2);
        padding-left: 2rem;
    }

    /* Hamburger Menu Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 10px;
        gap: 6px;
        z-index: 51;
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background-color: white;
        transition: all 0.35s ease;
        display: block;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(10px, -10px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .featured-song {
        grid-template-columns: 1fr;
    }

    .featured-platforms {
        flex-direction: column;
    }

    .platform-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-more {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: flex-start;
    }

    /* Mobile optimizations for songs */
    .songs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .quick-links-mobile-optimized {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .quick-link {
        flex-direction: column;
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
        gap: 0.3rem;
    }

    .quick-link span {
        display: block;
        font-size: 0.65rem;
    }

    .song-card {
        margin-bottom: 1rem;
    }

    .song-info {
        padding: 1rem;
    }

    .link-note {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .platform-grid {
        grid-template-columns: 1fr;
    }

    .songs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    /* Extra mobile optimizations for very small screens */
    .quick-links-mobile-optimized {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.35rem;
    }

    .quick-link {
        padding: 0.4rem 0.5rem;
        font-size: 0.65rem;
    }

    .quick-link i {
        font-size: 0.9rem;
    }

    .quick-link span {
        font-size: 0.6rem;
    }

    .song-info h3 {
        font-size: 1rem;
    }

    .song-info p {
        font-size: 0.85rem;
    }

    .music-page h1 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

