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

:root {
    --orange: #ff6b35;
    --gold: #f7c948;
    --pink: #e84393;
    --dark: #0a0a0f;
    --dark-surface: #12121a;
}

body {
    background-color: var(--dark);
    color: #fff;
    font-family: 'Inter', -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Background Canvas ---- */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ---- Floating Orbs ---- */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--orange);
    top: -10%;
    left: -10%;
    animation: float1 12s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--pink);
    bottom: -15%;
    right: -10%;
    animation: float2 15s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 10s ease-in-out infinite;
    opacity: 0.12;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.1); }
    66% { transform: translate(-30px, 60px) scale(0.95); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -30px) scale(1.05); }
    66% { transform: translate(40px, -50px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -55%) scale(1.2); }
}

/* ---- Splash Container ---- */
.splash-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 2rem;
    animation: fadeIn 1.5s ease-out;
    min-height: 100vh;
    width: 100%;
    max-width: 600px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- 3D Logo ---- */
.logo-3d {
    width: min(400px, 60vw);
    height: min(400px, 60vw);
    margin-bottom: 0;
    animation: logoEntry 1.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.3s;
    opacity: 0;
    cursor: grab;
    overflow: visible;
}

.logo-3d:active {
    cursor: grabbing;
}

@keyframes logoEntry {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

/* ---- Tagline ---- */
.tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out both;
    animation-delay: 1s;
    opacity: 0;
}

/* ---- Equalizer Bars ---- */
.eq-bars {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out both;
    animation-delay: 1.2s;
    opacity: 0;
}

.eq-bars span {
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(to top, var(--orange), var(--gold), var(--pink));
    animation: eqBounce 1.2s ease-in-out infinite;
}

.eq-bars span:nth-child(1)  { animation-delay: 0.0s; height: 12px; }
.eq-bars span:nth-child(2)  { animation-delay: 0.1s; height: 20px; }
.eq-bars span:nth-child(3)  { animation-delay: 0.15s; height: 30px; }
.eq-bars span:nth-child(4)  { animation-delay: 0.05s; height: 18px; }
.eq-bars span:nth-child(5)  { animation-delay: 0.2s; height: 35px; }
.eq-bars span:nth-child(6)  { animation-delay: 0.25s; height: 25px; }
.eq-bars span:nth-child(7)  { animation-delay: 0.3s; height: 40px; }
.eq-bars span:nth-child(8)  { animation-delay: 0.12s; height: 28px; }
.eq-bars span:nth-child(9)  { animation-delay: 0.35s; height: 35px; }
.eq-bars span:nth-child(10) { animation-delay: 0.18s; height: 22px; }
.eq-bars span:nth-child(11) { animation-delay: 0.28s; height: 30px; }
.eq-bars span:nth-child(12) { animation-delay: 0.08s; height: 16px; }
.eq-bars span:nth-child(13) { animation-delay: 0.22s; height: 25px; }
.eq-bars span:nth-child(14) { animation-delay: 0.32s; height: 20px; }
.eq-bars span:nth-child(15) { animation-delay: 0.14s; height: 10px; }

@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* ---- Teaser Hints ---- */
.teaser-hints {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out both;
    animation-delay: 1.3s;
    opacity: 0;
}

.hint {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.4s ease;
}

.hint:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hint-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}

.hint-dot:nth-of-type(2) {
    animation-delay: 0.5s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* ---- CTA ---- */
.cta-section {
    animation: fadeIn 1s ease-out both;
    animation-delay: 1.4s;
    opacity: 0;
}

.cta-link {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cta-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cta-link:hover {
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.25);
}

.cta-link:hover::before {
    opacity: 1;
}

/* ---- Social / Footer ---- */
.social-links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 1s ease-out both;
    animation-delay: 1.6s;
    opacity: 0;
}

.social-text {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.divider-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---- Embed Player (matches app embed designer) ---- */
.embed-player-wrap {
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out both;
    animation-delay: 1.4s;
    opacity: 0;
    max-width: 380px;
    width: 100%;
}

.ep {
    background: rgba(30, 30, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.ep-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ep-hdr-text { flex: 1; min-width: 0; }
.ep-title { font-size: 15px; font-weight: 600; color: #f0f0f5; }
.ep-sub { font-size: 11px; color: rgba(240, 240, 245, 0.4); }

.ep-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 99px;
    flex-shrink: 0;
}

.ep-badge-live { background: rgba(255, 68, 68, 0.15); color: #ff4444; display: none; }
.ep-badge-offline { background: rgba(128, 128, 128, 0.15); color: rgba(240, 240, 245, 0.5); }
.ep-badge-countdown { background: rgba(247, 201, 72, 0.15); color: #f7c948; display: none; }

.ep-live-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff4444;
    margin-right: 3px;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.ep-np {
    font-size: 12px;
    color: rgba(240, 240, 245, 0.4);
    margin-bottom: 10px;
    min-height: 16px;
    transition: color 0.2s;
}

.ep-ctrl {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ep-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.ep-play:hover { transform: scale(1.08); box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35); }
.ep-play:active { transform: scale(0.95); }
.ep-play svg { width: 18px; height: 18px; }

.ep-vol {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(240, 240, 245, 0.4);
}

.ep-vol svg { width: 14px; height: 14px; flex-shrink: 0; }

.ep-vol input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.ep-vol input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    cursor: pointer;
}

.ep-brand {
    margin-top: 10px;
    text-align: right;
    font-size: 9px;
}

.ep-brand a {
    color: rgba(240, 240, 245, 0.25);
    text-decoration: none;
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
    .logo-3d {
        width: 280px;
        height: 280px;
        margin-bottom: 0.5rem;
    }

    .orb-1 { width: 300px; height: 300px; }
    .orb-2 { width: 250px; height: 250px; }
    .orb-3 { width: 200px; height: 200px; }

    .eq-bars { gap: 3px; height: 30px; }
    .eq-bars span { width: 2px; }
}
