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

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --text: #333333;
    --text-muted: #555555;
    --accent: #b8860b;
    --accent-glow: rgba(218, 165, 32, 0.4);
    --border: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(33deg, rgb(111, 173, 223) 0%, rgb(200, 255, 228) 100%);
    background-attachment: fixed;
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 2rem;
    text-align: center;
}

.logo-wrap {
    animation: logoFloat 4s ease-in-out infinite;
    margin-bottom: 1.5rem;
    perspective: 600px;
}

.logo {
    width: 300px;
    max-width: 60vw;
    animation: logoGlow 6s ease-in-out infinite;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.logo:hover {
    transform: rotateX(180deg);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 80px rgba(255, 255, 255, 0.15)); }
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

/* Social links */
.socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    transition: border-color 0.3s, background 0.3s;
}

.socials a:hover {
    border-color: var(--accent);
    background: #ffffff;
}

.socials a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Videos section */
.videos-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
}

/* Featured video */
.featured-video {
    margin-bottom: 2.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Playlist grid */
.playlist-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.playlist-grid .video-wrapper {
    border-radius: 10px;
}

/* Tuning section */
.tuning {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.tuning p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.tuning-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    transition: border-color 0.3s, background 0.3s;
}

.tuning-cta svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.tuning-cta:hover {
    border-color: var(--accent);
    background: #ffffff;
}

/* Support section */
.support {
    text-align: center;
    padding: 3rem 1.5rem 4rem;
}

.support p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.bmc-btn {
    display: inline-block;
    transition: transform 0.2s;
}

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

.bmc-btn img {
    height: 48px;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 2.5rem 1rem 1.5rem;
    }
    .logo {
        width: 150px;
    }
    .tagline {
        font-size: 0.9rem;
    }
    .playlist-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.2rem;
    }
}
