/*** uncss> filename: https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Newsreader:wght@400;600;700;800&display=swap ***/
/* @font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat_XDW3z.ttf) format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwA_JxhTg.ttf) format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTg.ttf) format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTg.ttf) format('truetype');
} */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/newsreader/v26/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADA.ttf) format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/newsreader/v26/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADA.ttf) format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/newsreader/v26/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADA.ttf) format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/newsreader/v26/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADA.ttf) format('truetype');
}
 
/*** uncss> filename: assets/styles.css ***/
/* ─ EXTRACTED STYLESHEET FOR IPTV CANADA ─ */

:root {
    --black: #080A0D;
    --dark: #0D1117;
    --card: #121820;
    --card2: #161E28;
    --red: #E63946;
    --red-dim: rgba(230,57,70,0.12);
    --red-glow: rgba(230,57,70,0.35);
    --white: #F0F4F8;
    --muted: #95A2AC; /*#6B7A8D;*/
    --border: rgba(255,255,255,0.07);
    --border-bright: rgba(255,255,255,0.13);
    --font-display: 'Newsreader', sans-serif;
    --font-body: 'Newsreader', serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    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='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

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

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

/* ─── TYPOGRAPHY ─── */
h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.02em;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

h3 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

p {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
}

.accent { color: var(--red); }

/* ─── SECTION SPACING ─── */
section { padding: 96px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
}

/* ─── DIVIDER ─── */
.divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

/* ─── BUTTON ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #A0121E;/*var(--red);*/
    /* filter: brightness(0.6); */
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px var(--red-glow);
    cursor: pointer;
    border: none;
}

.btn:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--red-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-bright);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    box-shadow: none;
}

/* ─── HEADER ─── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8,10,13,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 36px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(240,244,248,0.72);
}

.nav-links a:hover { color: var(--white); }

/* ─── HERO ─── */
.hero {
    padding: 80px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-image: url('/assets/hero-bg.webp');
    background-color: #0a0d12;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(8,10,13,0.78) 0%,
        rgba(8,10,13,0.68) 40%,
        rgba(8,10,13,0.90) 100%);
    pointer-events: none;
    z-index: 1;
}

/* extra dark vignette around edges */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(8,10,13,0.55) 100%);
}

.hero-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.18) 0%, transparent 65%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}

.hero-inner {
    display: block;
    position: relative;
    z-index: 3;
}

.hero .container {
    padding-left: 8px;
    padding-right: 8px;
}

.hero-copy {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.hero-copy h1 {
    margin-bottom: 28px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,0.7);
}

.hero-copy p {
    font-size: 1.12rem;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(240,244,248,0.82);
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.stat-item p {
    font-size: 0.85rem;
    margin: 0;
}

/* ─── PLANS ─── */
.plans-section { background: var(--dark); }

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

.plan-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.plan-card:hover {
    border-color: rgba(230,57,70,0.4);
    transform: translateY(-4px);
}

.plan-card.featured {
    border-color: var(--red);
    background: linear-gradient(160deg, #1a0e10, #121820);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card h5 {
    color: var(--muted);
    margin-bottom: 20px;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 28px;
    margin-top: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 28px;
}

.plan-features li {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li::before {
    content: '✓';
    color: var(--red);
    font-weight: 700;
    font-size: 0.75rem;
}

/* ─── DEVICES ─── */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 52px;
}

.device-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 16px;
    text-align: center;
    transition: border-color 0.25s;
}

.device-card:hover { border-color: var(--border-bright); }

.device-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.device-card p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--muted);
}

/* ─── STEPS ─── */
.steps-section { background: var(--dark); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    margin-top: 52px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.step-item {
    background: var(--card);
    padding: 52px 40px;
    position: relative;
}

.step-num {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: rgba(230,57,70,0.12);
    line-height: 1;
    margin-bottom: 24px;
    display: block;
}

.step-item h3 { margin-bottom: 12px; }

/* ─── COMPARISON ─── */

/* ─── FAQ IPTV EXPLAINED ─── */

/* ─── FEATURE SHOWCASE ─── */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 52px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.showcase-card {
    background: var(--card);
    padding: 40px 32px;
    transition: background 0.3s;
}

.showcase-card:hover { background: var(--card2); }

.showcase-icon {
    width: 48px;
    height: 48px;
    background: var(--red-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.showcase-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

/* ─── DISCOVER PREMIUM ─── */

/* ─── WHY CHOOSE ─── */

/* ─── SPORTS CTA ─── */
.sports-section {
    background: var(--dark);
}

.sports-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.sports-channels {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 24px;
}

.sport-tag {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
}

/* ─── COVERAGE ─── */
.coverage-bar {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 32px;
}

.province-item {
    text-align: center;
}

.province-item span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.province-item p { font-size: 0.82rem; margin: 0; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--dark); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 52px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 28px;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 24px;
    font-style: italic;
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-dim);
    border: 1px solid rgba(230,57,70,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--red);
}

.reviewer-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
}

.reviewer-info span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ─── RESELLER ─── */

/* ─── BLOG ─── */

/* ─── FOOTER ─── */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 260px;
}

.footer-col h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { font-size: 0.82rem; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .plans-grid { grid-template-columns: repeat(2,1fr); }
    .devices-grid { grid-template-columns: repeat(3,1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .nav-links { display: none; }
    .hero { min-height: 70vh; padding: 120px 0 80px; }
    .plans-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; }
    .sports-inner { grid-template-columns: 1fr; }
    .coverage-bar { grid-template-columns: repeat(3,1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    section { padding: 64px 0; }
    .devices-grid { grid-template-columns: repeat(2,1fr); }
    .hero-subline { flex-direction: column; gap: 8px; }
    .cta-final-btns { flex-direction: column; align-items: center; }
    .trust-badges { gap: 10px 16px; }
    .comparison-table th, .comparison-table td { padding: 12px 10px; font-size: 0.82rem; }
}

/* ─── HERO SUBLINE ─── */
.hero-subline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 16px;
}

.hero-subline span {
    font-size: 0.85rem;
    color: rgba(240,244,248,0.75);
}

/* ─── IMAGE PLACEHOLDER ─── */

/* ─── COMPARISON TABLE ─── */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.comparison-table thead th {
    background: var(--card2);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.comparison-table thead th.iptv-col {
    background: var(--red);
    color: #fff;
}

.comparison-table tbody tr { background: var(--card); }

.comparison-table tbody tr:nth-child(even) { background: var(--card2); }

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--white);
}

.comparison-table tbody td.iptv-col {
    background: rgba(230,57,70,0.06);
    color: #22c55e;
    font-weight: 600;
}

/* ─── FAQ ACCORDION ─── */
.faq-accordion {
    margin-top: 52px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-accordion details {
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

.faq-accordion details:last-child { border-bottom: none; }

.faq-accordion summary {
    cursor: pointer;
    padding: 22px 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: background 0.2s;
}

.faq-accordion summary::-webkit-details-marker { display: none; }

.faq-accordion summary:hover { background: var(--card2); }

.faq-accordion summary::after {
    content: '+';
    color: var(--red);
    font-size: 1.6rem;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-accordion .faq-answer {
    padding: 0 28px 24px;
}

.faq-accordion .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
    margin: 0;
}

.faq-accordion .faq-answer a { color: var(--red); }

/* ─── FINAL CTA ─── */
.cta-final {
    background: linear-gradient(160deg, #1a0e10, #0d1117);
    padding: 96px 0;
    text-align: center;
}

.cta-final .cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 16px 0 24px;
    line-height: 1.1;
}

.cta-final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px 0 24px;
}

/* ─── TRUST BADGES ─── */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    justify-content: center;
    margin-top: 20px;
}

.trust-badges span {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ─── AUTO-SCROLLING POSTER ROWS ─── */
.posters-section {
    margin: 64px 0 0;
    position: relative;
    overflow: hidden;
}

.poster-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.poster-row::before,
.poster-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.poster-row::before {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.poster-row::after {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.poster-track {
    display: flex;
    gap: 20px;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

.poster-track.scroll-right {
    animation: scrollRight 40s linear infinite;
}

.poster-track.scroll-left {
    animation: scrollLeft 40s linear infinite;
}

.poster-item {
    flex-shrink: 0;
    width: 200px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.poster-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid var(--border);
    pointer-events: none;
    transition: border-color 0.3s ease;
}

.poster-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(230,57,70,0.3), 0 0 0 1px var(--red-dim);
    z-index: 3;
}

.poster-item:hover::after {
    border-color: var(--red);
}

.poster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scrollRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Pause animation on hover for entire row */
.poster-row:hover .poster-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .poster-item {
        width: 160px;
        height: 240px;
    }
    
    .poster-row::before,
    .poster-row::after {
        width: 60px;
    }
}

/* ─── FLOATING WHATSAPP BUTTON ─── */
.floating-whatsapp-button {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.15);
    z-index: 999;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-whatsapp-button:hover {
    width: 68px;
    height: 68px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.1);
    transform: scale(1.08);
}

.floating-whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.floating-whatsapp-button:hover svg {
    transform: scale(1.15);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.15);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 8px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .floating-whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-button:hover {
        width: 64px;
        height: 64px;
    }
    
    .floating-whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

/* ── Language Switch ───────────────────────────────────────── */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.lang-switch a {
    color: rgba(240,244,248,0.4);
    transition: color 0.2s;
    padding: 3px 1px;
}
.lang-switch a:hover { color: var(--white); }
.lang-switch .lang-active { color: var(--white); }
.lang-switch .lang-sep { color: rgba(240,244,248,0.2); }

