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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --accent-gold: #DAA520;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--light-text);
    line-height: 1.6;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.band-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    letter-spacing: 8px;
    color: var(--light-text);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
}

.single-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.single-cover {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.single-cover:hover {
    transform: scale(1.02);
}

.single-cover img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.single-info {
    padding: 20px;
}

.latest-release {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.single-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.single-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Streaming Platforms */
.streaming-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: currentColor;
}

.platform-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.platform-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.platform-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
    color: #FF0000;
}

.platform-link.youtube-music {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
}

.platform-link.youtube-music:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
    color: #FF0000;
}

.platform-link.spotify {
    background: rgba(30, 215, 96, 0.1);
    border-color: rgba(30, 215, 96, 0.3);
}

.platform-link.spotify:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: #1ED760;
    color: #1ED760;
}

.platform-link.pandora {
    background: rgba(55, 123, 255, 0.1);
    border-color: rgba(55, 123, 255, 0.3);
}

.platform-link.pandora:hover {
    background: rgba(55, 123, 255, 0.2);
    border-color: #377BFF;
    color: #377BFF;
}

.platform-link.deezer {
    background: rgba(255, 0, 131, 0.1);
    border-color: rgba(255, 0, 131, 0.3);
}

.platform-link.deezer:hover {
    background: rgba(255, 0, 131, 0.2);
    border-color: #FF0083;
    color: #FF0083;
}

.platform-link.tidal {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.platform-link.tidal:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.platform-link.boomplay {
    background: rgba(218, 165, 32, 0.1);
    border-color: rgba(218, 165, 32, 0.3);
}

.platform-link.boomplay:hover {
    background: rgba(218, 165, 32, 0.2);
    border-color: #DAA520;
    color: #DAA520;
}

.platform-link.soundcloud {
    background: rgba(255, 85, 0, 0.1);
    border-color: rgba(255, 85, 0, 0.3);
}

.platform-link.soundcloud:hover {
    background: rgba(255, 85, 0, 0.2);
    border-color: #FF5500;
    color: #FF5500;
}

.platform-link.iheartradio {
    background: rgba(199, 0, 57, 0.1);
    border-color: rgba(199, 0, 57, 0.3);
}

.platform-link.iheartradio:hover {
    background: rgba(199, 0, 57, 0.2);
    border-color: #C70039;
    color: #C70039;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.about h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-gold);
    letter-spacing: 3px;
}

.about p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* Social Media */
.social-media {
    margin-top: 60px;
}

.social-media h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 28px;
    height: 28px;
}

.social-link:not(.disabled):hover {
    transform: translateY(-5px);
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.4);
}

.social-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.contact h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-gold);
    letter-spacing: 3px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    min-width: 300px;
}

.contact-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.contact-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 10px;
}

.contact-email {
    display: inline-block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.contact-email:hover {
    color: var(--accent-gold);
    background: rgba(218, 165, 32, 0.1);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.newsletter h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--light-text);
    letter-spacing: 3px;
}

.newsletter-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}

.submit-button {
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: var(--accent-gold);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #c99a1d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    min-height: 24px;
}

.form-message.success {
    color: #90EE90;
}

.form-message.error {
    color: #FFB6C1;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .band-name {
        font-size: 4rem;
    }

    .single-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

    .single-title {
        font-size: 2.5rem;
    }

    .streaming-platforms {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 568px) {
    .band-name {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 1rem;
    }

    header {
        padding: 40px 20px;
    }

    .hero {
        padding: 40px 20px;
    }

    .single-showcase {
        padding: 30px 20px;
    }

    .single-title {
        font-size: 2rem;
    }

    .about h2 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

    .platform-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .submit-button {
        width: 100%;
    }
}