@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');
:root {
    --pink: #FFB6C1;
    --pink-dark: #e8899a;
    --bg: #070709;
    --surface: #0e0e12;
    --surface-2: #141418;
    --border: rgba(255, 182, 193, 0.1);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --text: #f0f0f0;
    --text-muted: #7a7a8c;
    --text-faint: #3a3a48;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
picture {
    display: block;
    width: 100%;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.35;
}
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s ease;
}
header.scrolled {
    padding: 14px 0;
    background: rgba(7, 7, 9, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 55px;
    width: auto;
}
nav {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s;
}
.nav-link:hover {
    color: var(--text);
    background: var(--border-subtle);
}
.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--pink);
    color: #0a0a0a;
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.btn-login:hover {
    background: var(--pink-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255, 182, 193, 0.25);
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 100vw);
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 182, 193, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 9vw, 92px);
    font-weight: 800;
    line-height: 1.0;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.9s 0.1s cubic-bezier(0.23, 1, 0.32, 1) both;
    letter-spacing: -0.03em;
}
.glow-text {
    background: linear-gradient(135deg, var(--pink) 0%, #ffccd4 40%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-muted);
    margin-bottom: 44px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeSlideUp 1s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: fadeSlideUp 1s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'DM Sans', sans-serif;
}
.btn-primary {
    background: var(--pink);
    color: #0a0a0a;
}
.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 182, 193, 0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--pink);
    border: 1.5px solid rgba(255, 182, 193, 0.4);
    backdrop-filter: blur(8px);
}
.btn-secondary:hover {
    background: rgba(255, 182, 193, 0.08);
    border-color: var(--pink);
    transform: translateY(-3px);
}
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 18px 32px;
    backdrop-filter: blur(12px);
    animation: fadeSlideUp 1s 0.4s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}
.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border-subtle);
    flex-shrink: 0;
}
.marquee-section {
    position: relative;
    padding: 32px 0;
    overflow: hidden;
}
.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}
.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}
.marquee-track {
    overflow: hidden;
}
.marquee-inner {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 10px 18px;
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-icon-wrap {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.marquee-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.marquee-icon-fallback {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--pink);
    font-family: 'Syne', sans-serif;
}
.marquee-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.marquee-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Syne', sans-serif;
}
.marquee-members {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.about {
    padding: 120px 0;
    text-align: center;
}
.about-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}
.features {
    padding: 40px 0 120px;
    text-align: center;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
    text-align: left;
}
.feature-card {
    background: var(--surface);
    padding: 28px 26px;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 182, 193, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.feature-card:hover {
    border-color: rgba(255, 182, 193, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 182, 193, 0.1);
}
.feature-card:hover::before {
    opacity: 1;
}
.card-icon {
    font-size: 24px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
    color: var(--pink);
}
.feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
}
.music-section {
    padding: 40px 0 80px;
    text-align: center;
}
.music-header {
    margin-bottom: 56px;
}
.music-desc {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}
.mockup-row {
    margin-bottom: 48px;
}
.mockup-left {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.mockup-right {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.mockup-label-wrap {
    margin-bottom: 14px;
}
.mockup-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--pink);
}
.mockup-img-wrap {
    max-width: 46%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #313338;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}
.mockup-left .mockup-img-wrap {
    transform: perspective(1000px) rotateY(10deg);
    transform-origin: center;
}
.mockup-right .mockup-img-wrap {
    transform: perspective(1000px) rotateY(-10deg);
    transform-origin: center;
}
.mockup-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}
.cta-section {
    padding: 40px 0 140px;
    text-align: center;
}
.cta-inner {
    position: relative;
}
.cta-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.15;
}
.cta-text {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 36px;
    font-weight: 300;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
}
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 36px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy {
    color: var(--text-faint);
    font-size: 13px;
}
.footer-sub {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-email {
    color: var(--text-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
    font-size: 20px;
}
.footer-email:hover {
    color: var(--pink);
    background: rgba(255, 182, 193, 0.08);
}
.footer-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-icon {
    color: var(--text-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
}
.footer-icon:hover {
    color: var(--pink);
    background: rgba(255, 182, 193, 0.08);
}
.user-menu {
    position: relative;
}
.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: block;
}
.user-avatar:hover {
    border-color: var(--pink);
    transform: scale(1.05);
}
.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 12px;
    min-width: 190px;
    z-index: 200;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.user-info {
    padding: 6px 8px 12px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 10px;
}
.username {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text);
}
.user-badge {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}
.user-badge.premium {
    color: var(--pink);
}
.dropdown-btn {
    display: block;
    text-align: center;
    padding: 9px 12px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 6px;
}
.dropdown-btn:last-child {
    margin-bottom: 0;
}
.dashboard-btn {
    background: var(--pink);
    color: #0a0a0a;
}
.dashboard-btn:hover {
    background: var(--pink-dark);
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal-card:nth-child(1) { transition-delay: 0.05s; }
.reveal-card:nth-child(2) { transition-delay: 0.12s; }
.reveal-card:nth-child(3) { transition-delay: 0.19s; }
.reveal-card:nth-child(4) { transition-delay: 0.26s; }
.reveal-card:nth-child(5) { transition-delay: 0.33s; }
.reveal-card:nth-child(6) { transition-delay: 0.40s; }
.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-img-wrap {
        max-width: 60%;
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 72px;
    }
    .hero-stats {
        padding: 16px 16px;
        gap: 0;
    }
    .stat-item {
        padding: 0 16px;
    }
    .stat-number {
        font-size: 20px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .mockup-left {
        padding-left: 0;
        align-items: center;
    }
    .mockup-right {
        padding-right: 0;
        align-items: center;
    }
    .mockup-img-wrap {
        max-width: 88%;
    }
    .mockup-left .mockup-img-wrap {
        transform: none;
    }
    .mockup-right .mockup-img-wrap {
        transform: none;
    }
    .mockup-label-wrap {
        text-align: center;
    }
    .footer-inner {
        flex-direction: column;
        gap: 12px;
    }
    .footer-copy {
        text-align: center;
        width: 100%;
    }
    .footer-sub {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }
    .btn {
        justify-content: center;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 16px;
    }
    .stat-divider {
        display: none;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .mockup-img-wrap {
        max-width: 90%;
    }
}