/* ===== VLΔD OFFICIAL ===== */
:root{
    --bg:#050505;
    --bg2:#111;
    --card:rgba(255,255,255,.05);
    --border:rgba(255,255,255,.08);
    --text:#fff;
    --text2:#cfcfcf;
    --text3:#888;
    --accent:#ff2b2b;
    --radius:18px;
    --shadow:0 10px 40px rgba(0,0,0,.45);
    --t:.35s;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:"Inter",Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    width:100%;
}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
button{cursor:pointer;border:none;background:none;font:inherit}
ul{list-style:none}

::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:#090909}
::-webkit-scrollbar-thumb{background:#2b2b2b;border-radius:20px}
::-webkit-scrollbar-thumb:hover{background:var(--accent)}

.container{
    width:min(1200px,92%);
    margin:auto;
}
section{padding:100px 0;position:relative;width:100%}

/* hero */
.hero{
    min-height:100dvh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.88));
    z-index:1;
}
.hero::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:200px;
    background:linear-gradient(to top,var(--bg),transparent);
    z-index:1;
}
.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:brightness(.55) contrast(1.1);
}
.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    width:100%;
    padding:0 20px;
}
.logo{
    font-size:clamp(32px,12vw,110px);
    font-weight:900;
    letter-spacing:.15em;
    margin-bottom:25px;
}
.logo span{color:var(--accent)}
.subtitle{
    font-size:clamp(10px,2.2vw,18px);
    letter-spacing:.4em;
    color:#d0d0d0;
    margin-bottom:50px;
    text-transform:uppercase;
}

/* buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:18px 42px;
    border-radius:100px;
    background:var(--accent);
    color:#fff;
    transition:var(--t);
    font-weight:700;
    box-shadow:0 0 35px rgba(255,43,43,.35);
}
.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 55px rgba(255,43,43,.6);
}
.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
}
.btn-outline:hover{
    background:#fff;
    color:#000;
}

/* titles */
.section-title{
    font-size:clamp(22px,5vw,48px);
    font-weight:900;
    margin-bottom:18px;
    text-transform:uppercase;
}
.section-text{
    color:var(--text2);
    max-width:700px;
    line-height:1.8;
}

/* streaming */
.streaming{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:60px;
}
.stream-card{
    background:var(--card);
    backdrop-filter:blur(18px);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    transition:var(--t);
}
.stream-card:hover{
    transform:translateY(-10px);
    border-color:var(--accent);
    box-shadow:0 20px 40px rgba(0,0,0,.4);
}
.stream-icon{
    width:70px;height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#141414;
    font-size:30px;
    margin-bottom:22px;
}
.stream-card h3{margin-bottom:10px;font-size:22px}
.stream-card p{color:var(--text3);line-height:1.7}

/* release */
.release{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:60px;
    align-items:center;
}
.release-cover{
    border-radius:25px;
    overflow:hidden;
    box-shadow:var(--shadow);
}
.release-info h2{font-size:52px;margin-bottom:20px}
.release-info p{color:var(--text2);line-height:1.8;margin-bottom:35px}

/* about */
.about{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
    align-items:center;
}
.about img{border-radius:24px}
.about-image-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
}
.about-logo-big{
    font-size:clamp(60px,10vw,120px);
    font-weight:900;
    letter-spacing:.15em;
    color:var(--text);
    text-align:center;
    padding:40px;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:var(--radius);
    backdrop-filter:blur(18px);
    width:100%;
}
.about-logo-big span{color:var(--accent)}
.about-text{line-height:2;color:var(--text2)}

/* social */
.social{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:40px;
}
.social a{
    width:60px;height:60px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#141414;
    border-radius:50%;
    transition:var(--t);
    font-size:22px;
}
.social a:hover{
    background:var(--accent);
    transform:translateY(-5px);
}

/* contact */
.contact{
    background:linear-gradient(135deg,#101010,#050505);
    border-top:1px solid rgba(255,255,255,.05);
}
.contact-box{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:25px;
    padding:60px;
    text-align:center;
    backdrop-filter:blur(20px);
}
.contact-box h2{font-size:clamp(22px,5vw,42px);margin-bottom:18px}
.contact-box p{color:var(--text2);margin-bottom:40px}

/* footer */
footer{
    padding:45px 0;
    text-align:center;
    color:#777;
    border-top:1px solid rgba(255,255,255,.06);
}

/* fade */
.fade{
    opacity:0;
    transform:translateY(70px);
    transition:1s;
}
.fade.show{opacity:1;transform:none}

/* glow */
.glow{
    position:fixed;
    width:550px;
    height:550px;
    border-radius:50%;
    background:radial-gradient(rgba(255,0,0,.18),transparent 70%);
    filter:blur(60px);
    pointer-events:none;
    z-index:0;
}

/* discography */
.discography{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.song{
    display:flex;
    align-items:center;
    gap:25px;
    padding:25px 30px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    transition:.35s;
}
.song:hover{
    transform:translateX(10px);
    border-color:#ff2b2b;
}
.song span{
    font-size:34px;
    font-weight:900;
    color:#ff2b2b;
    min-width:60px;
}
.song h3{font-size:24px}

/* gallery */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}
.gallery img{
    width:100%;
    border-radius:24px;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}
.gallery img:hover{transform:scale(1.03)}

/* poster banners */
.poster-banner{
    position:relative;
    width:100%;
    height:110vh;
    overflow:visible;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
}
.poster-banner img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    filter:brightness(.45) contrast(1.05);
}
.poster-banner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:200px;
    background:linear-gradient(to bottom,var(--bg),transparent);
    z-index:2;
}
.poster-banner::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:200px;
    background:linear-gradient(to top,var(--bg),transparent);
    z-index:2;
}
.poster-overlay{
    position:relative;
    z-index:3;
    text-align:center;
    padding:0 20px;
}
.poster-overlay h2{
    font-size:clamp(28px,5vw,52px);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:15px;
    text-shadow:0 4px 30px rgba(0,0,0,.6);
}
.poster-overlay p{
    font-size:clamp(14px,2vw,20px);
    color:var(--text2);
    letter-spacing:.05em;
}

@media(max-width:768px){
    .poster-banner{height:80vh}
    .poster-banner::before{height:120px}
    .poster-banner::after{height:120px}
    .hero::after{height:120px}
    .hero-bg{top: -120px;}
}

@media(max-width:480px){
    .poster-banner{height:60vh}
    .poster-banner::before{height:80px}
    .poster-banner::after{height:80px}
    .hero::after{height:80px}
    .hero-bg{top: -180px;}
}

/* stats */
.stats{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.stat{
    background:rgba(255,255,255,.05);
    border-radius:20px;
    padding:40px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}
.stat h2{font-size:60px;color:#ff2b2b;margin-bottom:10px}
.stat p{color:#bbb}

/* ===== RESPONSIVE ===== */

@media(max-width:1100px){
    .release{grid-template-columns:1fr}
    .about{grid-template-columns:1fr}
    .hero-bg{top: -180px;}
}

@media(max-width:900px){
    section{padding:80px 0}
    .section-title{font-size:clamp(22px,4.5vw,38px)}
    .section-text{max-width:100%}
    .streaming{grid-template-columns:repeat(2,1fr)}
    .gallery{grid-template-columns:repeat(2,1fr)}
    .stats{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
    section{padding:70px 0}
    .subtitle{letter-spacing:.25em;margin-bottom:35px}
    .contact-box{padding:40px 25px}
    .btn{width:100%}
    .streaming{grid-template-columns:1fr}
    .stats{grid-template-columns:1fr}
    .gallery{grid-template-columns:1fr}
}

@media(max-width:640px){
    section{padding:50px 0}
    .subtitle{margin-bottom:25px}
    .about{gap:30px;text-align:center}
    .about img{width:100%;max-width:300px;margin:0 auto}
    .about-text{text-align:left;font-size:15px;line-height:1.7}
    .song{padding:14px 16px;gap:12px}
    .song span{font-size:22px;min-width:36px}
    .song h3{font-size:18px}
    .stream-card{padding:18px}
    .stream-icon{width:48px;height:48px;font-size:20px;margin-bottom:14px}
    .stream-card h3{font-size:18px}
    .stream-card p{font-size:14px}
    .social{justify-content:center;gap:12px}
    .social a{width:48px;height:48px;font-size:18px}
    .hero .btn{width:auto;min-width:180px}
    .btn{padding:14px 28px;font-size:14px}
    .stat{padding:25px 20px}
    .stat h2{font-size:38px}
    footer{padding:30px 0;font-size:13px}
    .glow{width:300px;height:300px;filter:blur(40px)}
    .contact-box{padding:30px 20px}
    .about > div:last-child > div[style]{flex-direction:column;align-items:stretch}
}

@media(max-width:480px){
    section{padding:35px 0}
    .subtitle{margin-bottom:20px}
    .contact-box{padding:22px 14px}
    .btn{padding:12px 22px;font-size:13px}
    .stat{padding:18px 14px}
    .stat h2{font-size:32px}
    .song{padding:11px 12px;gap:8px}
    .song span{font-size:18px;min-width:26px}
    .song h3{font-size:15px}
    .stream-card{padding:14px}
    .stream-icon{width:40px;height:40px;font-size:17px;margin-bottom:12px}
    .stream-card h3{font-size:16px}
    .social a{width:42px;height:42px;font-size:16px}
    footer{padding:20px 0;font-size:11px}
    .glow{width:200px;height:200px;filter:blur(25px)}
}

@media(max-width:380px){
    section{padding:25px 0}
    .hero .btn{min-width:140px;padding:10px 18px;font-size:12px}
}

/* touch — no hover */
@media(hover:none){
    .stream-card:hover{transform:none;border-color:var(--border);box-shadow:none}
    .song:hover{transform:none;border-color:rgba(255,255,255,.08)}
    .social a:hover{background:#141414;transform:none}
    .btn:hover{transform:none;box-shadow:0 0 35px rgba(255,43,43,.35)}
    .gallery img:hover{transform:none}
}

/* reduced motion */
@media(prefers-reduced-motion:reduce){
    *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
    .fade{opacity:1;transform:none;transition:none}
}