* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background: #1f1219; 
    min-height: 100vh;
    color: #f0e0e0;
    line-height: 1.6;
}


.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(160, 80, 120, 0.25), #1a0d13 90%);
    z-index: -1;
}


.glass {
    background: rgba(45, 25, 35, 0.7); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 120, 140, 0.4); 
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(180, 100, 130, 0.15);
    padding: 24px;
    transition: all 0.3s ease;
}

.glass:hover {
    border-color: #c08a8a;  
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(200, 120, 140, 0.25);
}


h1, h2, h3, .page-title, .section-title {
    font-weight: 400;
    letter-spacing: 1px;
}

.page-title {
    font-size: 2.8rem;
    color: #e6c0c0;  
    text-shadow: 0 0 15px #b84f6f;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title {
    font-size: 2rem;
    color: #e6c0c0;
    text-shadow: 0 0 10px #b84f6f;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.btn {
    background: linear-gradient(145deg, #8a4f6f, #b380b0); 
    border: none;
    color: #f0e0e0;
    padding: 12px 28px;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px #b84f6f;
    transition: 0.2s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: linear-gradient(145deg, #9f5f7f, #c08a8a);
    box-shadow: 0 0 30px #c08a8a;
    color: #fff;
    transform: scale(1.02);
}

.btn.small {
    padding: 6px 16px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}


.discord-btn {
    background: #7d4f6f;  
    border: 1px solid #c08a8a;
    box-shadow: 0 0 20px #b84f6f;
}

.discord-btn:hover {
    background: #9f6f8f;
    border-color: #e6c0c0;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    max-width: 1400px;
    margin: 15px auto 30px;
    border-radius: 60px;
}

.nav-brand {
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: #e6c0c0;
    text-shadow: 0 0 10px #b84f6f;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #f0d0d0;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.nav-menu a:hover {
    border-bottom-color: #c08a8a;
    text-shadow: 0 0 8px #c08a8a;
}

.nav-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #e6c0c0;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero-title {
    font-size: 4rem;
    color: #f0d0d0;
    text-shadow: 0 0 20px #b84f6f;
    margin-bottom: 15px;
}

.hero-sub {
    font-size: 1.4rem;
    color: #c0a0a0;
    margin-bottom: 30px;
}


.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.artist-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c08a8a;
    box-shadow: 0 0 30px #b84f6f;
    margin-bottom: 20px;
}

.artist-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.artist-genre {
    color: #c0a0a0;
    margin-bottom: 15px;
}


.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.release-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
}

.release-cover {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #c08a8a;
}

.release-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.release-artist {
    color: #c0a0a0;
    font-size: 0.95rem;
}

.release-year {
    color: #a08080;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.release-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}


.featured-artist {
    padding: 30px;
}

.featured-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.featured-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c08a8a;
    box-shadow: 0 0 40px #b84f6f;
}

.artist-bio {
    margin: 15px 0;
    line-height: 1.7;
}


.artist-profile {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
}

.profile-header {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c08a8a;
    box-shadow: 0 0 40px #b84f6f;
}

.profile-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.profile-bio {
    margin: 30px 0;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #dac0c0;
}


.contact-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
}

.contact-text {
    font-size: 1.2rem;
    color: #d0b0b0;
    margin: 20px 0;
}

.contact-button-wrapper {
    margin-top: 40px;
    text-align: center;
}

.contact-note {
    margin-top: 30px;
    color: #a08080;
    font-size: 0.9rem;
}


.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #c0a0a0;
    max-width: 1400px;
    margin: 60px auto 20px;
    padding: 15px 30px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #e6c0c0;
    font-size: 1.6rem;
    transition: 0.2s;
}

.social-icons a:hover {
    color: #f0d0d0;
    text-shadow: 0 0 10px #c08a8a;
}


@media (max-width: 1000px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(35, 20, 25, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        gap: 20px;
        border-bottom: 1px solid #c08a8a;
        z-index: 100;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .navbar {
        position: relative;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .featured-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .release-card {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        gap: 15px;
    }

    .page-title {
        font-size: 2rem;
    }
}