/* =========================
   GLOBAL SETTINGS
========================= */
*{
    box-sizing:border-box;
}
body{
    margin:0;
    background:#050505;
    color:white;
    font-family:'Montserrat', Arial, sans-serif;
}

.hero{
    height:100vh;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.15),
            rgba(0,0,0,0.35)
        ),
        url("../images/banner.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    position:relative;
}

.hero-content{
    position:absolute;
    left:0;
    right:0;
    bottom:90px;
    text-align:center;
}

.hero-content h1{
    position:absolute;
    left:-9999px;
}



.hero-buttons{
    margin-top:40px;
}

.hero-buttons a{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    text-decoration:none;
    color:white;
    background:rgba(0,0,0,0.55);
    border:2px solid #ff0048;
    border-radius:30px;
    transition:0.3s;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.9rem;
}

.hero-buttons a:hover{
    background:#ff0048;
}

.latest-release{
    padding:100px 8%;
    background:#050505;
}

.latest-release h2{
    font-size:3rem;
    text-align:center;
    margin-bottom:50px;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
}

.release-box{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    gap:50px;
    align-items:center;
    background:#111111;
    padding:40px;
    border:1px solid rgba(255,0,72,0.4);
    border-radius:20px;
}

.release-cover{
    flex:1;
}

.release-cover img{
    width:100%;
    display:block;
    border-radius:15px;
}

.release-info{
    flex:1;
}

.release-info h3{
    font-size:2.5rem;
    margin:0 0 20px;
}

.release-info p{
    color:#cccccc;
    line-height:1.7;
    font-size:1.1rem;
}

.release-buttons{
    margin-top:30px;
}

.release-buttons a{
    display:inline-block;
    margin-right:15px;
    margin-bottom:15px;
    padding:14px 28px;
    color:white;
    text-decoration:none;
    border:2px solid #ff0048;
    border-radius:30px;
    transition:0.3s;
}

.release-buttons a:hover{
    background:#ff0048;
}
/* =========================
   TOP MENU
========================= */
.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 6%;

    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(10px);

    z-index:1000;
}

.logo{
    font-size:1.5rem;
    font-weight:bold;
    letter-spacing:2px;
    color:white;
}

.topbar nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:0.95rem;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:0.3s;
}

.topbar nav a:hover{
    color:#ff0048;
}
html{
    scroll-behavior:smooth;
}

.content-section{
    padding:100px 8%;
    background:#080808;
    border-top:1px solid rgba(255,255,255,0.08);
    scroll-margin-top:70px;
}

.content-section h2{
    font-size:3rem;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:25px;
}

.content-section p{
    max-width:800px;
    color:#cccccc;
    font-size:1.1rem;
    line-height:1.8;
}
.hero-cta{
    background:#050505;
    padding:30px 8%;
    text-align:center;
    border-top:1px solid rgba(255,0,72,0.35);
    border-bottom:1px solid rgba(255,0,72,0.35);
}

.hero-cta a{
    display:inline-block;
    margin:10px;
    padding:15px 35px;
    text-decoration:none;
    color:white;
    background:rgba(255,0,72,0.12);
    border:2px solid #ff0048;
    border-radius:30px;
    transition:0.3s;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.9rem;
}

.hero-cta a:hover{
    background:#ff0048;
}
@media (max-width: 900px){

    .topbar{
    position:sticky;
    top:0;

    height:auto;
    padding:18px 6%;
    flex-direction:column;
    gap:15px;
}

    .logo{
        font-size:1.2rem;
    }

    .topbar nav a{
        margin:0 10px;
        font-size:0.8rem;
    }
/* =========================
   HERO / BANNER
========================= */
    .hero{
    height:auto;
    aspect-ratio:2048 / 768;

    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#050505;
}

    .hero-cta{
        padding:25px 5%;
    }

    .hero-cta a{
        padding:13px 25px;
        font-size:0.8rem;
    }

    .release-box{
        flex-direction:column;
        padding:25px;
        gap:30px;
    }
/* =========================
   LATEST RELEASE
========================= */
    .latest-release{
        padding:70px 5%;
    }

    .latest-release h2{
        font-size:2.2rem;
    }

    .release-info h3{
        font-size:2rem;
    }

    .content-section{
        padding:70px 5%;
    }

    .content-section h2{
        font-size:2.2rem;
    }
}
/* =========================
   VIDEOS
========================= */
.videos-section{
    padding:100px 8%;
    background:#080808;
    border-top:1px solid rgba(255,255,255,0.08);
    scroll-margin-top:70px;
}

.videos-section h2{
    font-size:3rem;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:20px;
    text-align:center;
}

.section-intro{
    max-width:800px;
    margin:0 auto 50px;
    color:#cccccc;
    font-size:1.1rem;
    line-height:1.8;
    text-align:center;
}

.video-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.video-card{
    background:#111111;
    border:1px solid rgba(255,0,72,0.35);
    border-radius:20px;
    overflow:hidden;
    transition:0.3s;
}

.video-card:hover{
    transform:translateY(-8px);
    border-color:#ff0048;
}

.video-placeholder{
    height:220px;
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.65)),
        #22000a;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#ff0048;
    font-size:4rem;
}

.video-card h3{
    font-size:1.5rem;
    margin:25px 25px 10px;
}

.video-card p{
    color:#aaaaaa;
    margin:0 25px 25px;
}
@media (max-width: 900px){

    .videos-section{
        padding:70px 5%;
    }

    .videos-section h2{
        font-size:2.2rem;
    }

    .video-grid{
        grid-template-columns:1fr;
    }

    .video-placeholder{
        height:200px;
    }

}
/* =========================
   ABOUT
========================= */
.about-section{
    padding:100px 8%;
    background:#050505;
    border-top:1px solid rgba(255,255,255,0.08);
    scroll-margin-top:70px;
}

.about-box{
    max-width:1100px;
    margin:0 auto;
    background:
        linear-gradient(
            135deg,
            rgba(255,0,72,0.16),
            rgba(0,0,0,0.95)
        );

    border:1px solid rgba(255,0,72,0.4);
    border-radius:25px;
    padding:60px;
}

.about-text h2{
    font-size:3rem;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
    margin:0 0 20px;
}

.about-text h3{
    font-size:1.7rem;
    margin:0 0 25px;
    color:white;
}

.about-text p{
    color:#cccccc;
    font-size:1.1rem;
    line-height:1.8;
    max-width:850px;
}

.about-tags{
    margin-top:35px;
}

.about-tags span{
    display:inline-block;
    margin:8px 10px 8px 0;
    padding:10px 18px;
    border:1px solid rgba(255,0,72,0.7);
    border-radius:30px;
    color:white;
    background:rgba(255,0,72,0.12);
    font-size:0.9rem;
    text-transform:uppercase;
    letter-spacing:1px;
}
@media (max-width: 900px){

    .about-section{
        padding:70px 5%;
    }

    .about-box{
        padding:35px 25px;
    }

    .about-text h2{
        font-size:2.2rem;
    }

    .about-text h3{
        font-size:1.3rem;
    }

    .about-text p{
        font-size:1rem;
    }

    .about-tags span{
        font-size:0.75rem;
        padding:9px 14px;
    }

}
/* =========================
   CONTACT
========================= */
.contact-section{
    padding:100px 8%;
    background:#080808;
    border-top:1px solid rgba(255,255,255,0.08);
    scroll-margin-top:70px;
}

.contact-section h2{
    font-size:3rem;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:20px;
    text-align:center;
}

.contact-box{
    max-width:1100px;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
}

.contact-card{
    background:#111111;
    border:1px solid rgba(255,0,72,0.35);
    border-radius:20px;
    padding:40px;
}

.contact-card h3{
    font-size:1.7rem;
    margin:0 0 20px;
    color:white;
}

.contact-card p{
    color:#cccccc;
    font-size:1.05rem;
    line-height:1.7;
}

.contact-card a{
    display:inline-block;
    margin-top:20px;
    color:white;
    text-decoration:none;
    border-bottom:1px solid #ff0048;
    transition:0.3s;
}

.contact-card a:hover{
    color:#ff0048;
}

.social-links{
    margin-top:20px;
}

.social-links a{
    margin-right:18px;
    margin-bottom:12px;
}
@media (max-width: 900px){

    .contact-section{
        padding:70px 5%;
    }

    .contact-section h2{
        font-size:2.2rem;
    }

    .contact-box{
        grid-template-columns:1fr;
    }

    .contact-card{
        padding:30px 25px;
    }

    .contact-card h3{
        font-size:1.4rem;
    }

}
/* =========================
   FOOTER
========================= */
.footer{
    padding:70px 8% 40px;
    background:#030303;
    border-top:1px solid rgba(255,0,72,0.35);
    text-align:center;
}

.footer-logo{
    font-size:2rem;
    font-weight:bold;
    letter-spacing:4px;
    color:white;
    margin-bottom:20px;
}

.footer p{
    max-width:650px;
    margin:0 auto 30px;
    color:#cccccc;
    line-height:1.7;
}

.footer-links{
    margin-bottom:25px;
}

.footer-links a,
.footer-socials a{
    display:inline-block;
    margin:8px 14px;
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;
    transition:0.3s;
}

.footer-links a:hover,
.footer-socials a:hover{
    color:#ff0048;
}

.footer-socials{
    margin-bottom:35px;
}

.footer small{
    color:#777777;
    font-size:0.8rem;
}
/* Neon-effekt på logo og overskrifter */

.logo,
.footer-logo{
    text-shadow:
        0 0 8px rgba(255,0,72,0.7),
        0 0 18px rgba(255,0,72,0.4);
}

.latest-release h2,
.videos-section h2,
.about-text h2,
.contact-section h2{
    text-shadow:
        0 0 10px rgba(255,0,72,0.55),
        0 0 25px rgba(255,0,72,0.25);
}
/* Neon-effekt på knapper */

.hero-cta a,
.release-buttons a{
    box-shadow:
        0 0 10px rgba(255,0,72,0.25),
        inset 0 0 10px rgba(255,0,72,0.12);
}

.hero-cta a:hover,
.release-buttons a:hover{
    box-shadow:
        0 0 18px rgba(255,0,72,0.75),
        0 0 35px rgba(255,0,72,0.35);
}
/* =========================
   MORE MUSIC
========================= */
.music-grid-section{
    padding:100px 8%;
    background:#050505;
    border-top:1px solid rgba(255,255,255,0.08);
}

.music-grid-section h2{
    font-size:3rem;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:20px;
    text-align:center;
    text-shadow:
        0 0 10px rgba(255,0,72,0.55),
        0 0 25px rgba(255,0,72,0.25);
}

.music-grid{
    max-width:1200px;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.music-card{
    background:
        linear-gradient(
            145deg,
            rgba(255,0,72,0.14),
            rgba(17,17,17,1)
        );

    border:1px solid rgba(255,0,72,0.35);
    border-radius:20px;
    padding:30px;
    min-height:230px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    transition:0.3s;
}

.music-card:hover{
    transform:translateY(-8px);
    border-color:#ff0048;
    box-shadow:
        0 0 18px rgba(255,0,72,0.35);
}

.music-card h3{
    font-size:1.5rem;
    margin:0 0 15px;
    color:white;
}

.music-card p{
    color:#cccccc;
    line-height:1.6;
    margin-bottom:25px;
}

.music-card a{
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;
    border-bottom:1px solid #ff0048;
    width:max-content;
    transition:0.3s;
}

.music-card a:hover{
    color:#ff0048;
}
/* =========================
   MOBILE / RESPONSIVE
========================= */
@media (max-width: 900px){

    .music-grid-section{
        padding:70px 5%;
    }

    .music-grid-section h2{
        font-size:2.2rem;
    }

    .music-grid{
        grid-template-columns:1fr;
    }

    .music-card{
        min-height:auto;
    }

}
/* =========================
   JOIN THE STORM
========================= */
.storm-section{
    padding:100px 8%;
    background:
        linear-gradient(
            135deg,
            rgba(255,0,72,0.18),
            rgba(0,0,0,1)
        );
    text-align:center;
    border-top:1px solid rgba(255,0,72,0.35);
    border-bottom:1px solid rgba(255,0,72,0.35);
}

.storm-section h2{
    font-size:3.5rem;
    color:white;
    text-transform:uppercase;
    letter-spacing:4px;
    margin:0 0 20px;
    text-shadow:
        0 0 12px rgba(255,0,72,0.75),
        0 0 30px rgba(255,0,72,0.35);
}

.storm-section p{
    max-width:700px;
    margin:0 auto 40px;
    color:#cccccc;
    font-size:1.1rem;
    line-height:1.7;
}

.storm-form{
    max-width:650px;
    margin:0 auto;
    display:flex;
    gap:15px;
}

.storm-form input{
    flex:1;
    padding:16px 20px;
    border-radius:30px;
    border:1px solid rgba(255,0,72,0.6);
    background:#111111;
    color:white;
    font-size:1rem;
    outline:none;
}

.storm-form input::placeholder{
    color:#888888;
}

.storm-form button{
    padding:16px 32px;
    border-radius:30px;
    border:2px solid #ff0048;
    background:#ff0048;
    color:white;
    font-size:0.9rem;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
    transition:0.3s;
}

.storm-form button:hover{
    background:transparent;
    box-shadow:
        0 0 18px rgba(255,0,72,0.75),
        0 0 35px rgba(255,0,72,0.35);
}
@media (max-width: 900px){

    .storm-section{
        padding:70px 5%;
    }

    .storm-section h2{
        font-size:2.3rem;
    }

    .storm-form{
        flex-direction:column;
    }

    .storm-form button{
        width:100%;
    }

}
/* =========================
   VISUALS / GALLERY
========================= */
.gallery-section{
    padding:100px 8%;
    background:#050505;
    border-top:1px solid rgba(255,255,255,0.08);
    scroll-margin-top:70px;
}

.gallery-section h2{
    font-size:3rem;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:20px;
    text-align:center;
    text-shadow:
        0 0 10px rgba(255,0,72,0.55),
        0 0 25px rgba(255,0,72,0.25);
}

.gallery-grid{
    max-width:1200px;
    margin:50px auto 0;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.gallery-card{
    background:#111111;
    border:1px solid rgba(255,0,72,0.35);
    border-radius:20px;
    overflow:hidden;
    min-height:360px;
}

.gallery-card img{
    width:100%;
    height:100%;
    min-height:360px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.gallery-card:hover img{
    transform:scale(1.06);
}
@media (max-width: 900px){

    .gallery-section{
        padding:70px 5%;
    }

    .gallery-section h2{
        font-size:2.2rem;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        min-height:300px;
    }

    .gallery-card img{
        min-height:300px;
    }

}
@media (max-width: 900px){

    .topbar nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:12px 18px;
    }

    .topbar nav a{
        margin:0;
    }

}
.video-frame{
    width:100%;
    aspect-ratio:16 / 9;
    background:#000000;
    overflow:hidden;
}

.video-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}
.spotify-player{
    margin-top:30px;
    border-radius:15px;
    overflow:hidden;
    background:#000000;
}

.spotify-player iframe{
    width:100%;
    height:152px;
    border:0;
    display:block;
}
.storm-form input:disabled,
.storm-form button:disabled{
    opacity:0.65;
    cursor:not-allowed;
}

.storm-form button:disabled:hover{
    background:#ff0048;
    box-shadow:none;
}
.disabled-link{
    display:inline-block;
    margin-right:15px;
    margin-bottom:15px;
    padding:14px 28px;
    color:#aaaaaa;
    text-decoration:none;
    border:2px solid rgba(255,0,72,0.45);
    border-radius:30px;
    background:rgba(255,0,72,0.08);
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;
    cursor:not-allowed;
    opacity:0.75;
}
.music-coming-soon{
    color:#aaaaaa;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;
    border-bottom:1px solid rgba(255,0,72,0.45);
    width:max-content;
    opacity:0.75;
    cursor:not-allowed;
}
.social-disabled{
    display:inline-block;
    margin:8px 14px;
    color:#aaaaaa;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;
    opacity:0.7;
    cursor:not-allowed;
    border-bottom:1px solid rgba(255,0,72,0.35);
}
.email-disabled{
    display:inline-block;
    margin-top:20px;
    color:#aaaaaa;
    border-bottom:1px solid rgba(255,0,72,0.45);
    opacity:0.75;
    cursor:not-allowed;
}

/* =========================
   MOBILE HAMBURGER MENU
========================= */

#menu-toggle{
    display:none;
}

.menu-icon{
    display:none;
}

@media (max-width: 900px){

    .topbar{
        flex-direction:row;
        height:70px;
        padding:0 6%;
    }

    .menu-icon{
        display:flex;
        flex-direction:column;
        gap:6px;
        cursor:pointer;
        z-index:1001;
    }

    .menu-icon span{
        display:block;
        width:28px;
        height:3px;
        background:white;
        border-radius:3px;
        transition:0.3s;
    }

    .main-nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;

        display:none;
        flex-direction:column;
        align-items:center;

        background:rgba(0,0,0,0.95);
        border-top:1px solid rgba(255,0,72,0.35);
        border-bottom:1px solid rgba(255,0,72,0.35);

        padding:25px 0;
    }

    .main-nav a{
        margin:12px 0;
        font-size:0.95rem;
    }

    #menu-toggle:checked ~ .main-nav{
        display:flex;
    }

    #menu-toggle:checked + .menu-icon span:nth-child(1){
        transform:rotate(45deg) translate(6px, 6px);
    }

    #menu-toggle:checked + .menu-icon span:nth-child(2){
        opacity:0;
    }

    #menu-toggle:checked + .menu-icon span:nth-child(3){
        transform:rotate(-45deg) translate(7px, -7px);
    }

}
/* =========================
   FIX MOBILE HAMBURGER MENU
========================= */

@media (max-width: 900px){

    .topbar .main-nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;

        display:none;

        flex-direction:column;
        align-items:center;

        background:rgba(0,0,0,0.96);
        border-top:1px solid rgba(255,0,72,0.35);
        border-bottom:1px solid rgba(255,0,72,0.35);

        padding:25px 0;
        z-index:1000;
    }

    .topbar .main-nav a{
        margin:12px 0;
        font-size:0.95rem;
    }

    .topbar #menu-toggle:checked ~ .main-nav{
        display:flex;
    }

}
.back-to-top{
    display:inline-block;
    margin-bottom:30px;
    padding:12px 26px;
    color:white;
    text-decoration:none;
    border:1px solid rgba(255,0,72,0.6);
    border-radius:30px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.8rem;
    transition:0.3s;
}

.back-to-top:hover{
    background:#ff0048;
    box-shadow:
        0 0 15px rgba(255,0,72,0.55);
}
/* =========================
   ACCESSIBILITY / FOCUS
========================= */

a:focus,
button:focus,
input:focus,
.menu-icon:focus{
    outline:2px solid #ff0048;
    outline-offset:4px;
}
/* =========================
   SKIP LINK
========================= */

.skip-link{
    position:fixed;
    top:15px;
    left:15px;
    z-index:2000;

    background:#ff0048;
    color:white;

    padding:12px 18px;
    border-radius:30px;

    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.8rem;

    transform:translateY(-120px);
    transition:0.3s;
}

.skip-link:focus{
    transform:translateY(0);
}
/* =========================
   ANCHOR SCROLL OFFSET
========================= */

html{
    scroll-padding-top:90px;
}

#music,
#videos,
#gallery,
#about,
#press,
#contact{
    scroll-margin-top:90px;
}
/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:0.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:0.01ms !important;
        scroll-behavior:auto !important;
    }

}
/* =========================
   INACTIVE VIDEOS
========================= */

.video-inactive{
    background:
        linear-gradient(
            135deg,
            rgba(255,0,72,0.18),
            rgba(0,0,0,1)
        );
}

.video-coming-soon{
    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#aaaaaa;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;
}

.play-symbol{
    color:#ff0048;
    font-size:3rem;
    margin-bottom:12px;
    opacity:0.85;
    text-shadow:
        0 0 12px rgba(255,0,72,0.7);
}
/* =========================
   GALLERY CAPTIONS
========================= */

.gallery-card{
    position:relative;
}

.gallery-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.92)
        );

    transform:translateY(100%);
    transition:0.35s;
}

.gallery-card:hover .gallery-caption{
    transform:translateY(0);
}

.gallery-caption h3{
    margin:0 0 8px;
    color:white;
    font-size:1.4rem;
}

.gallery-caption p{
    margin:0;
    color:#cccccc;
    font-size:0.95rem;
    line-height:1.5;
}
@media (max-width: 900px){

    .gallery-caption{
        transform:translateY(0);
    }

}
/* =========================
   RELEASE TAGS
========================= */

.release-tags{
    margin-top:25px;
}

.release-tags span{
    display:inline-block;
    margin:6px 8px 6px 0;
    padding:9px 16px;

    border:1px solid rgba(255,0,72,0.6);
    border-radius:30px;

    background:rgba(255,0,72,0.10);
    color:#ffffff;

    font-size:0.8rem;
    text-transform:uppercase;
    letter-spacing:1px;
}
/* =========================
   ARTIST STATEMENT
========================= */

.artist-statement{
    padding:70px 8%;
    background:#050505;
    text-align:center;
}

.artist-statement p{
    max-width:900px;
    margin:0 auto;

    color:white;
    font-size:2rem;
    line-height:1.5;
    font-weight:600;

    text-shadow:
        0 0 12px rgba(255,0,72,0.45),
        0 0 30px rgba(255,0,72,0.20);
}
@media (max-width: 900px){

    .artist-statement{
        padding:50px 5%;
    }

    .artist-statement p{
        font-size:1.35rem;
    }

}
/* =========================
   FIX ARTIST STATEMENT SPACING
========================= */

.artist-statement{
    padding:35px 8%;
    background:
        linear-gradient(
            180deg,
            #080808,
            #050505
        );
    text-align:center;
    border-bottom:1px solid rgba(255,0,72,0.18);
}

.artist-statement p{
    max-width:760px;
    margin:0 auto;

    color:#ffffff;
    font-size:1.35rem;
    line-height:1.5;
    font-weight:600;

    text-shadow:
        0 0 10px rgba(255,0,72,0.45),
        0 0 22px rgba(255,0,72,0.20);
}
/* =========================
   FIX LATEST RELEASE SPACING
========================= */

.latest-release{
    padding-top:70px;
}
@media (max-width: 900px){

    .artist-statement{
        padding:30px 5%;
    }

    .artist-statement p{
        font-size:1.05rem;
    }

    .latest-release{
        padding-top:55px;
    }

}
/* =========================
   FINAL SPACING POLISH
========================= */

.hero-cta{
    border-bottom:1px solid rgba(255,0,72,0.25);
}

.artist-statement{
    padding:42px 8%;
}

.latest-release{
    padding-top:65px;
}
@media (max-width: 900px){

    .artist-statement{
        padding:35px 5%;
    }

    .latest-release{
        padding-top:55px;
    }

}
/* =========================
   RELEASE BADGE
========================= */

.release-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 16px;

    border:1px solid rgba(255,0,72,0.7);
    border-radius:30px;

    background:rgba(255,0,72,0.12);
    color:#ff0048;

    font-size:0.78rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;

    box-shadow:
        0 0 12px rgba(255,0,72,0.25);
}
/* =========================
   RELEASE META
========================= */

.release-meta{
    margin-bottom:22px;

    color:#aaaaaa;
    font-size:0.9rem;

    text-transform:uppercase;
    letter-spacing:1.5px;
}
/* =========================
   LYRICS PREVIEW
========================= */

.lyrics-preview{
    margin-top:30px;
    padding:25px;

    background:rgba(0,0,0,0.35);
    border-left:3px solid #ff0048;
    border-radius:12px;
}

.lyrics-preview h4{
    margin:0 0 15px;

    color:#ff0048;
    font-size:0.9rem;

    text-transform:uppercase;
    letter-spacing:1.5px;
}

.lyrics-preview p{
    margin:0;

    color:#dddddd;
    font-size:1rem;
    line-height:1.8;
    font-style:italic;
}
/* =========================
   ARTIST HIGHLIGHTS
========================= */

.artist-highlights{
    margin-top:40px;

    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.highlight-item{
    padding:22px;

    background:rgba(0,0,0,0.35);
    border:1px solid rgba(255,0,72,0.35);
    border-radius:18px;
}

.highlight-item strong{
    display:block;
    margin-bottom:10px;

    color:#ff0048;
    font-size:0.8rem;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.highlight-item span{
    color:white;
    font-size:0.95rem;
    line-height:1.5;
}
@media (max-width: 900px){

    .artist-highlights{
        grid-template-columns:1fr;
    }

}
/* =========================
   CONTACT CATEGORIES
========================= */

.contact-categories{
    max-width:1000px;
    margin:45px auto 0;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.contact-category{
    padding:24px;

    background:rgba(0,0,0,0.35);
    border:1px solid rgba(255,0,72,0.35);
    border-radius:18px;

    text-align:center;
}

.contact-category strong{
    display:block;
    margin-bottom:10px;

    color:#ff0048;
    font-size:0.85rem;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.contact-category span{
    color:#cccccc;
    font-size:0.95rem;
    line-height:1.5;
}
@media (max-width: 900px){

    .contact-categories{
        grid-template-columns:1fr;
    }

}
/* =========================
   PRESS KIT
========================= */

.press-kit-section{
    padding:100px 8%;
    background:#050505;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.press-kit-section h2{
    font-size:3rem;
    color:#ff0048;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:20px;
    text-shadow:
        0 0 10px rgba(255,0,72,0.55),
        0 0 25px rgba(255,0,72,0.25);
}

.press-kit-box{
    max-width:1000px;
    margin:50px auto 35px;

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.press-kit-item{
    padding:28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,0,72,0.12),
            rgba(17,17,17,1)
        );

    border:1px solid rgba(255,0,72,0.35);
    border-radius:18px;
}

.press-kit-item strong{
    display:block;
    margin-bottom:10px;

    color:#ff0048;
    font-size:0.85rem;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.press-kit-item span{
    color:#cccccc;
    font-size:0.95rem;
    line-height:1.5;
}

.press-kit-disabled{
    display:inline-block;

    padding:13px 26px;
    border:1px solid rgba(255,0,72,0.55);
    border-radius:30px;

    color:#aaaaaa;
    background:rgba(255,0,72,0.08);

    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;

    cursor:not-allowed;
    opacity:0.75;
}
@media (max-width: 900px){

    .press-kit-section{
        padding:70px 5%;
    }

    .press-kit-section h2{
        font-size:2.2rem;
    }

    .press-kit-box{
        grid-template-columns:1fr;
    }

}
/* =========================
   CTA BUTTON POLISH
========================= */

.hero-cta a{
    min-width:210px;
    text-align:center;
}
@media (max-width: 900px){

    .hero-cta a{
        min-width:260px;
    }

}
/* =========================
   MENU BUTTON STYLE
========================= */

.topbar .main-nav{
    display:flex;
    align-items:center;
    gap:14px;
}

.topbar .main-nav a{
    margin:0;
    padding:10px 18px;

    color:white;
    text-decoration:none;

    border:1px solid rgba(255,0,72,0.75);
    border-radius:30px;

    background:rgba(0,0,0,0.45);

    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.78rem;
    font-weight:600;

    transition:0.3s;

    box-shadow:
        0 0 8px rgba(255,0,72,0.18),
        inset 0 0 8px rgba(255,0,72,0.08);
}

.topbar .main-nav a:hover{
    color:white;
    background:#ff0048;

    box-shadow:
        0 0 16px rgba(255,0,72,0.65),
        0 0 30px rgba(255,0,72,0.25);
}
@media (max-width: 900px){

    .topbar .main-nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;

        display:none;

        flex-direction:column;
        align-items:center;
        gap:14px;

        background:rgba(0,0,0,0.96);
        border-top:1px solid rgba(255,0,72,0.35);
        border-bottom:1px solid rgba(255,0,72,0.35);

        padding:25px 0;
        z-index:1000;
    }

    .topbar .main-nav a{
        width:260px;
        text-align:center;
        padding:14px 22px;
        font-size:0.9rem;
    }

    .topbar #menu-toggle:checked ~ .main-nav{
        display:flex;
    }

}
/* =========================
   MENU BUTTON FINAL POLISH
========================= */

.topbar .main-nav a{
    padding:9px 15px;
    font-size:0.74rem;
    letter-spacing:0.9px;
}

.topbar{
    gap:30px;
}

.logo{
    white-space:nowrap;
}
@media (max-width: 1200px){

    .topbar{
        padding:0 4%;
    }

    .topbar .main-nav{
        gap:10px;
    }

    .topbar .main-nav a{
        padding:8px 12px;
        font-size:0.7rem;
    }

}
/* =========================
   404 ERROR PAGE
========================= */

.error-page{
    min-height:100vh;
    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.85)
        ),
        url("../images/banner.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.error-section{
    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:40px 8%;
    text-align:center;
}

.error-section h1{
    margin:0;

    color:#ff0048;
    font-size:8rem;
    line-height:1;

    text-shadow:
        0 0 15px rgba(255,0,72,0.8),
        0 0 40px rgba(255,0,72,0.35);
}

.error-section h2{
    margin:20px 0 15px;

    color:white;
    font-size:2.5rem;
    text-transform:uppercase;
    letter-spacing:3px;
}

.error-section p{
    max-width:600px;

    color:#cccccc;
    font-size:1.1rem;
    line-height:1.7;
}

.back-to-home{
    display:inline-block;

    margin-top:30px;
    padding:15px 35px;

    color:white;
    text-decoration:none;

    border:2px solid #ff0048;
    border-radius:30px;

    background:rgba(0,0,0,0.55);

    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.9rem;

    transition:0.3s;
}

.back-to-home:hover{
    background:#ff0048;
    box-shadow:
        0 0 18px rgba(255,0,72,0.75),
        0 0 35px rgba(255,0,72,0.35);
}

@media (max-width: 900px){

    .error-section h1{
        font-size:5rem;
    }

    .error-section h2{
        font-size:1.6rem;
    }

}
/* =========================
   ACTIVE SOCIAL LINK
========================= */

.social-active{
    display:inline-block;
    margin:8px 14px;
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:0.85rem;

    border-bottom:1px solid #ff0048;

    transition:0.3s;
}

.social-active:hover{
    color:#ff0048;
    text-shadow:
        0 0 10px rgba(255,0,72,0.6);
}
/* =========================
   IMAGE LAYOUT STABILITY
========================= */

.release-cover{
    aspect-ratio:16 / 9;
    overflow:hidden;
}

.release-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.gallery-card{
    aspect-ratio:4 / 5;
}

.gallery-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* =========================
   FIX RELEASE COVER
========================= */

.release-cover{
    aspect-ratio:auto;
    overflow:visible;
}

.release-cover img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    border-radius:15px;
}
/* =========================
   CONTRAST POLISH
========================= */

.disabled-link,
.music-coming-soon,
.social-disabled,
.email-disabled,
.press-kit-disabled{
    color:#d6d6d6;
    opacity:1;
}

.footer small{
    color:#aaaaaa;
}

.release-meta{
    color:#cfcfcf;
}

.contact-category span,
.press-kit-item span,
.video-card p,
.music-card p{
    color:#d0d0d0;
}
/* =========================
   FIX RELEASE BADGE CONTRAST
========================= */

.release-badge{
    background:#ff0048;
    color:#ffffff;
    border:1px solid #ff0048;

    text-shadow:none;

    box-shadow:
        0 0 14px rgba(255,0,72,0.55);
}
/* =========================
   FINAL RELEASE BADGE CONTRAST FIX
========================= */

.release-badge{
    background:#8f0029;
    color:#ffffff;
    border:1px solid #ff0048;

    font-weight:800;
    text-shadow:none;

    box-shadow:
        0 0 14px rgba(255,0,72,0.45);
}
/* =========================
   NEW SINGLE BUTTON POLISH
========================= */

.release-badge{
    background:#8f0029;
    color:#ffffff;
    border:1px solid #ff0048;

    box-shadow:
        0 0 6px rgba(255,0,72,0.35);

    text-shadow:none;
}


/* =========================
   VERIDIAN RELEASE SUBTITLE
========================= */

.release-subtitle{
    margin-top:8px;
    margin-bottom:12px;
    font-size:0.95rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#bfbfbf;
}

/* =========================
   VERIDIAN HERO FINAL STABLE
========================= */

.hero{
    min-height:760px;
    height:100vh;
    position:relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.38),
            rgba(0,0,0,0.65)
        ),
        url("../images/banner.webp");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.hero-content{
    position:absolute;
    left:8%;
    right:auto;
    bottom:110px;

    width:min(680px, 84vw);
    max-width:680px;

    padding:0;
    margin:0;

    text-align:left;
    transform:none;
}

.hero-kicker{
    display:inline-block;
    margin-bottom:18px;

    font-size:0.72rem;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#ffffff;
    background:rgba(143,0,41,0.72);
    border:1px solid rgba(255,255,255,0.18);

    padding:8px 14px;
    border-radius:999px;

    box-shadow:0 0 18px rgba(143,0,41,0.55);
}

.hero-content h1{
    position:static;
    left:auto;

    margin:0 0 14px;

    color:#ffffff;
    font-size:clamp(3rem, 6vw, 6.5rem);
    line-height:0.95;
    letter-spacing:6px;
    text-transform:uppercase;

    text-shadow:
        0 0 16px rgba(0,0,0,0.95),
        0 0 28px rgba(143,0,41,0.7);
}

.hero-subtitle{
    margin:0 0 14px;

    font-size:0.92rem;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#ffffff;

    text-shadow:
        0 0 12px rgba(0,0,0,0.95),
        0 0 18px rgba(143,0,41,0.65);
}

.hero-tagline{
    max-width:620px;
    margin:0 0 26px;

    font-size:1.1rem;
    font-weight:400;
    line-height:1.7;

    color:#e0e0e0;

    text-shadow:
        0 0 12px rgba(0,0,0,0.95),
        0 0 20px rgba(0,0,0,0.85);
}

.hero-socials{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-socials a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:#ffffff;
    text-decoration:none;
    text-transform:uppercase;

    font-size:0.78rem;
    font-weight:800;
    letter-spacing:2px;

    padding:11px 18px;
    border-radius:999px;

    border:1px solid rgba(255,255,255,0.22);
    background:rgba(0,0,0,0.45);

    box-shadow:
        0 0 12px rgba(0,0,0,0.7),
        inset 0 0 0 1px rgba(255,255,255,0.04);

    transition:0.3s;
}

.hero-socials a:hover{
    color:#ffffff;
    border-color:#ff0048;
    background:rgba(143,0,41,0.78);
    box-shadow:0 0 20px rgba(255,0,72,0.45);
    transform:translateY(-2px);
}

/* =========================
   ACTIVE JOIN THE STORM
========================= */

.storm-form{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:14px;
    margin-top:28px;
}

.storm-form input[type="email"]{
    background:rgba(0,0,0,0.55);
    color:#ffffff;

    border:1px solid rgba(255,255,255,0.18);
    border-radius:999px;

    padding:14px 20px;
    min-width:280px;

    font-family:inherit;
    font-size:0.95rem;

    outline:none;
}

.storm-form input[type="email"]::placeholder{
    color:#bfbfbf;
}

.storm-form input[type="email"]:focus{
    border-color:#ff0048;
    box-shadow:0 0 16px rgba(255,0,72,0.35);
}

.storm-form button{
    cursor:pointer;
}

.honeypot{
    display:none !important;
}

.signup-consent{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    color:#d0d0d0;
    font-size:0.85rem;
    line-height:1.5;
}

.signup-consent input{
    accent-color:#8f0029;
}

.signup-note{
    margin-top:18px;
    font-size:0.82rem;
    color:#bfbfbf;
}

/* =========================
   MOBILE HERO FINAL STABLE
========================= */

@media(max-width:768px){

    .hero{
        height:420px !important;
        min-height:420px !important;
        aspect-ratio:auto !important;

        padding:0 !important;
        margin:0 !important;

        background-size:cover !important;
        background-position:center center !important;
        background-repeat:no-repeat !important;

        overflow:hidden !important;
    }

    .hero-content{
        position:absolute !important;

        left:22px !important;
        right:22px !important;
        bottom:26px !important;

        width:auto !important;
        max-width:none !important;

        padding:0 !important;
        margin:0 !important;

        text-align:center !important;
    }

    .hero-kicker,
    .hero-content h1,
    .hero-subtitle,
    .hero-tagline{
        display:none !important;
    }

    .hero-socials{
        display:flex !important;
        flex-direction:column !important;
        align-items:stretch !important;
        justify-content:center !important;

        width:260px !important;
        max-width:calc(100vw - 44px) !important;

        margin:0 auto !important;
        gap:9px !important;
    }

    .hero-socials a{
        width:100% !important;

        display:flex !important;
        align-items:center !important;
        justify-content:center !important;

        padding:10px 16px !important;

        font-size:0.68rem !important;
        letter-spacing:1.8px !important;
        font-weight:800 !important;

        border-radius:999px !important;

        white-space:nowrap !important;

        background:rgba(0,0,0,0.62) !important;
        border:1px solid rgba(255,255,255,0.30) !important;
    }

    .topbar{
        position:sticky;
        top:0;

        height:70px;
        padding:0 6%;
        flex-direction:row;
        gap:0;
    }

    .logo{
        font-size:1.25rem;
        letter-spacing:4px;
    }

}
/* =========================
   HERO SOCIAL BUTTON RING
========================= */

.hero-socials a{
    border:1px solid #ff0048 !important;
    background:rgba(0,0,0,0.48) !important;

    box-shadow:
        0 0 8px rgba(255,0,72,0.28),
        inset 0 0 8px rgba(255,0,72,0.10) !important;
}

.hero-socials a:hover{
    border-color:#ff0048 !important;
    background:rgba(143,0,41,0.78) !important;

    box-shadow:
        0 0 16px rgba(255,0,72,0.65),
        0 0 30px rgba(255,0,72,0.25) !important;
}
/* =========================
   HERO TEXT RED GLOW
========================= */

.hero-kicker{
    text-shadow:
        0 0 8px rgba(255,0,72,0.85),
        0 0 18px rgba(255,0,72,0.45);
}

.hero-content h1{
    text-shadow:
        0 0 10px rgba(255,0,72,0.55),
        0 0 24px rgba(255,0,72,0.38),
        0 0 42px rgba(143,0,41,0.35);
}

.hero-subtitle{
    text-shadow:
        0 0 8px rgba(255,0,72,0.65),
        0 0 18px rgba(255,0,72,0.35),
        0 0 28px rgba(0,0,0,0.95);
}

.hero-tagline{
    text-shadow:
        0 0 8px rgba(255,0,72,0.35),
        0 0 18px rgba(143,0,41,0.28),
        0 0 18px rgba(0,0,0,0.95);
}
/* =========================
   HIDE TOPBAR LOGO
========================= */

.topbar .logo{
    display:none;
}

.topbar{
    justify-content:flex-end;
}
/* =========================
   MOBILE MENU FULLSCREEN FIX
========================= */

@media(max-width:900px){

    .topbar{
        position:fixed !important;
        top:0 !important;
        left:0 !important;
        width:100% !important;
        height:70px !important;
        z-index:9000 !important;
    }

    .menu-icon{
        z-index:9100 !important;
    }

    .topbar .main-nav{
        position:fixed !important;

        top:70px !important;
        left:0 !important;
        right:0 !important;
        bottom:0 !important;

        width:100% !important;
        height:calc(100vh - 70px) !important;

        display:none !important;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:flex-start !important;

        gap:14px !important;

        padding:40px 24px 60px !important;

        background:rgba(0,0,0,0.98) !important;
        border-top:1px solid rgba(255,0,72,0.45) !important;

        overflow-y:auto !important;
        z-index:9050 !important;
    }

    .topbar #menu-toggle:checked ~ .main-nav{
        display:flex !important;
    }

    .topbar .main-nav a{
        width:100% !important;
        max-width:360px !important;

        margin:0 !important;
        padding:15px 22px !important;

        text-align:center !important;

        border:1px solid #ff0048 !important;
        border-radius:999px !important;

        background:rgba(0,0,0,0.58) !important;

        box-shadow:
            0 0 10px rgba(255,0,72,0.25),
            inset 0 0 8px rgba(255,0,72,0.10) !important;
    }

}
/* =========================
   DOWNLOAD TRACK BUTTONS
========================= */

.track-download-link{
    display:inline-block;
    margin-top:auto;

    padding:12px 22px;

    color:white !important;
    text-decoration:none !important;
    text-transform:uppercase;

    letter-spacing:1px;
    font-size:0.78rem;
    font-weight:700;

    border:1px solid #ff0048 !important;
    border-radius:999px;

    background:rgba(255,0,72,0.14);

    box-shadow:
        0 0 10px rgba(255,0,72,0.25),
        inset 0 0 8px rgba(255,0,72,0.10);

    transition:0.3s;
}

.track-download-link:hover{
    color:white !important;
    background:#ff0048;

    box-shadow:
        0 0 16px rgba(255,0,72,0.65),
        0 0 30px rgba(255,0,72,0.25);

    transform:translateY(-2px);
}
/* =========================
   SINGLE TRACK DOWNLOAD FIX
========================= */

.single-track-wrapper{
    max-width:520px;
    margin:50px auto 0;
}

.single-track-card{
    min-height:auto;
    text-align:center;
    align-items:center;
}

.single-track-card p{
    max-width:420px;
}

.track-download-link{
    display:inline-block !important;
    width:auto !important;

    margin-top:18px !important;
    padding:14px 30px !important;

    color:white !important;
    text-decoration:none !important;
    text-transform:uppercase !important;

    letter-spacing:1px !important;
    font-size:0.82rem !important;
    font-weight:800 !important;

    border:1px solid #ff0048 !important;
    border-radius:999px !important;

    background:rgba(255,0,72,0.16) !important;

    box-shadow:
        0 0 12px rgba(255,0,72,0.35),
        inset 0 0 10px rgba(255,0,72,0.10) !important;

    transition:0.3s !important;
}

.track-download-link:hover{
    color:white !important;
    background:#ff0048 !important;

    box-shadow:
        0 0 18px rgba(255,0,72,0.75),
        0 0 35px rgba(255,0,72,0.35) !important;

    transform:translateY(-2px);
}
/* =========================
   MORE MUSIC INTRO PANEL
========================= */

.download-intro-panel{
    max-width:760px;
    margin:0 auto 55px;
    padding:26px 34px;

    text-align:center;

    background:
        linear-gradient(
            145deg,
            rgba(255,0,72,0.16),
            rgba(17,17,17,0.96)
        );

    border:1px solid rgba(255,0,72,0.45);
    border-radius:22px;

    box-shadow:
        0 0 18px rgba(255,0,72,0.18),
        inset 0 0 14px rgba(255,0,72,0.06);
}

.download-intro-kicker{
    display:inline-block;
    margin-bottom:12px;

    color:#ff0048;

    font-size:0.78rem;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;

    text-shadow:
        0 0 10px rgba(255,0,72,0.55);
}

.download-intro-panel p{
    margin:0;

    color:#ffffff;

    font-size:1.22rem;
    font-weight:600;
    line-height:1.65;

    text-shadow:
        0 0 10px rgba(0,0,0,0.85);
}

.download-intro-panel small{
    display:block;
    margin-top:12px;

    color:#d0d0d0;

    font-size:0.92rem;
    line-height:1.6;
}

@media(max-width:900px){

    .download-intro-panel{
        margin-bottom:40px;
        padding:24px 22px;
    }

    .download-intro-panel p{
        font-size:1.02rem;
    }

}
/* =========================
   LATEST RELEASE DOWNLOAD PANEL
========================= */

.latest-download-panel{
    margin-top:34px;
    padding:26px 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,0,72,0.15),
            rgba(0,0,0,0.45)
        );

    border:1px solid rgba(255,0,72,0.45);
    border-radius:18px;

    box-shadow:
        0 0 16px rgba(255,0,72,0.18),
        inset 0 0 12px rgba(255,0,72,0.06);
}

.latest-download-panel h4{
    margin:0 0 12px;

    color:#ffffff;
    font-size:1.35rem;
    letter-spacing:1px;
}

.latest-download-panel p{
    margin:0 0 22px;

    color:#d0d0d0;
    font-size:1rem;
    line-height:1.65;
}

@media(max-width:900px){

    .latest-download-panel{
        padding:24px 22px;
        text-align:center;
    }

}
/* =========================
   DOWNLOAD BOX UNDER COVER
========================= */

.release-box{
    align-items:flex-start;
}

.release-cover{
    display:flex;
    flex-direction:column;
}

.latest-download-under-cover{
    margin-top:26px;
    text-align:center;
}

.latest-download-under-cover h4{
    font-size:1.45rem;
}

.latest-download-under-cover p{
    max-width:430px;
    margin-left:auto;
    margin-right:auto;
}
/* =========================
   LATEST DOWNLOAD FINAL POLISH
========================= */

.latest-download-under-cover{
    width:100%;
    max-width:520px;
    margin:26px auto 0;

    text-align:center;
    font-family:inherit;
}

.latest-download-under-cover h4{
    font-family:inherit;
    font-size:1.45rem;
    font-weight:800;
    letter-spacing:0.5px;
}

.latest-download-under-cover p{
    max-width:430px;
    margin:0 auto 18px;

    color:#ffffff;
    font-family:inherit;
    font-size:1rem;
    font-weight:400;
    line-height:1.65;
}

.download-usage-note{
    display:inline-block;

    margin:0 auto 24px;
    padding:8px 16px;

    color:#ffffff;
    background:rgba(255,0,72,0.16);

    border:1px solid rgba(255,0,72,0.65);
    border-radius:999px;

    font-size:0.78rem;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;

    box-shadow:
        0 0 10px rgba(255,0,72,0.28),
        inset 0 0 8px rgba(255,0,72,0.08);
}

.latest-download-under-cover .track-download-link{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    margin:0 auto !important;

    font-family:inherit !important;
    text-decoration:none !important;
}
/* =========================
   LATEST RELEASE BOTTOM SPACING FIX
========================= */

.latest-release{
    padding-bottom:120px !important;
}
/* =========================
   GAP BELOW LATEST RELEASE BOX
========================= */

.latest-release .release-box{
    margin-bottom:90px !important;
}

.videos-section{
    padding-top:100px !important;
}
/* =========================
   FOLLOW VERIDIAN SCAR SECTION
========================= */

.follow-feature-box{
    max-width:760px;
    margin:55px auto 0;
    padding:55px 42px;

    text-align:center;

    background:
        linear-gradient(
            145deg,
            rgba(255,0,72,0.16),
            rgba(17,17,17,1)
        );

    border:1px solid rgba(255,0,72,0.45);
    border-radius:24px;

    box-shadow:
        0 0 22px rgba(255,0,72,0.16),
        inset 0 0 18px rgba(255,0,72,0.06);
}

.follow-kicker{
    display:inline-block;
    margin-bottom:18px;

    color:#ff0048;

    font-size:0.78rem;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;

    text-shadow:
        0 0 10px rgba(255,0,72,0.55);
}

.follow-feature-box h3{
    margin:0 0 18px;

    color:#ffffff;
    font-size:2rem;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;

    text-shadow:
        0 0 10px rgba(255,0,72,0.45);
}

.follow-feature-box p{
    max-width:590px;
    margin:0 auto 34px;

    color:#d0d0d0;
    font-size:1.05rem;
    line-height:1.8;
}

.follow-button-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
}

.follow-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:170px;
    padding:14px 26px;

    color:#ffffff;
    text-decoration:none;
    text-transform:uppercase;

    font-size:0.82rem;
    font-weight:800;
    letter-spacing:1.5px;

    border:1px solid #ff0048;
    border-radius:999px;

    background:rgba(255,0,72,0.14);

    box-shadow:
        0 0 12px rgba(255,0,72,0.32),
        inset 0 0 10px rgba(255,0,72,0.08);

    transition:0.3s;
}

.follow-button:hover{
    color:#ffffff;
    background:#ff0048;

    box-shadow:
        0 0 18px rgba(255,0,72,0.75),
        0 0 35px rgba(255,0,72,0.35);

    transform:translateY(-2px);
}

.follow-button-disabled{
    color:#d6d6d6;
    background:rgba(255,0,72,0.08);
    opacity:0.85;
    cursor:not-allowed;
}

.follow-button-disabled:hover{
    background:rgba(255,0,72,0.08);
    box-shadow:
        0 0 12px rgba(255,0,72,0.32),
        inset 0 0 10px rgba(255,0,72,0.08);

    transform:none;
}

@media(max-width:900px){

    .follow-feature-box{
        margin-top:40px;
        padding:42px 24px;
    }

    .follow-feature-box h3{
        font-size:1.45rem;
    }

    .follow-feature-box p{
        font-size:0.98rem;
    }

    .follow-button{
        width:100%;
        max-width:310px;
    }

}

/* =========================================================
   VERIDIAN SCAR RADIO
   ========================================================= */

.vs-radio-page{
    min-height:calc(100vh - 80px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:90px 24px 70px;
    background:
        radial-gradient(
            circle at 18% 15%,
            rgba(255,0,72,0.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 85%,
            rgba(95,70,150,0.13),
            transparent 38%
        ),
        #090b10;
}

.vs-radio-player{
    width:min(920px,100%);
    padding:34px;
    color:#f5f6f8;
    background:rgba(25,28,37,0.96);
    border:1px solid rgba(255,0,72,0.42);
    border-radius:30px;
    box-shadow:
        0 30px 90px rgba(0,0,0,0.55),
        0 0 55px rgba(255,0,72,0.05);
}

.vs-radio-header{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:22px;
}

.vs-radio-logo{
    display:block;
    width:92px;
    height:92px;
    object-fit:cover;
    border-radius:22px;
    border:1px solid rgba(255,255,255,0.11);
    box-shadow:0 15px 32px rgba(0,0,0,0.42);
}

.vs-radio-heading{
    min-width:0;
}

.vs-radio-kicker{
    margin:0 0 7px;
    color:#ff4f7b;
    font-size:0.72rem;
    font-weight:800;
    letter-spacing:0.18em;
    text-transform:uppercase;
}

.vs-radio-heading h1{
    margin:0;
    color:#f5f6f8;
    font-size:clamp(2.1rem,5vw,3.8rem);
    line-height:1;
    letter-spacing:-0.05em;
    text-transform:none;
}

.vs-radio-tagline{
    margin:10px 0 0;
    color:#aab1bf;
    font-size:1rem;
}

.vs-live-status{
    display:flex;
    align-items:center;
    gap:9px;
    padding:10px 14px;
    color:#baf3d1;
    background:rgba(85,211,138,0.08);
    border:1px solid rgba(85,211,138,0.25);
    border-radius:999px;
    font-size:0.75rem;
    font-weight:800;
    letter-spacing:0.12em;
    text-transform:uppercase;
}

.vs-live-status.offline{
    color:#ffc0ca;
    background:rgba(255,79,123,0.08);
    border-color:rgba(255,79,123,0.25);
}

.vs-live-dot{
    width:9px;
    height:9px;
    flex:none;
    border-radius:50%;
    background:#55d38a;
    box-shadow:0 0 0 6px rgba(85,211,138,0.10);
}

.vs-live-status.offline .vs-live-dot{
    background:#ff4f7b;
    box-shadow:0 0 0 6px rgba(255,79,123,0.10);
}

.vs-now-playing{
    display:grid;
    grid-template-columns:minmax(280px,420px) minmax(0,1fr);
    align-items:center;
    gap:46px;
    margin-top:38px;
}

.vs-album-cover{
    display:block;
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
    background:#08090c;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:26px;
    box-shadow:
        0 28px 65px rgba(0,0,0,0.55),
        0 0 45px rgba(255,79,123,0.10);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.vs-track-information{
    min-width:0;
}

.vs-now-playing-label{
    margin:0 0 12px;
    color:#ff4f7b;
    font-size:0.74rem;
    font-weight:800;
    letter-spacing:0.18em;
    text-transform:uppercase;
}

.vs-track-information h2{
    margin:0;
    color:#f5f6f8;
    font-size:clamp(2rem,5vw,3.6rem);
    line-height:1.02;
    letter-spacing:-0.045em;
    overflow-wrap:anywhere;
    text-transform:none;
}

#artistName{
    margin:16px 0 0;
    color:#aab1bf;
    font-size:1.15rem;
}

.vs-control-row{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    align-items:center;
    gap:22px;
    margin-top:36px;
}

.vs-play-button{
    width:76px;
    height:76px;
    display:grid;
    place-items:center;
    padding:0;
    color:#fff;
    background:linear-gradient(145deg,#ff6689,#d83c65);
    border:0;
    border-radius:50%;
    box-shadow:
        0 16px 34px rgba(255,79,123,0.30),
        0 0 28px rgba(255,79,123,0.14);
    cursor:pointer;
    transition:
        transform 0.18s ease,
        filter 0.18s ease;
}

.vs-play-button:hover{
    transform:translateY(-2px);
    filter:brightness(1.08);
}

.vs-play-button:active{
    transform:scale(0.96);
}

.vs-play-button svg{
    width:31px;
    height:31px;
    fill:currentColor;
}

.vs-volume-control{
    display:grid;
    grid-template-columns:auto minmax(80px,1fr) 32px;
    align-items:center;
    gap:12px;
    color:#aab1bf;
}

.vs-volume-control svg{
    width:21px;
    height:21px;
    fill:currentColor;
}

.vs-volume-control input{
    width:100%;
    accent-color:#ff4f7b;
    cursor:pointer;
}

#volumeValue{
    text-align:right;
    font-size:0.88rem;
    font-variant-numeric:tabular-nums;
}

.vs-player-message{
    margin:18px 0 0;
    color:#929aa9;
    font-size:0.82rem;
}

/* RADIO – TABLET OG MOBIL */

@media(max-width:760px){

    .vs-radio-page{
        align-items:flex-start;
        padding:45px 14px 35px;
    }

    .vs-radio-player{
        padding:22px;
        border-radius:24px;
    }

    .vs-radio-header{
        grid-template-columns:auto minmax(0,1fr);
        gap:18px;
    }

    .vs-radio-logo{
        width:88px;
        height:88px;
    }

    .vs-radio-heading h1{
        font-size:clamp(1.8rem,8vw,2.7rem);
    }

    .vs-live-status{
        grid-column:1 / -1;
        justify-self:center;
        margin-top:12px;
    }

    .vs-now-playing{
        grid-template-columns:1fr;
        gap:28px;
        margin-top:42px;
    }

    .vs-album-cover{
        width:min(100%,520px);
        margin-inline:auto;
    }

    .vs-track-information h2{
        font-size:clamp(2rem,10vw,3.3rem);
    }

    .vs-control-row{
        grid-template-columns:1fr;
        gap:28px;
    }

    .vs-play-button{
        width:76px;
        height:76px;
    }
}

@media(max-width:430px){

    .vs-radio-page{
        padding-inline:8px;
    }

    .vs-radio-player{
        padding:18px;
    }

    .vs-radio-header{
        grid-template-columns:78px minmax(0,1fr);
        gap:14px;
    }

    .vs-radio-logo{
        width:78px;
        height:78px;
        border-radius:19px;
    }

    .vs-radio-kicker{
        font-size:0.64rem;
        letter-spacing:0.14em;
    }

    .vs-radio-tagline{
        font-size:0.92rem;
    }

    .vs-volume-control{
        grid-template-columns:auto minmax(80px,1fr) 30px;
        gap:10px;
    }
}
.vs-radio-tagline {
    color: #ff4f7b;
    font-weight: 700;
}
/* =========================
   IPAD / TABLET HERO FIX
========================= */

@media (min-width:769px) and (max-width:1200px){

    .hero{
        height:460px !important;
        min-height:460px !important;
        aspect-ratio:auto !important;

        background-size:cover !important;
        background-position:center center !important;
        background-repeat:no-repeat !important;
    }

    .hero-content{
        left:7% !important;
        right:auto !important;
        bottom:45px !important;

        width:min(560px, 72vw) !important;
        max-width:560px !important;

        text-align:left !important;
    }

    .hero-kicker{
        font-size:0.62rem !important;
        margin-bottom:12px !important;
        padding:7px 12px !important;
    }

    .hero-content h1{
        font-size:3rem !important;
        letter-spacing:4px !important;
        margin-bottom:10px !important;
    }

    .hero-subtitle{
        font-size:0.72rem !important;
        letter-spacing:2px !important;
        margin-bottom:10px !important;
    }

    .hero-tagline{
        max-width:460px !important;
        font-size:0.9rem !important;
        line-height:1.55 !important;
        margin-bottom:18px !important;
    }

    .hero-socials{
        gap:9px !important;
    }

    .hero-socials a{
        padding:9px 14px !important;
        font-size:0.62rem !important;
        letter-spacing:1.4px !important;
    }

}