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

:root {
    --red: #E50914;
    --red-dark: #b8060f;
    --bg: #08080a;
    --panel: #121216;
    --card: #18181c;
    --card-alt: #202024;
    --text-gray: #a3a3a3;
    --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', -apple-system, Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: #fff;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8,8,10,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.brand img { width: 34px; height: 34px; border-radius: 8px; }
.brand span { color: var(--red); }

.footer-brand .brand img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
}

@media (max-width: 400px) {
    .navbar-inner { padding: 12px 16px; }
    .brand { font-size: 17px; gap: 8px; }
    .brand img { width: 28px; height: 28px; }
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14.5px;
    font-weight: 600;
}
.nav-links a { color: var(--text-gray); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta {
    background: var(--red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 860px) {
    .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--panel); flex-direction: column; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--border); display: none; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--border); }
    .nav-toggle { display: block; }
    .nav-cta { display: none; }
}

/* ===== Hero ===== */
.hero {
    padding: 90px 0 70px;
    background: radial-gradient(circle at 20% 10%, rgba(229,9,20,0.15), transparent 45%);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero h1 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 18px;
}
.hero h1 span { color: var(--red); }
.hero p {
    color: var(--text-gray);
    font-size: 16.5px;
    margin-bottom: 30px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media img {
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

@media (max-width: 860px) {
    .hero { padding: 60px 0 50px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 30px; }
    .hero p { max-width: 100%; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .hero p { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { text-align: center; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14.5px;
    border: none;
    cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: #fff; border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(255,255,255,0.3); }

/* ===== Sections ===== */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-head h2 { font-size: 30px; font-weight: 900; margin-bottom: 12px; }
.section-head p { color: var(--text-gray); font-size: 15.5px; }

.section-alt { background: var(--panel); }

@media (max-width: 700px) {
    section { padding: 56px 0; }
    .section-head { margin-bottom: 36px; }
    .section-head h2 { font-size: 24px; }
}

/* ===== Feature grid ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px;
}
.feature-card .icon {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(229,9,20,0.15);
    border-radius: 10px;
    font-size: 22px;
    margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { color: var(--text-gray); font-size: 13.5px; }

@media (max-width: 900px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .feature-grid { grid-template-columns: 1fr; }
}

/* ===== Showcase (screenshot + text side by side) ===== */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 90px;
}
.showcase:last-child { margin-bottom: 0; }
.showcase.reverse .showcase-media { order: 2; }
.showcase.reverse .showcase-text { order: 1; }
.showcase-media img { border-radius: 14px; border: 1px solid var(--border); }
.showcase-text .step-num {
    display: inline-block;
    background: var(--red);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}
.showcase-text h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.showcase-text p { color: var(--text-gray); font-size: 15px; }
.showcase-text ul { margin-top: 16px; }
.showcase-text li {
    color: #ddd;
    font-size: 14.5px;
    padding: 8px 0 8px 26px;
    position: relative;
}
.showcase-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}

@media (max-width: 860px) {
    .showcase, .showcase.reverse { grid-template-columns: 1fr; gap: 24px; margin-bottom: 60px; }
    .showcase.reverse .showcase-media, .showcase.reverse .showcase-text { order: unset; }
}

@media (max-width: 480px) {
    .showcase-text h3 { font-size: 20px; }
}

/* ===== Disclaimer band ===== */
.disclaimer-band {
    background: #1c130a;
    border-top: 1px solid #3a2a10;
    border-bottom: 1px solid #3a2a10;
    padding: 26px 0;
}
.disclaimer-band .container {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: #f0c98a;
    font-size: 13.5px;
    line-height: 1.8;
}
.disclaimer-band .icon { font-size: 20px; flex-shrink: 0; }

@media (max-width: 480px) {
    .disclaimer-band { padding: 20px 0; }
    .disclaimer-band .container { font-size: 12.5px; gap: 10px; }
}

/* ===== Download card ===== */
.download-card {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    max-width: 640px;
    margin: 0 auto;
}
.download-card-icon {
    width: 72px; height: 72px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(229,9,20,0.15);
    border-radius: 16px;
    font-size: 34px;
}
.download-card-body h3 { font-size: 19px; margin-bottom: 6px; }
.download-card-body p { color: var(--text-gray); font-size: 13.5px; margin-bottom: 16px; }
.download-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 13.5px;
    margin-top: 22px;
}

@media (max-width: 560px) {
    .download-card { flex-direction: column; text-align: center; padding: 28px; }
}

/* ===== Simple page hero (inner pages) ===== */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(229,9,20,0.14), transparent 50%);
}
.page-hero h1 { font-size: 34px; font-weight: 900; margin-bottom: 10px; }
.page-hero p { color: var(--text-gray); max-width: 560px; margin: 0 auto; }

@media (max-width: 480px) {
    .page-hero { padding: 44px 0 30px; }
    .page-hero h1 { font-size: 26px; }
    .page-hero p { font-size: 14.5px; }
}

/* ===== Steps list (Activate / Manage Playlists) ===== */
.steps { max-width: 760px; margin: 0 auto; }
.step-item {
    display: flex;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-item .num {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    color: var(--red);
}
.step-item h3 { font-size: 17px; margin-bottom: 6px; }
.step-item p { color: var(--text-gray); font-size: 14.5px; }

@media (max-width: 480px) {
    .step-item { gap: 14px; padding: 20px 0; }
    .step-item .num { width: 34px; height: 34px; font-size: 13.5px; }
    .step-item h3 { font-size: 15.5px; }
    .step-item p { font-size: 13.5px; }
}

/* ===== Cards (FAQ / Contact) ===== */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}

.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 16px; margin-bottom: 8px; }
.faq-item p { color: var(--text-gray); font-size: 14.5px; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
}
.contact-card .icon { font-size: 26px; margin-bottom: 12px; }
.contact-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.contact-card p { color: var(--text-gray); font-size: 13.5px; }
.contact-card a.value { color: var(--red); font-weight: 700; font-size: 14px; display: inline-block; margin-top: 8px; }

@media (max-width: 700px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Legal pages ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 18px; margin: 30px 0 10px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-gray); font-size: 14.5px; line-height: 1.85; }
.legal-content ul { padding-left: 22px; margin: 8px 0; list-style: disc; }
.legal-content a { color: #4ee0c0; }
.legal-updated { color: var(--text-gray); font-size: 13px; margin-bottom: 30px; display: block; }

/* ===== Footer ===== */
.footer {
    background: var(--panel);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--text-gray); font-size: 13.5px; max-width: 320px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-gray); margin-bottom: 16px; }
.footer-col a { display: block; color: #ddd; font-size: 14px; padding: 6px 0; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
}

@media (max-width: 700px) {
    .footer { padding: 44px 0 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
}
