/* PrismPlay — Facebook Ad Landing Page */

:root {
    --bg-black: #000000;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(18, 18, 28, 0.75);
    --bg-glass: rgba(12, 12, 20, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);

    --rainbow: linear-gradient(135deg, #7c3aed 0%, #ec4899 25%, #f59e0b 50%, #22c55e 75%, #06b6d4 100%);
    --rainbow-text: linear-gradient(90deg, #a855f7, #ec4899, #f59e0b, #22c55e, #06b6d4);

    --purple: #a855f7;
    --pink: #ec4899;
    --orange: #f59e0b;
    --green: #22c55e;
    --cyan: #06b6d4;

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --font-primary: 'Outfit', system-ui, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    max-width: 100vw;
    background: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
svg { fill: currentColor; }

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

.glassmorphism {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius);
}

.gradient-text {
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-play {
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    line-height: 1.35;
    text-align: center;
    font-family: inherit;
    max-width: 100%;
    white-space: normal;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
    background: var(--rainbow);
    color: #fff;
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; min-height: 52px; }
.btn-block { display: flex; width: 100%; }
.btn-label-short { display: none; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35); }
    50% { box-shadow: 0 8px 40px rgba(236, 72, 153, 0.55); }
}

.pulse-animation { animation: pulse 3s infinite ease-in-out; }

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.nav-menu { display: flex; gap: 28px; }

.nav-link {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover { color: var(--text-primary); }

.nav-cta { flex-shrink: 0; }

.nav-btn-cta {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    white-space: nowrap;
}

.nav-cta-short { display: none; }

/* Hero */
.hero-section {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.15), transparent),
                radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.08), transparent),
                var(--bg-black);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    left: -100px;
    top: 10%;
    background: rgba(124, 58, 237, 0.12);
}

.hero-glow-2 {
    width: 350px;
    height: 350px;
    right: -80px;
    bottom: 20%;
    background: rgba(6, 182, 212, 0.1);
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-visual,
.hero-content {
    min-width: 0;
    max-width: 100%;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    transition: var(--transition);
}

.promo-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.06);
}

.promo-icon { display: block; font-size: 20px; margin-bottom: 6px; }

.promo-amount {
    display: block;
    font-size: 20px;
    font-weight: 800;
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 4px;
}

.promo-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.35;
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.hero-feat-item svg { width: 16px; height: 16px; color: var(--green); }

/* Hero showcase */
.hero-visual { animation: float 6s ease-in-out infinite; }

.hero-showcase {
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 100%;
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    flex-wrap: wrap;
}

.showcase-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.showcase-live {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.05em;
}

.showcase-featured {
    position: relative;
    aspect-ratio: 2 / 3;
    max-height: min(72vh, 560px);
    background: #111;
    overflow: hidden;
}

.showcase-featured img,
.showcase-thumb img,
.show-card-poster img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center top;
    background: #151520;
}

.showcase-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.showcase-featured-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.25;
    word-break: break-word;
}

.showcase-featured-overlay p {
    font-size: 12px;
    color: var(--text-secondary);
}

.showcase-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--rainbow);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.showcase-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
}

.showcase-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #1a1a24;
    border: 1px solid var(--border-color);
    min-height: 120px;
}

.showcase-thumb img {
    display: block;
}

.showcase-thumb span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6px 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
}

/* Horizontal scroll utility */
.scroll-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.scroll-row::-webkit-scrollbar { display: none; }

.mobile-hero-cta {
    display: none;
    margin-top: 14px;
}

.trending-scroll-wrap {
    position: relative;
}

.scroll-hint {
    display: none;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

.scroll-hint::before {
    content: "← Desliza para ver más →";
}

.trending-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-pre {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--rainbow-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 15px;
    color: var(--text-secondary);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.show-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: default;
}

.show-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}

.show-card-poster {
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #151520;
    position: relative;
}

.show-card-poster.poster-fallback,
.showcase-featured.poster-fallback,
.showcase-thumb.poster-fallback {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.35), rgba(236, 72, 153, 0.25));
}

.show-card-poster img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.show-card:hover .show-card-poster img { transform: scale(1.05); }

.show-card-info { padding: 14px 16px 16px; }

.show-card-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tag-series { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.tag-movie { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.tag-new { background: rgba(34, 197, 94, 0.15); color: #4ade80; }

.show-card-info h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.show-card-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.show-card-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
}

.trending-cta {
    text-align: center;
    margin-top: 48px;
}

/* Features */
.features-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.feature-card.featured-card {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
    border-color: rgba(168, 85, 247, 0.25);
}

.feat-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
}

.feat-icon-box svg { width: 24px; height: 24px; }

.rainbow-glow { border-color: rgba(168, 85, 247, 0.3); color: var(--purple); }
.cyan-glow { border-color: rgba(6, 182, 212, 0.3); color: var(--cyan); }
.green-glow { border-color: rgba(34, 197, 94, 0.3); color: var(--green); }
.purple-glow { border-color: rgba(168, 85, 247, 0.3); color: var(--purple); }

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.categories-bar {
    margin-top: 48px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-align: center;
}

.categories-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.category-tag:hover {
    border-color: rgba(168, 85, 247, 0.4);
    color: var(--text-primary);
}

/* Download */
.download-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(124, 58, 237, 0.1), transparent);
}

.download-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
    align-items: center;
}

.download-logo {
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.3);
}

.download-content .section-pre { margin-bottom: 8px; }
.download-content .section-title { text-align: left; margin-bottom: 12px; }
.download-content .section-desc { text-align: left; margin-bottom: 24px; }

.download-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin-top: 24px;
}

.download-meta li {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.download-meta strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.download-steps h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-steps ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.download-steps li span {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--rainbow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    font-family: inherit;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--purple);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-content { max-height: 200px; }

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 48px 0 32px;
    background: #050508;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-brand img { border-radius: 8px; }

.fb-disclaimer-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 24px;
    text-align: left;
}

.fb-disclaimer-box p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.65;
}

.fb-disclaimer-box strong {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-size: 12px;
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-muted);
}

/* Sticky download bar (mobile) */
.sticky-download {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.94);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sticky-download-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.sticky-download-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sticky-download-text strong {
    font-size: 14px;
    line-height: 1.2;
}

.sticky-download-text span {
    font-size: 11px;
    color: var(--text-muted);
}

.sticky-download-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Responsive — mobile-first ad landing */
@media (max-width: 768px) {
    html { scroll-padding-top: 64px; }

    .section-container {
        padding: 0 16px;
        max-width: 100%;
    }

    .nav-menu { display: none; }

    .navbar {
        height: 56px;
        background: rgba(0, 0, 0, 0.95);
    }

    .nav-container {
        padding: 0 12px;
    }

    .logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .logo-text { font-size: 16px; }

    .nav-cta-full { display: none; }
    .nav-cta-short { display: inline; }
    .nav-btn-cta {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 36px;
    }

    .hero-glow { display: none; }

    .hero-section {
        padding: 64px 0 24px;
        min-height: auto;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
        width: 100%;
    }

    .hero-visual-first { order: 1; width: 100%; }
    .hero-content-second { order: 2; width: 100%; }

    .hero-visual { animation: none; }

    .hero-showcase {
        border-radius: 14px;
    }

    .showcase-header {
        padding: 10px 12px;
    }

    .showcase-label,
    .showcase-live {
        font-size: 10px;
    }

    .showcase-featured {
        aspect-ratio: 2 / 3;
        max-height: none;
        width: 100%;
    }

    .showcase-featured-overlay {
        padding: 14px;
    }

    .showcase-featured-overlay h3 {
        font-size: 16px;
    }

    .showcase-featured-overlay p {
        font-size: 11px;
    }

    .showcase-row-scroll {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding: 10px;
    }

    .showcase-row-scroll .showcase-thumb {
        min-width: 0;
        min-height: 0;
        aspect-ratio: 2 / 3;
    }

    .showcase-row-scroll .showcase-thumb span {
        display: none;
    }

    .mobile-hero-cta {
        display: block;
        margin-top: 12px;
    }

    .mobile-hero-cta .btn {
        font-size: 15px;
        padding: 14px 16px;
    }

    .hero-content-second {
        text-align: left;
    }

    .compliance-badge {
        justify-content: flex-start;
        font-size: 10px;
        padding: 6px 10px;
        margin-bottom: 12px;
        max-width: 100%;
        line-height: 1.4;
    }

    .promo-cards-scroll {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 0 0 14px;
        padding: 0;
        overflow: visible;
    }

    .promo-cards-scroll .promo-card {
        flex: unset;
        padding: 10px 6px;
    }

    .promo-amount { font-size: 15px; }
    .promo-label { font-size: 10px; }

    .hero-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 0;
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .hero-cta-group {
        display: none;
    }

    .hero-features-list {
        display: none;
    }

    .trending-section,
    .features-section,
    .download-section,
    .faq-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 20px;
        text-align: left;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 13px;
    }

    .trending-scroll-wrap {
        margin: 0;
        width: 100%;
        overflow: hidden;
    }

    .trending-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 2px 0 6px;
        width: 100%;
        max-width: 100%;
    }

    .trending-grid::-webkit-scrollbar { display: none; }

    .show-card {
        flex: 0 0 clamp(128px, 38vw, 150px);
        width: clamp(128px, 38vw, 150px);
        min-width: 0;
        scroll-snap-align: start;
    }

    .show-card-info {
        padding: 10px 10px 12px;
    }

    .show-card-info h3 {
        font-size: 12px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .show-card-info p {
        font-size: 10px;
    }

    .scroll-hint { display: block; }

    .trending-cta {
        margin-top: 20px;
    }

    .trending-cta .btn {
        width: 100%;
        min-height: 48px;
        font-size: 14px;
        padding: 12px 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 18px 16px;
    }

    .feature-card:nth-child(n+4) {
        display: none;
    }

    .categories-bar {
        margin-top: 24px;
        padding: 16px 14px;
    }

    .category-tag {
        font-size: 11px;
        padding: 6px 10px;
    }

    .download-box {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 24px;
    }

    .download-content .section-title,
    .download-content .section-desc {
        text-align: left;
    }

    .download-logo {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .download-meta {
        grid-template-columns: 1fr 1fr;
    }

    .faq-trigger {
        padding: 14px 16px;
        font-size: 14px;
    }

    .sticky-download {
        display: block;
    }

    body {
        padding-bottom: calc(64px + env(safe-area-inset-bottom));
    }

    .btn-label-full { display: none; }
    .btn-label-short { display: inline; }

    .footer {
        padding: 32px 0 20px;
    }

    .footer-brand {
        flex-direction: column;
        font-size: 12px;
        padding: 0 8px;
    }

    .fb-disclaimer-box {
        text-align: left;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .hero-features-list { justify-content: center; }
    .compliance-badge { justify-content: center; }

    .trending-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .download-box { grid-template-columns: 1fr; text-align: center; }
    .download-content .section-title,
    .download-content .section-desc { text-align: center; }
    .download-logo { margin-left: auto; margin-right: auto; }
    .download-steps { text-align: left; }
}

@media (min-width: 769px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-visual-first { order: 2; }
    .hero-content-second { order: 1; }
}

@media (max-width: 480px) {
    .show-card {
        flex-basis: clamp(120px, 42vw, 140px);
        width: clamp(120px, 42vw, 140px);
    }

    .hero-title {
        font-size: 24px;
    }

    .promo-cards-scroll {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .download-meta {
        grid-template-columns: 1fr;
    }

    .sticky-download-inner {
        gap: 8px;
    }

    .sticky-download-text strong {
        font-size: 12px;
    }

    .sticky-download-btn {
        padding: 9px 14px;
        font-size: 12px;
        min-height: 40px;
        white-space: nowrap;
    }
}

@media (hover: none) {
    .btn-primary:hover { transform: none; }
    .show-card:hover { transform: none; }
}
