/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    background-color: #030005;
    /* Deep dark background */
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}

/* Header Container */
.dj-header {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Changed from strict height to allow natural expansion */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 40px; /* Space for the bottom buttons */
    box-sizing: border-box;
}

/* Background Layers */
.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1000px;
}

.bg-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Blend to tint it with our custom overlay */
    mix-blend-mode: luminosity;
    opacity: 0.7;
    filter: saturate(1.2) contrast(1.2);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Red and Black Gradient Overlay */
    background: radial-gradient(circle at center, rgba(160, 0, 30, 0.5) 0%, rgba(10, 0, 10, 0.9) 70%, #000 100%);
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 1);
}

/* Ambient Orbs (Soft Background Lights) */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: screen;
    z-index: 2;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: #ff0044;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: #2a0066; /* Elegant deep purple */
}

.orb-3 {
    top: 40%;
    left: 60%;
    width: 30vw;
    height: 30vw;
    background: #e6003d;
    opacity: 0.2;
}

/* Navbar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: #fff;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 0, 68, 0.8));
}

.watermark-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80vh;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.social-group {
    display: flex;
    gap: 12px;
}

.nav-social-btn {
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-social-btn:hover {
    color: #ff0044;
    background: rgba(255, 0, 68, 0.1);
    border-color: #ff0044;
    box-shadow: 0 0 15px rgba(255, 0, 68, 0.8);
    transform: translateY(-2px);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #ff0044;
    text-shadow: 0 0 15px rgba(255, 0, 68, 0.8);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.artist-container {
    position: relative;
    width: 80vh;
    max-width: 800px;
    height: 85vh;
    max-height: 900px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    transform-style: preserve-3d;
}

.artist-glow {
    position: absolute;
    bottom: 15%;
    width: 90%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,0,68,0.5) 0%, rgba(255,0,68,0.1) 40%, transparent 70%);
    filter: blur(30px);
    z-index: 4;
    border-radius: 50%;
    mix-blend-mode: screen;
    pointer-events: none;
}

.artist-img {
    position: relative;
    z-index: 5;
    max-height: 105%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9));
    pointer-events: none;
    /* Soft fade at the bottom */
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

/* Buttons */
.main-action-buttons {
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 20px 0;
    background-color: #030005;
}

.btn {
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #e6003d;
    color: #fff;
    border: 2px solid #e6003d;
    box-shadow: 0 0 20px rgba(230, 0, 61, 0.5);
}

.btn-primary:hover {
    background: #ff1a55;
    border-color: #ff1a55;
    box-shadow: 0 0 30px rgba(230, 0, 61, 0.8);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.elegant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 13px;
}

/* Add floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 3;
}

/* --- MAIN CONTENT & SECTIONS --- */
main {
    position: relative;
    z-index: 10;
    background-color: #030005;
}

/* Animated Marquee / Announcement */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #ff0044;
    color: #fff;
    padding: 20px 0;
    position: relative;
    transform: rotate(-2deg) scale(1.05); /* Tilted look */
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(255, 0, 68, 0.4);
    z-index: 55;
    border-top: 1px solid #ff4d79;
    border-bottom: 1px solid #ff4d79;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 15s linear infinite;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
}

.marquee-content span {
    padding: 0 40px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); } 
}

.section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.section-header {
    margin-bottom: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #ff0044;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 68, 0.6);
    margin: 0 auto;
}

.section-subtitle {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-bg-glow {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230,0,61,0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.section-bg-glow.glow-right {
    left: auto;
    right: -200px;
}

/* Background Watermarks inside Sections */
.section-watermark {
    position: absolute;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.watermark-left {
    top: 20%;
    left: -20%;
    height: 120%;
    transform: rotate(-15deg);
}

.watermark-right {
    top: 10%;
    right: -20%;
    height: 120%;
    transform: rotate(15deg);
}

.watermark-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 150%;
    opacity: 0.02;
}

/* Big Social Buttons at end of bio */
.big-social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    width: 100%;
}

.big-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.big-btn svg {
    transition: transform 0.3s ease;
}

.big-btn:hover {
    transform: translateY(-5px);
}

.big-btn:hover svg {
    transform: scale(1.2);
}

/* Specific Brands */
.big-btn.soundcloud {
    background: #ff5500;
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4);
}
.big-btn.soundcloud:hover {
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.6);
}

.big-btn.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}
.big-btn.instagram:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.6);
}

.big-btn.youtube {
    background: #ff0000;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}
.big-btn.youtube:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.6);
}

.big-btn.facebook {
    background: #1877F2;
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
}
.big-btn.facebook:hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

/* Biography */
.bio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bio-content p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Apps Section */
.apps-section {
    background: linear-gradient(to bottom, #030005 0%, #0a000a 50%, #030005 100%);
}

.app-mockup-container {
    width: 100%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-mockup-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    transition: transform 0.5s ease;
}

.app-mockup-img:hover {
    transform: translateY(-10px);
}

.app-badges {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.app-store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img {
    height: 60px;
    border-radius: 8px; /* Slightly round the edges to fit premium feel */
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0044;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 68, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    align-self: center;
    margin-top: 10px;
    padding: 15px 50px;
}

/* Footer Upgrade */
.footer {
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255, 0, 68, 0.2);
    background: #030005;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand h3 {
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 20px;
    margin: 0;
}

.footer-logo {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 68, 0.8));
}

.footer-socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social-btn {
    color: #888;
    background: rgba(255,255,255,0.05);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    color: #fff;
    background: #ff0044;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 68, 0.4);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Mobile Navigation Bar */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 0, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 68, 0.3);
    z-index: 1000;
    padding: 12px 0 20px 0; /* Extra padding for modern phones */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #bbb;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    gap: 5px;
}

.mobile-nav-item:hover, .mobile-nav-item:active {
    color: #ff0044;
}

.mobile-nav-item svg {
    transition: transform 0.3s ease;
}

.mobile-nav-item:hover svg, .mobile-nav-item:active svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 0, 68, 0.8));
    color: #ff0044;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-logo {
        height: 30px;
    }

    .social-group {
        gap: 8px;
    }

    .nav-social-btn {
        width: 32px;
        height: 32px;
    }

    .nav-social-btn svg {
        width: 16px;
        height: 16px;
    }

    .logo span {
        font-size: 18px;
    }

    .mobile-nav {
        display: flex;
    }

    .footer {
        padding-bottom: 90px;
    }

    .artist-container {
        width: 90vw;
        height: 70vh;
    }

    .main-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 40px;
    }

    .marquee-container {
        margin: 30px 0;
        padding: 12px 0;
        transform: rotate(-3deg) scale(1.1);
    }

    .marquee-content {
        font-size: 18px;
    }

    .app-mockup-img {
        max-height: 350px;
    }

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

    .footer-container {
        flex-direction: column;
        justify-content: center;
    }

    .section-watermark {
        font-size: 80px;
        letter-spacing: 5px;
    }
}
```