/* =================================================================
   Streamo Pro — main.css  v3  (LIGHT body + BLACK/RED accents)
   ----------------------------------------------------------------
   - Body / content sections     : LIGHT theme
   - Header / hero / footer      : PURE BLACK with red highlights
   - Signature accent            : Vibrant red  (#E10600)
   - Secondary accent            : Deep red     (#8B0000)
   ================================================================= */

:root {
    /* ---- LIGHT palette (page + content sections) ------------- */
    --bg-deep:     #F6F7FA;
    --bg-surface:  #FFFFFF;
    --bg-elevated: #F0F2F7;
    --bg-light:    #F6F7FA;

    /* Immutable "ink" — stays black in every context, used for text
       on top of red accents. */
    --ink:         #0A0A0A;
    --white:       #FFFFFF;

    --surface:     var(--bg-surface);
    --transition:  all .25s ease;

    /* Red family (signature) */
    --accent:        #E10600;      /* vibrant, cinematic red */
    --accent-hover:  #FF1F1F;      /* brighter red for hover */
    --accent-2:      #8B0000;      /* deep red for gradients */
    --accent-soft:   rgba(225, 6, 0, 0.10);
    --accent-tint:   rgba(225, 6, 0, 0.06);

    --danger:      #E10600;
    --success:     #16A34A;

    /* Text (LIGHT scope — near-black on white) */
    --text:        #101014;
    --text-muted-c:#5B5F6B;
    --text-dim:    rgba(16, 16, 20, 0.62);

    --border:        rgba(10, 10, 10, 0.09);
    --border-strong: rgba(10, 10, 10, 0.22);

    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 24px;

    --shadow-sm:   0 2px 8px  rgba(10, 10, 10, 0.05);
    --shadow:      0 14px 44px rgba(10, 10, 10, 0.10);
    --shadow-red:  0 14px 36px rgba(225, 6, 0, 0.22);
    --shadow-glow: 0 0 0 1px var(--accent), 0 10px 34px rgba(225, 6, 0, 0.30);

    --header-h: 76px;

    --font-display: 'Oswald', 'Bebas Neue', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Bootstrap overrides */
    --bs-primary: var(--accent);
    --bs-primary-rgb: 225, 6, 0;
    --bs-body-font-family: var(--font-body);
    --bs-body-color: var(--text);
    --bs-body-bg:    var(--bg-deep);
}

/* -----------------------------------------------------------------
   DARK scope — applied to header, hero and footer.
   Pure black with red highlights.
   ----------------------------------------------------------------- */
.site-header,
.hero,
.site-footer {
    --bg-deep:       #050505;
    --bg-surface:    #101010;
    --bg-elevated:   #1a1a1a;
    --surface:       #101010;

    --text:          #F5F5F5;
    --text-muted-c:  #9a9a9a;
    --text-dim:      rgba(245, 245, 245, 0.62);

    --border:        rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.20);
}

/* ----------------------------------------------------------------
   Base
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-deep);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.15;
    color: var(--text);
}

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; }

::selection { background: var(--accent); color: var(--white); }

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
}
.skip-link:focus { left: 8px; }

/* ----------------------------------------------------------------
   Section utility
   ---------------------------------------------------------------- */
.section { 
    padding: clamp(64px, 8vw, 96px) 0;
        
 }

 
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.95rem);
    margin-bottom: 18px;
}
.section-lead {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 640px;
}
.text-accent { color: var(--accent) !important; }
.text-gold   { color: var(--accent) !important; }
.bg-deep     { background: var(--bg-deep) !important; }
.bg-surface  { background: var(--bg-surface) !important; }

/* ----------------------------------------------------------------
   Buttons - red/black overrides
   ---------------------------------------------------------------- */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 0.78rem 1.5rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn-primary,
.btn.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover,
.btn.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* Dark solid button (secondary CTA on light bg) */
.btn-dark,
.btn.btn-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.btn-dark:hover,
.btn.btn-dark:hover {
    background: #222;
    border-color: #222;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(10, 10, 10, 0.30);
}

/* WhatsApp branded button (green) — used only on explicit CTAs */
.btn-wa,
.btn.btn-wa {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-wa:hover {
    background: #1EBE5A;
    border-color: #1EBE5A;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.btn-gold {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-gold:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
    background: rgba(10, 10, 10, 0.04);
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline-light {
    border: 1px solid var(--border-strong);
    color: var(--text);
    background: transparent;
}
.btn-outline-light:hover {
    background: var(--text);
    color: var(--bg-surface);
}

/* ----------------------------------------------------------------
   Header
   ---------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    /* background: rgba(5, 5, 5, 0.88); */
    /* backdrop-filter: saturate(180%) blur(14px); */
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
    background: rgba(5, 5, 5, 0.94);
    border-bottom-color: rgba(225, 6, 0, 0.35);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.site-header .navbar { min-height: var(--header-h); padding: 0; }

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: 0.02em;
    color: var(--text) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}
.navbar-brand .brand-mark {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(225, 6, 0, 0.35);
}
.navbar-brand .brand-mark i { font-size: 18px; }

.navbar-brand img{
    width: 160px;
}

.site-header .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    padding: 0.55rem 0.95rem !important;
    position: relative;
    opacity: 0.85;
    transition: opacity .2s ease, color .2s ease;
}
.site-header .nav-link::after {
    content: '';
    position: absolute;
    left: 0.95rem; right: 0.95rem;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link.active,
.site-header .current-menu-item > .nav-link {
    opacity: 1;
    color: var(--accent) !important;
}
.site-header .nav-link:hover::after,
.site-header .current-menu-item > .nav-link::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--border-strong);
    padding: 6px 10px;
    margin-right: 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5F5F5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-main {
    /* padding-top: var(--header-h); */
    min-height: 60vh;
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: clamp(580px, 90vh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.hero.is-loaded .hero__bg { transform: scale(1); }

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(10, 1, 1, 0.28), transparent 35%),
        radial-gradient(ellipse at 85% 80%, rgba(0, 0, 0, 0.35), transparent 35%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0.94) 100%);
    z-index: -1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0,
        transparent 3px,
        rgba(255, 255, 255, 0.018) 3px,
        rgba(255, 255, 255, 0.018) 4px
    );
    pointer-events: none;
    z-index: -1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* background: #fff; */
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}
.hero__eyebrow .live-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.7);
    animation: pulse 2s infinite;
}

.hero__title {
    font-size: clamp(2.3rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 900px;
    color: var(--white);
}
.hero__title span { color: var(--accent); }

.hero__subtitle {
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    color: rgba(245, 245, 245, 0.78);
    max-width: 620px;
    margin-bottom: 36px;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust row under CTAs */
.hero__trust {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
}
.hero__trust .stars {
    color: #FFB800;
    letter-spacing: 2px;
}
.hero__trust .dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 700px;
}
.hero__stats .stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    color: var(--white);
    font-weight: 600;
}
.hero__stats .stat span {
    font-size: 0.8rem;
    color: rgba(245, 245, 245, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

@media (max-width: 575.98px) {
    .hero { min-height: 90vh; text-align: left; }
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* Red band below hero showing stats */
.section-hero-streamo {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
    padding: 34px 0;
    position: relative;
    overflow: hidden;
}
.section-hero-streamo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg, transparent 0, transparent 20px,
        rgba(0, 0, 0, 0.06) 20px, rgba(0, 0, 0, 0.06) 21px
    );
    pointer-events: none;
}
.section-hero-streamo .stat strong { color: var(--white); }
.section-hero-streamo .stat span   { color: rgba(255, 255, 255, 0.9); }

/* ----------------------------------------------------------------
   Marquee — trust bar (looks like a channel list scrolling)
   ---------------------------------------------------------------- */
.marquee {
    /* background: var(--ink); */
    color: var(--white);
    padding: 20px 0;
    overflow: hidden;
    /* border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent); */
}
.marquee__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: #000;
    white-space: nowrap;
    transition: .3s;
}

.marquee__item:hover{
    color: var(--accent-hover);

}
/* .marquee__item .bullet {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
} */
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ----------------------------------------------------------------
   Services
   ---------------------------------------------------------------- */
.services { background: var(--bg-deep); }
.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: var(--bg-surface);
    box-shadow: 0 20px 40px rgba(225, 6, 0, 0.10);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.service-card:hover .service-card__icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.06) rotate(-3deg);
}
.service-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-dim);
    margin: 0;
    font-size: 0.95rem;
}

/* ----------------------------------------------------------------
   How it works — 3-step CTA row
   ---------------------------------------------------------------- */
.howto { background: var(--bg-deep); }
.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    counter-reset: step;
    position: relative;
}
@media (max-width: 900px) { .howto-grid { grid-template-columns: 1fr; } }

.howto-step {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 28px 28px;
    position: relative;
    counter-increment: step;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.howto-step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(225, 6, 0, 0.10);
}
.howto-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    opacity: 0.14;
    position: absolute;
    top: 14px; right: 22px;
    transition: opacity .25s ease, transform .25s ease;
}
.howto-step:hover::before {
    opacity: 0.28;
    transform: scale(1.05);
}
.howto-step__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(225, 6, 0, 0.30);
}
.howto-step h3 { font-size: 1.22rem; margin-bottom: 8px; }
.howto-step p  { color: var(--text-dim); margin: 0; font-size: 0.95rem; }

/* ----------------------------------------------------------------
   Payments section — logos + explanation
   ---------------------------------------------------------------- */
.payments {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(225,6,0,0.06), transparent 55%),
        var(--bg-deep);
}
.payments-swiper { padding: 8px 2px 20px; }
.payments-swiper .swiper-slide { width: auto; }

.pay-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    height: 100%;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pay-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(225, 6, 0, 0.10);
}
.pay-card__logo {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}
.pay-card__logo svg {
    max-height: 40px;
    width: auto;
}
.pay-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    text-align: center;
    letter-spacing: 0.02em;
}
.pay-card__hint {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ----------------------------------------------------------------
   Sliders (Swiper)
   ---------------------------------------------------------------- */
/* .slider-block { background: var(--bg-deep); } */
.slider-block + .slider-block { padding-top: 0; }

.slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.slider-head h2 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.slider-head p  { margin: 4px 0 0; color: var(--text-dim); font-size: 0.95rem; }

.slider-nav { display: flex; gap: 10px; }
.slider-nav__btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: var(--shadow-sm);
}
.slider-nav__btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}
.slider-nav__btn:disabled,
.slider-nav__btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.swiper {
    overflow: hidden;
    position: relative;
    padding: 8px 2px 14px;
    margin: 0 -2px;
}

.channels-swiper .swiper-slide { width: 170px; }
@media (max-width: 575px) {
    .channels-swiper .swiper-slide { width: 140px; }
}

.testimonials-swiper .swiper-wrapper { align-items: stretch; }
.testimonials-swiper .swiper-slide   { height: auto; display: flex; }
.testimonials-swiper .swiper-slide > .testimonial-card { width: 100%; }

/* Channel card */
.channel-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 118px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    transition: all .25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.channel-card::after {
    content: 'LIVE';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(225, 6, 0, 0.12);
    border: 1px solid rgba(225, 6, 0, 0.35);
    border-radius: 4px;
    padding: 2px 6px;
    opacity: 0;
    transition: opacity .25s ease;
}
.channel-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: var(--bg-surface);
    box-shadow: 0 14px 30px rgba(225, 6, 0, 0.10);
}
.channel-card:hover::after { opacity: 1; }
.channel-card .channel-icon {
    font-size: 28px;
    color: var(--accent);
    transition: transform .25s ease;
}
.channel-card:hover .channel-icon { transform: scale(1.15); }
.channel-card .channel-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    text-align: center;
}

/* Movie card */
.movie-card {
    background: transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease;
}
.movie-card__poster {
    aspect-ratio: 2 / 3;
    background: var(--bg-surface);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}
.movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.movie-card__poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.85) 100%);
    pointer-events: none;
}
.movie-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 9px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}
.movie-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 60px;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    z-index: 2;
    transform: scale(0.85);
}
.movie-card__play i {
    background: var(--accent);
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 12px 30px rgba(225, 6, 0, 0.50);
}
.movie-card:hover { transform: translateY(-4px); }
.movie-card:hover .movie-card__poster img { transform: scale(1.08); }
.movie-card:hover .movie-card__play { opacity: 1; transform: scale(1); }
.movie-card__meta { padding: 14px 4px 4px; }
.movie-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.movie-card__sub {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}
.movie-card__sub .quality {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.movi{
    height: 160px;
}
/* ----------------------------------------------------------------
   Pricing
   ---------------------------------------------------------------- */
.pricing { background: var(--bg-deep); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 992px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 22px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 22px 44px rgba(225, 6, 0, 0.12);
}
.price-card.is-featured {
    background:
        linear-gradient(180deg, rgba(225, 6, 0, 0.06), var(--bg-surface) 55%);
    border-color: var(--accent);
    box-shadow: 0 24px 60px rgba(225, 6, 0, 0.20);
    transform: translateY(-10px);
}
.price-card.is-featured:hover { transform: translateY(-14px); }
.price-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(225, 6, 0, 0.35);
}
.price-card__name {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 18px;
}
.price-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}
.price-card__price .currency {
    font-size: 1.2rem;
    color: var(--text-dim);
    font-weight: 500;
}
.price-card__price .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1;
}
.price-card__price .period {
    color: var(--text-dim);
    font-size: 0.95rem;
}
.price-card__desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.price-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}
.price-card__features li {
    padding: 10px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}
.price-card__features li:last-child { border-bottom: none; }
.price-card__features li::before {
    content: '\eb80'; /* boxicons bx-check */
    font-family: 'boxicons';
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    /* Fallback if boxicons fails to load */
    background: var(--accent-soft);
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.price-card__features li.is-off { color: var(--text-dim); }

/* ----------------------------------------------------------------
   Testimonials
   ---------------------------------------------------------------- */
.testimonials { background: var(--bg-deep); }
.testimonial-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    height: auto;
    position: relative;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(225, 6, 0, 0.10);
}
.testimonial-card__quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.6;
    color: var(--accent);
    opacity: 0.4;
    margin-bottom: 12px;
}
.testimonial-card__text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: normal;
}
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; color: var(--text); margin: 0 0 2px; }
.testimonial-card__role { font-size: 0.85rem; color: var(--text-dim); margin: 0; }
.testimonial-card__stars {
    color: #FFB800;
    font-size: 0.95rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonials-swiper .swiper-pagination {
    position: static;
    margin-top: 36px;
}
.testimonials-swiper .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(10, 10, 10, 0.30);
    opacity: 0.6;
    transition: all .2s ease;
}
.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.faq { background: var(--bg-deep); }
.faq .accordion { --bs-accordion-bg: transparent; max-width: 820px; margin: 0 auto; }
.faq .accordion-item {
    background: var(--bg-surface);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--accent) !important;
    box-shadow: 0 14px 30px rgba(225, 6, 0, 0.08);
}
.faq .accordion-button {
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.02rem;
    padding: 20px 24px;
    box-shadow: none !important;
}
.faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--accent);
}
.faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E10600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq .accordion-body {
    color: var(--text-dim);
    padding: 0 24px 22px;
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ----------------------------------------------------------------
   CTA
   ---------------------------------------------------------------- */
.cta {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}
.cta__inner {
    background:
        radial-gradient(circle at 0% 0%, rgba(225, 6, 0, 0.16), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(139, 0, 0, 0.22), transparent 55%),
        var(--ink);
    color: var(--white);
    border: 1px solid rgba(225, 6, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: clamp(48px, 6vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg, transparent 0, transparent 3px,
        rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 4px
    );
    pointer-events: none;
}
.cta__inner .section-eyebrow { color: #ff5a5a; }
.cta__title {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    margin-bottom: 14px;
    color: var(--white);
}
.cta__lead { color: rgba(245, 245, 245, 0.78); margin-bottom: 28px; }
.cta__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.cta__inner .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.35); }
.cta__inner .btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--white); border-color: var(--white); }

/* ----------------------------------------------------------------
   Contact page
   ---------------------------------------------------------------- */
.contact-block { background: var(--bg-deep); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 8px; }
.contact-info > p { color: var(--text-dim); margin-bottom: 28px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.contact-item__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin: 0 0 2px;
}
.contact-item__value { color: var(--text); font-weight: 500; margin: 0; word-break: break-word; }
.contact-item__value a { color: var(--text); }
.contact-item__value a:hover { color: var(--accent); }

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.contact-socials a {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--bg-elevated);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .2s ease;
}
.contact-socials a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* Form */
.contact-form {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .contact-form .field-row { grid-template-columns: 1fr; } }

.contact-form .field { display: flex; flex-direction: column; margin-bottom: 18px; }
.contact-form label { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; font-weight: 500; }
.contact-form label .req { color: var(--accent); }
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-form__status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    display: none;
}
.contact-form__status.is-success {
    display: block;
    background: rgba(22, 163, 74, 0.10);
    border: 1px solid var(--success);
    color: var(--success);
}
.contact-form__status.is-error {
    display: block;
    background: rgba(225, 6, 0, 0.08);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
    background: #030303;
    color: var(--text);
    padding-top: 72px;
    padding-bottom: 28px;
    border-top: 3px solid var(--accent);
}
.site-footer h5 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text);
    margin-bottom: 20px;
}
.site-footer p,
.site-footer li,
.site-footer a { color: var(--text-dim); font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 6px 0; }
.site-footer a:hover { color: var(--accent); }

.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--bg-elevated);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .2s ease;
}
.footer-socials a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ----------------------------------------------------------------
   WhatsApp floating button — ROBUST (works even if boxicons fails)
   ----------------------------------------------------------------
   Uses inline SVG (rendered in footer.php) so the icon shape is
   guaranteed to appear on any host — including Namecheap cPanel —
   regardless of whether the boxicons CDN has loaded.
   ---------------------------------------------------------------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    /* Red/black theme with green rim so it still reads as WhatsApp */
    background: #0A0A0A;
    color: #FFFFFF !important;
    border-radius: 50%;
    border: 2px solid #E10600;
    box-shadow: 0 8px 24px rgba(225, 6, 0, 0.45),
                0 2px 6px rgba(0, 0, 0, 0.30);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    /* Fallback: even if the SVG or icon fails, the pill is visible */
    font-size: 30px;
    line-height: 1;
}
.wa-float:hover {
    transform: scale(1.08);
    background: #E10600;
    box-shadow: 0 12px 32px rgba(225, 6, 0, 0.65);
    color: #FFFFFF !important;
}
.wa-float svg {
    width: 32px;
    height: 32px;
    display: block;
    fill: currentColor;
}
.wa-float::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #E10600;
    z-index: -1;
    animation: pulse-red 2.2s ease-out infinite;
}
.wa-float__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #0A0A0A;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(225, 6, 0, 0.4);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.wa-float:hover .wa-float__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
@media (max-width: 575.98px) {
    .wa-float {
        width: 56px; height: 56px; right: 16px; bottom: 82px;
    }
    .wa-float svg { width: 28px; height: 28px; }
    .wa-float__tooltip { display: none; }
}

@keyframes pulse-red {
    0%   { transform: scale(1);   opacity: 0.9; }
    80%  { transform: scale(1.55); opacity: 0;   }
    100% { transform: scale(1.55); opacity: 0;   }
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(225, 6, 0, 0.7); }
    70%  { box-shadow: 0 0 0 14px rgba(225, 6, 0, 0);  }
    100% { box-shadow: 0 0 0 0   rgba(225, 6, 0, 0);  }
}

/* ----------------------------------------------------------------
   Mobile sticky CTA bar (extra CTA the user asked for)
   ---------------------------------------------------------------- */
.mobile-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9980;
    display: none;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 2px solid var(--accent);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
    gap: 8px;
}
.mobile-cta .btn {
    flex: 1;
    padding: 0.7rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
}
.mobile-cta .btn-wa-mobile {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}
.mobile-cta .btn-primary-mobile {
    background: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
}
@media (max-width: 767.98px) {
    .mobile-cta { display: flex; }
    body { padding-bottom: 72px; } /* room for the sticky bar */
}

/* ----------------------------------------------------------------
   Blog / Single / Archive / 404 / Page
   ---------------------------------------------------------------- */
.page-header-section {
    background: var(--bg-surface);
    padding: 80px 0 56px;
    border-bottom: 1px solid var(--border);
}
.page-header-section h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 0; }
.page-header-section .lead { color: var(--text-dim); margin-top: 10px; font-size: 1.05rem; }

.breadcrumb { background: transparent; padding: 0; margin: 0; font-size: 0.85rem; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--text); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-dim); }

.entry-content { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.2em; }
.entry-content a { color: var(--accent); text-decoration: underline; }

.recom-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.recom-card .recom-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.recom-card .recom-item:last-child { border-bottom: none; }
.recom-card .recom-item img {
    width: 70px; height: 70px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.recom-card .recom-item a { color: var(--text); font-weight: 500; font-size: 0.92rem; line-height: 1.4; display: block; margin-bottom: 4px; }
.recom-card .recom-item a:hover { color: var(--accent); }
.recom-card .recom-item .date { font-size: 0.78rem; color: var(--text-dim); }

.pagination { gap: 6px; justify-content: center; margin-top: 32px; }
.pagination .page-numbers,
.pagination .page-link {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all .2s ease;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.error-404 {
    text-align: center;
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.error-404 .error-code {
    font-family: var(--font-display);
    font-size: clamp(7rem, 18vw, 13rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

/* ----------------------------------------------------------------
   Reveal-on-scroll
   ---------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
    .marquee__track { animation: none; }
}

.divider-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border: 0;
    margin: 0;
    opacity: 0.5;
}

/* ----------------------------------------------------------------
   Blog / Archive / Single (light-scoped)
   ---------------------------------------------------------------- */
.page-header {
    padding: 130px 0 60px;
    background:
        radial-gradient(ellipse at top, rgba(225, 6, 0, 0.08), transparent 60%),
        var(--bg-surface);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.page-header .breadcrumb-nav {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 0.9rem; color: var(--text-dim); margin-bottom: 14px;
}
.page-header .breadcrumb-nav a { color: var(--text-dim); }
.page-header .breadcrumb-nav a:hover { color: var(--accent); }
.page-header .breadcrumb-nav .sep { opacity: 0.5; }
.page-header .breadcrumb-nav .current { color: var(--text); }
.page-header .page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 10px;
}
.page-header .page-subtitle { color: var(--text-dim); max-width: 720px; margin: 0; font-size: 1.05rem; }

.archive-main,
.blog-main,
.single-post-main { padding: 70px 0 100px; }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.post-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
}
.post-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(225, 6, 0, 0.10);
}
.post-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-deep);
    position: relative;
}
.post-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__placeholder {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    color: rgba(10, 10, 10, 0.20);
    font-size: 3rem;
    background:
        radial-gradient(ellipse at center, rgba(225, 6, 0, 0.10), transparent 70%),
        var(--bg-deep);
}
.post-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card__cat {
    align-self: flex-start;
    background: rgba(225, 6, 0, 0.12);
    color: var(--accent);
    border: 1px solid rgba(225, 6, 0, 0.30);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-card__title { font-size: 1.2rem; line-height: 1.4; margin: 0; font-weight: 700; }
.post-card__title a { color: var(--text); }
.post-card__title a:hover { color: var(--accent); }
.post-card__excerpt { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; margin: 0; flex: 1; }
.post-card__meta {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    font-size: 0.85rem;
    color: var(--text-dim);
}
.post-card__meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.post-card__more { color: var(--accent); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.post-card__more:hover { gap: 10px; }

.pagination-wrap { margin-top: 50px; display: flex; justify-content: center; }
.pagination-wrap .nav-links { display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pagination-wrap .page-numbers {
    min-width: 42px; height: 42px;
    padding: 0 14px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
}
.pagination-wrap .page-numbers:hover { border-color: var(--accent); color: var(--accent); }
.pagination-wrap .page-numbers.current { background: var(--accent); border-color: var(--accent); color: var(--white); }
.pagination-wrap .page-numbers.dots { background: transparent; border: 0; }

.no-posts {
    text-align: center; padding: 60px 20px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.no-posts i { font-size: 4rem; color: var(--accent); margin-bottom: 16px; display: block; }
.no-posts h2 { font-family: var(--font-display); font-size: 1.8rem; margin: 0 0 10px; }
.no-posts p { color: var(--text-dim); margin: 0 0 24px; }

/* Single post */
.single-wrap { max-width: 820px; margin: 0 auto; }
.single-article .entry-header { margin-bottom: 30px; }
.entry-meta-top { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.entry-cat {
    background: rgba(225, 6, 0, 0.12);
    color: var(--accent);
    border: 1px solid rgba(225, 6, 0, 0.30);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.entry-cat:hover { background: rgba(225, 6, 0, 0.22); color: var(--white); }
.single-article .entry-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.2;
    margin: 0 0 18px;
}
.single-article .entry-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-dim); font-size: 0.9rem; }
.single-article .entry-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.single-article .entry-meta i { color: var(--accent); }

.entry-thumb { margin: 30px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.entry-thumb img { width: 100%; height: auto; display: block; }

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: var(--font-display);
    margin-top: 1.8em; margin-bottom: 0.6em;
    line-height: 1.3;
}
.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.4rem; }
.entry-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 14px 20px;
    margin: 1.5em 0;
    background: rgba(225, 6, 0, 0.05);
    border-radius: 0 10px 10px 0;
    color: var(--text);
    font-style: italic;
}
.entry-content img { max-width: 100%; height: auto; border-radius: 10px; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content code {
    background: rgba(10, 10, 10, 0.06);
    color: var(--text);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.9em;
}

.entry-tags {
    margin-top: 36px; padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
}
.entry-tags .tags-label { display: inline-flex; align-items: center; gap: 6px; color: var(--text-dim); font-size: 0.9rem; margin-right: 6px; }
.tag-link {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    transition: var(--transition);
}
.tag-link:hover { border-color: var(--accent); color: var(--accent); }

.entry-footer { margin-top: 40px; }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav-link {
    display: flex; flex-direction: column; gap: 6px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    transition: var(--transition);
}
.post-nav-link.next { text-align: right; align-items: flex-end; }
.post-nav-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.post-nav-label {
    font-size: 0.8rem; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 4px;
}
.post-nav-title { font-weight: 600; font-size: 0.95rem; }

/* ----------------------------------------------------------------
   Streamo custom
   ---------------------------------------------------------------- */
.container-streamo {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-swiper {
    width: 100%;
    padding: 10px 30px 55px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.testimonial-review-image {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(10, 10, 10, 0.10);
}
.testimonial-review-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
}

@media (max-width: 600px) {
    .post-nav { grid-template-columns: 1fr; }
    .post-nav-link.next { text-align: left; align-items: flex-start; }
}

/* Comments */
.comments-area { margin-top: 60px; max-width: 820px; margin-left: auto; margin-right: auto; }
.comments-title { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 24px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 30px; }
.comment-body {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}
.comment-author { font-weight: 700; color: var(--text); }
.comment-metadata { font-size: 0.85rem; color: var(--text-dim); margin: 4px 0 10px; }
.comment-content { color: var(--text-dim); line-height: 1.7; }
.comment-respond {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.comment-form label { display: block; margin-bottom: 6px; color: var(--text-dim); font-size: 0.9rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    margin-bottom: 14px;
    font-family: inherit;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.15);
}

.search-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.search-form .search-field {
    flex: 1; padding: 12px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
}
.search-form .search-field:focus { outline: none; border-color: var(--accent); }
.search-form .search-submit {
    padding: 12px 20px;
    background: var(--accent);
    color: var(--white);
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.search-form .search-submit:hover { background: var(--accent-hover); }
