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

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0c10;
    color: #ffffff;
}

body {
    overflow-x: hidden;
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #1f2833;
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff200;
}

.header-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-socials svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    transition: fill 0.3s ease, transform 0.2s ease;
}

.header-socials a:hover svg {
    fill: #fff200;
    transform: scale(1.15);
}

.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(11, 12, 16, 0.85), rgba(11, 12, 16, 0.95)), 
                url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?q=80&w=1920') no-repeat center center/cover;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 242, 0, 0.4);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: #fff200;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff200;
    color: #0b0c10;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 242, 0, 0.6);
}

.btn-secondary {
    background-color: transparent !important;
    border: 2px solid #fff200;
    color: #fff200 !important;
}

.btn-secondary:hover {
    background-color: #fff200 !important;
    color: #0b0c10 !important;
    box-shadow: 0 0 25px rgba(255, 242, 0, 0.6);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #fff200;
    margin: 15px auto 0 auto;
}

.left-title {
    text-align: left;
}
.left-title::after {
    margin: 15px 0 0 0;
}

.spotify-section {
    background-color: #0b0c10;
    padding: 40px 0 0 0;
}

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

.spotify-container iframe {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #1f2833;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.release-card {
    background-color: #1f2833;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
    transition: border 0.3s ease, transform 0.3s ease;
}

.release-card:hover {
    border: 1px solid #fff200;
    transform: translateY(-5px);
}

.cover-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(45deg, #0b0c10, #1f2833);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff200;
    border-radius: 4px;
    margin-bottom: 20px;
}

.release-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.release-card p {
    font-size: 0.9rem;
    color: #8f9aa7;
    margin-bottom: 20px;
}

.stream-btn {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fff200;
    color: #fff200;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.stream-btn:hover {
    background-color: #fff200;
    color: #0b0c10;
}

.about-section {
    background-color: #11141a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-image-box {
    text-align: center;
}

.artist-img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border: 2px solid #1f2833;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #c5c6c7;
}

.newsletter-section {
    background-color: #0b0c10;
    border-top: 2px solid #1f2833;
    padding: 60px 0;
}

.newsletter-container {
    max-width: 650px;
    text-align: center;
    padding: 0 20px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #c5c6c7;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    background-color: #1f2833;
    border: 2px solid transparent;
    border-radius: 4px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #fff200;
}

.newsletter-btn {
    padding: 15px 35px;
    background-color: #fff200;
    color: #0b0c10;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 242, 0, 0.5);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
}

footer {
    background-color: #0b0c10;
    padding: 40px 20px;
    border-top: 2px solid #1f2833;
    font-size: 0.9rem;
    color: #666;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: #666666;
    transition: fill 0.3s ease, transform 0.2s ease;
}

.footer-socials a:hover svg {
    fill: #fff200;
    transform: scale(1.1);
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff200;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .header-socials {
        margin-top: 5px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero-buttons .cta-btn {
        width: 80%;
    }
    .spotify-container iframe {
        height: 152px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .left-title {
        text-align: center;
    }
    .left-title::after {
        margin: 15px auto 0 auto;
    }
    .about-text {
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-btn {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-links a {
        margin: 0 10px;
    }
}