/* DJ Kasi Duchaz — Coming Soon Theme */

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

:root {
    --pink:        #f0197f;
    --pink-light:  #ff60b8;
    --pink-pale:   #ffc0e0;
    --magenta:     #c4006a;
    --black:       #000;
    --white:       #fff;
    --muted:       #c0a0b4;
    --glow-sm:     0 0 16px rgba(240,25,127,0.6);
    --glow-md:     0 0 32px rgba(240,25,127,0.65);
}

html, body {
    width: 100%;
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    overflow-x: hidden;
}

/* Scanlines */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px, transparent 3px,
        rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
    );
}

/* Particles */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: 0;
    animation: float-spin linear infinite;
}
.particles span:nth-child(odd)  { width:3px; height:3px; background:var(--pink-pale); }
.particles span:nth-child(even) { width:6px; height:6px; background:var(--pink-light); }

.particles span:nth-child(1)  { left:4%;  animation-duration:13s; animation-delay:0.0s; }
.particles span:nth-child(2)  { left:9%;  animation-duration:19s; animation-delay:2.0s; }
.particles span:nth-child(3)  { left:17%; animation-duration:11s; animation-delay:4.0s; }
.particles span:nth-child(4)  { left:26%; animation-duration:17s; animation-delay:1.0s; }
.particles span:nth-child(5)  { left:33%; animation-duration:10s; animation-delay:3.0s; }
.particles span:nth-child(6)  { left:42%; animation-duration:21s; animation-delay:5.0s; }
.particles span:nth-child(7)  { left:51%; animation-duration:14s; animation-delay:0.5s; }
.particles span:nth-child(8)  { left:60%; animation-duration:18s; animation-delay:2.5s; }
.particles span:nth-child(9)  { left:68%; animation-duration:12s; animation-delay:4.5s; }
.particles span:nth-child(10) { left:77%; animation-duration:16s; animation-delay:1.5s; }
.particles span:nth-child(11) { left:85%; animation-duration:20s; animation-delay:6.0s; }
.particles span:nth-child(12) { left:92%; animation-duration:13s; animation-delay:3.5s; }
.particles span:nth-child(13) { left:7%;  animation-duration:15s; animation-delay:7.0s; }
.particles span:nth-child(14) { left:22%; animation-duration:11s; animation-delay:0.8s; }
.particles span:nth-child(15) { left:38%; animation-duration:17s; animation-delay:5.5s; }
.particles span:nth-child(16) { left:55%; animation-duration:12s; animation-delay:2.2s; }
.particles span:nth-child(17) { left:71%; animation-duration:19s; animation-delay:4.8s; }
.particles span:nth-child(18) { left:82%; animation-duration:14s; animation-delay:1.2s; }
.particles span:nth-child(19) { left:90%; animation-duration:16s; animation-delay:6.5s; }
.particles span:nth-child(20) { left:48%; animation-duration:18s; animation-delay:3.8s; }

@keyframes float-spin {
    0%   { transform:translateY(100vh) scale(0)   rotate(0deg);   opacity:0; }
    8%   { opacity:1; }
    92%  { opacity:0.5; }
    100% { transform:translateY(-8vh)  scale(1.8) rotate(200deg); opacity:0; }
}

/* Hero */
.hero {
    position: fixed;
    inset: 0;
    z-index: 1;
    background-color: var(--black);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(240,25,127,0.08) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.72) 100%),
        linear-gradient(to right,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.10) 60%, rgba(0,0,0,0.55) 100%);
}

/* Main */
.main {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px 60px;
}

/* Logo */
.brand { margin-bottom: 24px; }
.logo {
    width: clamp(180px, 36vw, 320px);
    height: auto;
    display: block;
    animation: logo-pulse 3.5s ease-in-out infinite alternate;
}
@keyframes logo-pulse {
    from { filter: drop-shadow(0 0 8px  rgba(240,25,127,0.4)) brightness(1);    }
    to   { filter: drop-shadow(0 0 30px rgba(240,25,127,0.95)) brightness(1.1); }
}

/* Headline */
.headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--pink-pale) 50%, var(--pink-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(240,25,127,0.35));
}

/* Sub */
.sub {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 28px;
}

/* Divider */
.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--pink), transparent);
    border-radius: 2px;
    margin-bottom: 32px;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: stretch;
    margin-bottom: 36px;
    border: 1px solid rgba(240,25,127,0.28);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    background: rgba(0,0,0,0.35);
}
.cu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    flex: 1;
    position: relative;
    min-width: 80px;
    transition: background .3s;
}
.cu:hover { background: rgba(240,25,127,0.12); }
.cu + .cu::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; height: 60%;
    width: 1px;
    background: rgba(240,25,127,0.25);
}
.num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--pink-light);
    text-shadow: var(--glow-sm);
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
}
.lbl {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 5px;
}

/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    justify-content: center;
}
.social-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}
.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    transition: transform .25s, box-shadow .25s, border-color .25s, background .25s, color .25s;
}
.soc-btn svg {
    width: 16px; height: 16px;
    fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
}
.soc-btn:hover { transform: translateY(-3px) scale(1.07); color: var(--white); }

.fb:hover { border-color:#4a90e2; background:rgba(74,144,226,.2);  box-shadow:0 0 18px rgba(74,144,226,.4); }
.ig:hover { border-color:var(--pink-light); background:rgba(240,25,127,.18); box-shadow:var(--glow-md); }
.tt svg   { fill:currentColor; stroke:none; }
.tt:hover { border-color:#00f2ea; background:rgba(0,242,234,.15); box-shadow:0 0 18px rgba(0,242,234,.4); }
.yt svg   { fill:currentColor; stroke:none; }
.yt:hover { border-color:#ff4444; background:rgba(255,68,68,.15);  box-shadow:0 0 18px rgba(255,68,68,.4); }
.wa svg   { fill:currentColor; stroke:none; }
.wa:hover { border-color:#25d366; background:rgba(37,211,102,.15); box-shadow:0 0 18px rgba(37,211,102,.4); }

/* Equalizer */
.eq { display:flex; align-items:flex-end; gap:3px; height:36px; }
.eq span {
    display: block; width: 4px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, var(--magenta), var(--pink-light));
    animation: eq-bar linear infinite alternate;
}
.eq span:nth-child(1)  { animation-duration:.38s; animation-delay:.00s; }
.eq span:nth-child(2)  { animation-duration:.55s; animation-delay:.08s; }
.eq span:nth-child(3)  { animation-duration:.28s; animation-delay:.16s; }
.eq span:nth-child(4)  { animation-duration:.48s; animation-delay:.04s; }
.eq span:nth-child(5)  { animation-duration:.65s; animation-delay:.24s; }
.eq span:nth-child(6)  { animation-duration:.35s; animation-delay:.12s; }
.eq span:nth-child(7)  { animation-duration:.58s; animation-delay:.20s; }
.eq span:nth-child(8)  { animation-duration:.30s; animation-delay:.32s; }
.eq span:nth-child(9)  { animation-duration:.45s; animation-delay:.00s; }
.eq span:nth-child(10) { animation-duration:.72s; animation-delay:.10s; }
.eq span:nth-child(11) { animation-duration:.38s; animation-delay:.28s; }
.eq span:nth-child(12) { animation-duration:.52s; animation-delay:.18s; }
.eq span:nth-child(13) { animation-duration:.42s; animation-delay:.06s; }
.eq span:nth-child(14) { animation-duration:.60s; animation-delay:.22s; }
.eq span:nth-child(15) { animation-duration:.33s; animation-delay:.14s; }
.eq span:nth-child(16) { animation-duration:.50s; animation-delay:.36s; }

@keyframes eq-bar {
    from { height:2px;  opacity:.35; }
    to   { height:32px; opacity:1;   }
}

/* Fade-in */
.fade-in { opacity:0; transform:translateY(20px); animation:fadein .75s ease forwards; }
.delay-1 { animation-delay:.15s; }
.delay-2 { animation-delay:.30s; }
.delay-3 { animation-delay:.48s; }
.delay-4 { animation-delay:.65s; }
.delay-5 { animation-delay:.82s; }
@keyframes fadein { to { opacity:1; transform:translateY(0); } }

/* Responsive */
@media (max-width: 520px) {
    .cu { padding:14px 16px; min-width:64px; }
    .num { font-size:2rem; }
    .soc-btn span { display:none; }
    .soc-btn { padding:10px 13px; }
}

@media (prefers-reduced-motion: reduce) {
    .particles span, .logo, .eq span, .fade-in { animation:none !important; }
    .fade-in { opacity:1; transform:none; }
}
