/*
 * Jio OTT Pass – Premium Stylesheet
 * Theme: Brand Red #E91D24 | Premium Purple #4C2A7A | Deep Purple #2F1A4D | Gold #D4A84F
 * Covers: Homepage (index.php) + Releases blog (releases.php) + Admin
 */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
══════════════════════════════════════════════════════════════ */
:root {
    /* Brand colours */
    --red:          #E91D24;
    --red-dark:     #b51018;
    --purple:       #4C2A7A;
    --purple-dark:  #2F1A4D;
    --purple-light: #6B46C1;
    --gold:         #D4A84F;
    --gold-light:   #f0d080;

    /* Neutral / UI */
    --white:        #FFFFFF;
    --bg-light:     #F7F8FA;
    --bg-section:   #F0F2F7;
    --text-dark:    #1F2937;
    --text-mid:     #4B5563;
    --text-muted:   #9CA3AF;
    --border:       #E5E7EB;
    --success:      #16A34A;

    /* Gradients */
    --grad-hero:    linear-gradient(135deg, #2F1A4D 0%, #4C2A7A 55%, #E91D24 100%);
    --grad-card:    linear-gradient(145deg, #1a0a2e 0%, #2d1654 100%);
    --grad-cta:     linear-gradient(135deg, #4C2A7A 0%, #6B46C1 50%, #E91D24 100%);
    --grad-purple:  linear-gradient(135deg, #2F1A4D 0%, #4C2A7A 100%);

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
    --shadow-md:    0 8px 30px rgba(0,0,0,.10);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
    --shadow-gold:  0 0 30px rgba(212,168,79,.35);
    --shadow-red:   0 8px 30px rgba(233,29,36,.3);
    --shadow-purple:0 8px 30px rgba(76,42,122,.35);

    /* Spacing / radii */
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;

    /* Transition */
    --ease:         cubic-bezier(.4,0,.2,1);
    --trans:        all .3s var(--ease);

    /* Blog legacy vars (releases.php) */
    --jio-blue:         #4C2A7A;
    --jio-blue-dark:    #2F1A4D;
    --jio-blue-hover:   #6B46C1;
    --jio-gold:         #D4A84F;
    --bg-primary:       #F7F8FA;
    --bg-secondary:     #FFFFFF;
    --bg-tertiary:      #F0F2F7;
    --text-primary:     #1F2937;
    --text-secondary:   #4B5563;
    --border-color:     #E5E7EB;
    --card-shadow:      0 8px 30px rgba(0,0,0,.08);
    --transition-smooth:all .3s cubic-bezier(.4,0,.2,1);
    --col-netflix:      #e50914;
    --col-jiohotstar:   #00b0ff;
    --col-prime:        #00a8e1;
    --col-sonyliv:      #ff6d00;
    --col-zee5:         #d500f9;
    --col-default:      #8e8e93;
}

/* ══════════════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--purple);
    text-decoration: none;
    transition: var(--trans);
}
a:hover { color: var(--red); text-decoration: none; }

img, svg { display: block; max-width: 100%; }

ul { list-style: none; }

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

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .65s var(--ease), transform .65s var(--ease);
    transition-delay: var(--vd, 0s);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ══════════════════════════════════════════════════════════════
   SECTION HEADERS (shared)
══════════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    background: rgba(233,29,36,.08);
    padding: 4px 16px;
    border-radius: 20px;
}
.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 14px 0;
    transition: var(--trans);
}
.site-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.logo-link { display: flex; align-items: center; }
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.3px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}
.nav-links a {
    color: var(--text-mid);
    font-size: 15px;
    font-weight: 500;
}
.nav-links a:hover,
.nav-links a.nav-active {
    color: var(--purple);
    font-weight: 700;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-nav-cta {
    background: var(--grad-cta);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-red);
    transition: var(--trans);
}
.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 35px rgba(233,29,36,.4);
}
.btn-admin-login {
    color: var(--text-mid) !important;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--trans);
}
.btn-admin-login:hover {
    border-color: var(--purple);
    color: var(--purple) !important;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--trans);
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    background: var(--grad-hero);
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* Subtle radial glow on top-right */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(233,29,36,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,168,79,.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT TEXT */
.hero-content { flex: 1 1 55%; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.95);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 24px;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}
.badge-icon { font-size: 15px; }

.hero-title {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-title-highlight {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero-desc strong { color: var(--white); }

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red), #ff3f46);
    color: var(--white) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(233,29,36,.45);
    transition: var(--trans);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(233,29,36,.55);
}
.btn-icon { font-size: 18px; }

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.35);
    color: var(--white) !important;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: var(--trans);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat { text-align: center; }
.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.2);
}

/* ─── RIGHT: Card + floating icons ─── */
.hero-visual { flex: 1 1 42%; display: flex; justify-content: center; }

.floating-icons-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating platform badges */
.float-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--fib);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.35);
    z-index: 1;
    animation: floatBob 4s ease-in-out infinite;
}
.fi-1 { top:  6%; left:  0%;  animation-delay: 0.0s; }
.fi-2 { top: 12%; right: -2%; animation-delay: 0.6s; }
.fi-3 { top: 38%; left: -6%; animation-delay: 1.1s; }
.fi-4 { top: 64%; left:  2%; animation-delay: 0.3s; }
.fi-5 { bottom: 10%; left: 12%; animation-delay: 0.9s; }
.fi-6 { top: 60%; right:-4%; animation-delay: 1.5s; }
.fi-7 { bottom: 18%; right: 2%; animation-delay: 0.5s; }

@keyframes floatBob {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-10px) rotate(2deg); }
    66%      { transform: translateY(5px) rotate(-1deg); }
}

/* ─── Premium OTT Pass Card ─── */
.hero-pass-card {
    position: relative;
    z-index: 10;
    width: 310px;
    border-radius: var(--radius-lg);
    background: var(--grad-card);
    /* Gold border via pseudo-element */
    padding: 3px;
    box-shadow: 0 0 0 1px rgba(212,168,79,.5),
                0 30px 80px rgba(0,0,0,.5),
                var(--shadow-gold);
    animation: cardPulse 5s ease-in-out infinite;
}
@keyframes cardPulse {
    0%,100% { box-shadow: 0 0 0 1px rgba(212,168,79,.5), 0 30px 80px rgba(0,0,0,.5), 0 0 30px rgba(212,168,79,.35); }
    50%      { box-shadow: 0 0 0 2px rgba(212,168,79,.8), 0 30px 80px rgba(0,0,0,.5), 0 0 50px rgba(212,168,79,.55); }
}

.hpc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 24px 22px 0;
}
.hpc-jio-badge { display: block; }
.hpc-premium-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.hpc-body {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 0 22px 16px;
}

.hpc-left { flex: 1; }
.hpc-main-title {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.hpc-sub {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    margin-bottom: 14px;
}
.hpc-platform-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.hpc-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .3px;
}
.hpc-tv-note {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    line-height: 1.4;
}

.hpc-right {
    background: var(--white);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
    min-width: 110px;
}
.hpc-old-price {
    font-size: 14px;
    color: #999;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
}
.hpc-old-price del { color: #aaa; }
.hpc-worth {
    font-size: 9px;
    color: #999;
    margin-bottom: 6px;
}
.hpc-divider-line {
    font-size: 9px;
    color: #bbb;
    margin-bottom: 6px;
}
.hpc-new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 3px;
}
.hpc-currency {
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    margin-top: 6px;
}
.hpc-amount {
    font-size: 44px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}
.hpc-per {
    font-size: 10px;
    color: #777;
}

.hpc-data-band {
    background: #0073e6;
    border-radius: 0 0 calc(var(--radius-lg) - 3px) calc(var(--radius-lg) - 3px);
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 10px 22px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}
.hpc-band-sep { opacity: .6; }

/* ══════════════════════════════════════════════════════════════
   VALUE PROPOSITION
══════════════════════════════════════════════════════════════ */
.value-section {
    padding: 100px 0;
    background: var(--white);
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.value-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    transition-delay: var(--vd, 0s);
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--vic, var(--red));
    border-radius: 4px 4px 0 0;
    transition: var(--trans);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.value-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--vic) 12%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transition: var(--trans);
}
.value-card:hover .value-icon-wrap {
    background: var(--vic, var(--red));
}
.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.value-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   OTT PLATFORMS GRID
══════════════════════════════════════════════════════════════ */
.platforms-section {
    padding: 100px 0;
    background: var(--bg-section);
}
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.platform-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 16px 22px;
    cursor: default;
    transition: var(--trans);
    transition-delay: var(--pd, 0s);
}
.platform-tile:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(76,42,122,.18);
}
.platform-tile-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: .5px;
    box-shadow: 0 6px 20px rgba(0,0,0,.22);
    transition: var(--trans);
    overflow: hidden;
}
/* Logo variant – white bg, clean border, image inside */
.platform-tile-logo {
    background: var(--white) !important;
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
    padding: 10px;
}
.platform-tile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: var(--trans);
}
.platform-tile:hover .platform-tile-icon {
    transform: scale(1.1) rotate(-4deg);
}
.platform-tile:hover .platform-tile-logo {
    box-shadow: 0 10px 28px rgba(76,42,122,.2);
    border-color: rgba(76,42,122,.25);
}
.platform-tile-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════════════════════════ */
.pricing-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.pricing-section-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-purple);
    z-index: 0;
}
.pricing-section > .container { position: relative; z-index: 1; }
.pricing-section > .container .section-header { color: var(--white); }

.pricing-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 880px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--trans);
    transition-delay: var(--vd, 0s);
}
.pricing-card:hover { transform: translateY(-6px); }

.pricing-card-main {
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold), var(--shadow-lg);
}
.pricing-card-alt {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    backdrop-filter: blur(12px);
}

.pricing-glow {
    position: absolute;
    width: 200px; height: 200px;
    top: -60px; right: -60px;
    background: radial-gradient(circle, rgba(212,168,79,.3), transparent 70%);
    pointer-events: none;
}
.pricing-popular-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #4a2800;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: .5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    align-self: flex-start;
}
.pricing-plan-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -.3px;
}
.pricing-card-alt .pricing-plan-name { color: var(--white); }

.pricing-amount-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 8px;
    line-height: 1;
}
.pricing-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}
.pricing-card-alt .pricing-currency { color: var(--gold); }
.pricing-price {
    font-size: 68px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    letter-spacing: -2px;
}
.pricing-card-alt .pricing-price { color: var(--gold); }
.pricing-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 12px;
}
.pricing-card-alt .pricing-period { color: rgba(255,255,255,.65); }

.pricing-worth {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.pricing-card-alt .pricing-worth { color: rgba(255,255,255,.55); }
.pricing-worth del { color: var(--red); font-weight: 600; }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
}
.pricing-card-alt .pricing-features li { color: rgba(255,255,255,.8); }

.pf-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(76,42,122,.1);
    color: var(--purple);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    margin-top: 1px;
}
.pf-green { background: rgba(22,163,74,.12); color: var(--success); }
.pricing-card-alt .pf-check {
    background: rgba(255,255,255,.15);
    color: var(--gold);
}

.btn-pricing-activate {
    display: block;
    text-align: center;
    background: var(--grad-cta);
    color: var(--white) !important;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-red);
    transition: var(--trans);
    margin-bottom: 16px;
}
.btn-pricing-activate:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 45px rgba(233,29,36,.45);
}
.btn-alt {
    background: rgba(255,255,255,.15) !important;
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.35) !important;
    box-shadow: none !important;
}
.btn-alt:hover {
    background: rgba(255,255,255,.25) !important;
}
.pricing-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}
.pricing-card-alt .pricing-note { color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════
   SAVINGS COMPARISON
══════════════════════════════════════════════════════════════ */
.savings-section {
    padding: 100px 0;
    background: var(--white);
}
.savings-comparison {
    display: flex;
    gap: 20px;
    align-items: stretch;
}
.savings-col {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}
.savings-col-head {
    padding: 20px 28px;
    font-size: 15px;
    font-weight: 700;
}
.savings-head-bad {
    background: #fff3f3;
    color: var(--red);
    border-bottom: 2px solid rgba(233,29,36,.12);
}
.savings-head-good {
    background: #f0fdf4;
    color: var(--success);
    border-bottom: 2px solid rgba(22,163,74,.15);
}

.savings-list { padding: 8px 0; }
.savings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.savings-row:last-child { border-bottom: none; }
.sv-name { color: var(--text-mid); }
.sv-price {
    font-weight: 700;
    color: var(--text-dark);
}
.sv-more { background: var(--bg-light); }
.sv-incl .sv-name { color: var(--text-mid); }
.sv-badge {
    background: rgba(22,163,74,.1);
    color: var(--success);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
}

.savings-total {
    padding: 18px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}
.savings-total-bad {
    background: #fff3f3;
    color: var(--text-dark);
    border-top: 2px solid rgba(233,29,36,.12);
}
.savings-total-bad .sv-total-amount { color: var(--red); font-size: 20px; }
.savings-total-good {
    background: #f0fdf4;
    color: var(--text-dark);
    border-top: 2px solid rgba(22,163,74,.15);
}
.savings-total-good .sv-total-amount { color: var(--success); font-size: 22px; }

/* Centre VS column */
.savings-vs-col {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.savings-vs-badge {
    width: 52px; height: 52px;
    background: var(--grad-hero);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    box-shadow: var(--shadow-purple);
}
.savings-arrow-down { font-size: 22px; color: var(--text-muted); }
.savings-you-save-bubble {
    background: var(--grad-cta);
    border-radius: var(--radius-md);
    padding: 16px 14px;
    text-align: center;
    box-shadow: var(--shadow-red);
}
.sys-label { display: block; font-size: 11px; color: rgba(255,255,255,.7); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.sys-amount { display: block; font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.sys-sub { display: block; font-size: 11px; color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.how-section {
    padding: 100px 0;
    background: var(--bg-section);
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line between steps */
.how-steps::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5%);
    right: calc(12.5%);
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--purple), var(--red));
    z-index: 0;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    transition-delay: var(--vd, 0s);
}
.how-step-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--grad-cta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: var(--shadow-red);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.how-step-emoji {
    font-size: 32px;
    margin-bottom: 16px;
}
.how-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.how-step p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background: var(--purple-dark);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(233,29,36,.1) 0%, transparent 70%);
    pointer-events: none;
}
.testimonials-section .section-header { color: var(--white); }
.testimonials-section .section-eyebrow { color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.testimonials-section .section-title { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    transition: var(--trans);
    transition-delay: var(--vd, 0s);
}
.testimonial-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--grad-cta);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-meta strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.testimonial-meta span {
    font-size: 12px;
    color: rgba(255,255,255,.5);
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════════ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}
.faq-wrapper {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--trans);
}
.faq-item:hover { border-color: var(--purple); }
.faq-item.active {
    border-color: var(--purple);
    box-shadow: 0 4px 20px rgba(76,42,122,.12);
}
.faq-question {
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--purple);
    flex-shrink: 0;
    transition: var(--trans);
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-item.active .faq-question { color: var(--purple); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
    padding: 0 28px;
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 24px;
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA BANNER
══════════════════════════════════════════════════════════════ */
.final-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}
.final-cta-bg {
    position: absolute;
    inset: 0;
    background: var(--grad-cta);
    z-index: 0;
}
.final-cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,168,79,.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.final-cta-inner {
    position: relative;
    z-index: 2;
}
.final-cta-icon-lg {
    font-size: 60px;
    margin-bottom: 24px;
    animation: floatBob 3s ease-in-out infinite;
}
.final-cta-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}
.final-cta-desc {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.65;
}
.final-cta-desc strong { color: var(--gold); }
.btn-final-cta {
    display: inline-block;
    background: var(--white);
    color: var(--red) !important;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
    transition: var(--trans);
    letter-spacing: -.2px;
}
.btn-final-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    background: var(--bg-light);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.consumer-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 32px 0 20px;
    font-size: 14px;
    color: var(--text-mid);
}
.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}
.footer-simple-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.footer-simple-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-simple-links a {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
}
.footer-simple-links a:hover { color: var(--purple); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom a { color: var(--purple); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   RELEASES PAGE – BLOG / SIDEBAR STYLES (preserved)
══════════════════════════════════════════════════════════════ */
/* Two-column layout */
.blog-two-column-layout {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    align-items: flex-start;
}
.blog-main-content {
    width: 70%;
    flex-shrink: 0;
}
.blog-article {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}
.blog-breadcrumbs {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
}
.blog-breadcrumbs a { color: var(--text-secondary); }
.blog-breadcrumbs .separator { opacity: .5; }
.blog-title-h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--jio-blue-dark);
}
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.blog-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-secondary);
}
.blog-content p.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}
.blog-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--jio-blue-dark);
}
.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 40px 0;
}

/* Platform badges */
.platform-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    background: #6b7280; /* Default fallback gray */
}
.platform-badge.netflix    { background: var(--col-netflix); }
.platform-badge.jiohotstar { background: var(--col-jiohotstar); }
.platform-badge.amazon     { background: var(--col-prime); }
.platform-badge.sonyliv    { background: var(--col-sonyliv); }
.platform-badge.zee5       { background: var(--col-zee5); }
.platform-badge.default    { background: var(--col-default); }

/* Overview / detail tables */
.blog-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}
.blog-overview-table,
.blog-detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}
.blog-overview-table th, .blog-overview-table td,
.blog-detail-table  th, .blog-detail-table  td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-color);
}
.blog-overview-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .5px;
}
.blog-overview-table tbody tr:last-child td,
.blog-detail-table  tbody tr:last-child td { border-bottom: none; }
.blog-overview-table tbody tr:hover { background: var(--bg-tertiary); }
.blog-detail-table td:first-child {
    width: 160px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-tertiary);
}
.blog-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}
.blog-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

/* Sticky sidebar */
.blog-sidebar {
    width: 30%;
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--jio-blue-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.sidebar-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--jio-blue);
}
.sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(10,16,32,.08);
}
.sidebar-card.premium { border-top-color: var(--jio-gold); }
.sidebar-card-price {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.sidebar-card-price span { font-size: 16px; font-weight: 500; color: var(--text-secondary); }
.sidebar-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--jio-blue-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.sidebar-card-benefits {
    list-style: none;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.sidebar-card-benefits li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.sidebar-card-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--jio-blue);
    font-weight: 700;
}
.btn-sidebar-buy {
    width: 100%;
    background: var(--jio-blue);
    color: #fff;
    border: none;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    display: block;
    transition: var(--transition-smooth);
}
.btn-sidebar-buy:hover { background: var(--jio-blue-hover); }

/* Releases hero */
.hero-section.releases-hero {
    background: var(--grad-purple);
    min-height: auto;
    padding: 60px 0 40px;
}

/* ══════════════════════════════════════════════════════════════
   ADMIN PAGES – shared nav override
══════════════════════════════════════════════════════════════ */
.page-home .site-header { background: rgba(255,255,255,.92); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* ── 1200px and below ── */
@media (max-width: 1200px) {
    .value-grid       { grid-template-columns: repeat(2,1fr); }
    .platforms-grid   { grid-template-columns: repeat(4,1fr); }
    .how-steps        { grid-template-columns: repeat(2,1fr); gap: 40px; }
    .how-steps::after { display: none; }
}

/* ── 992px and below ── */
@media (max-width: 992px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-content { flex: none; width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { flex: none; width: 100%; }
    .floating-icons-wrapper { min-height: 360px; }

    .pricing-cards-row { grid-template-columns: 1fr; max-width: 500px; }
    .savings-comparison { flex-direction: column; }
    .savings-vs-col { flex-direction: row; flex: none; width: 100%; justify-content: center; }
    .savings-arrow-down { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    /* Blog two-col collapses */
    .blog-two-column-layout { flex-direction: column; }
    .blog-main-content { width: 100%; }
    .blog-sidebar      { width: 100%; position: static; }
}

/* ── 768px and below ── */
@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 24px; flex-direction: column; gap: 24px; box-shadow: var(--shadow-lg); z-index: 199; }
    .main-nav.open { display: flex; }
    .nav-links { flex-direction: column; gap: 16px; }
    .header-actions { flex-direction: column; gap: 10px; width: 100%; }
    .btn-nav-cta, .btn-admin-login { text-align: center; }
    .mobile-menu-toggle { display: flex; }

    .value-grid       { grid-template-columns: 1fr; }
    .platforms-grid   { grid-template-columns: repeat(3,1fr); }
    .how-steps        { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .hero-pass-card { width: 280px; }
    .fi-1,.fi-2,.fi-3,.fi-4,.fi-5,.fi-6,.fi-7 { width: 42px; height: 42px; font-size: 10px; }

    .section-title  { font-size: 26px; }
    .final-cta-title { font-size: 26px; }

    .blog-article { padding: 24px 20px; }
    .blog-title-h1 { font-size: 26px; }
}

/* ── 480px and below ── */
@media (max-width: 480px) {
    .platforms-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
    .hero-title { font-size: 36px; }
    .pricing-card { padding: 32px 24px; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 22px; }
    .hero-badge { font-size: 12px; }
    .btn-hero-primary, .btn-hero-secondary { font-size: 15px; padding: 14px 26px; }
    .floating-icons-wrapper { min-height: 300px; }
}

/* ══════════════════════════════════════════════════════════════
   RELEASES PAGE – ALL SPECIFIC COMPONENT STYLES
══════════════════════════════════════════════════════════════ */

/* ── Breadcrumb bar ── */
.breadcrumb-bar {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
    padding: 11px 0;
}
.blog-breadcrumbs-new {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.blog-breadcrumbs-new a {
    color: var(--purple);
    font-weight: 500;
    transition: var(--trans);
}
.blog-breadcrumbs-new a:hover { color: var(--red); text-decoration: none; }
.bc-sep { color: var(--text-muted); }

/* ── Blog page layout ── */
.blog-page-container { padding-bottom: 60px; }
.blog-two-column-layout { padding-top: 32px; }

/* ── Blog article (new) ── */
.blog-article-new {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ── Article top section ── */
.article-top-section {
    padding: 36px 40px 28px;
    border-bottom: 1px solid var(--border);
}

/* ── Quick Bytes badge ── */
.quick-bytes-badge {
    display: inline-block;
    background: rgba(76,42,122,.1);
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

/* blog-title-h1 already defined, ensure correct colour */
.blog-article-new .blog-title-h1 {
    font-size: 30px;
    color: var(--text-dark);
    margin-bottom: 18px;
}

/* ── Blog meta row (date + share icons – HORIZONTAL) ── */
.blog-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.published-date {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* ── Social share row – horizontal ── */
.social-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.share-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: var(--trans);
    color: var(--text-mid);
    text-decoration: none !important;
    flex-shrink: 0;
}
.share-icon-btn:hover { transform: translateY(-2px); border-color: transparent; }
.x-icon:hover  { background: #000; color: #fff; }
.li-icon:hover { background: #0077B5; color: #fff; }
.wa-icon:hover { background: #25D366; color: #fff; }
.fb-icon:hover { background: #1877F2; color: #fff; }
.copy-icon:hover { background: var(--purple); color: #fff; }

/* ═══════════════════════════════════════════════════════
   TOP 5 CINEMATIC POSTER BANNER
═══════════════════════════════════════════════════════ */
.top5-banner {
    position: relative;
    background: linear-gradient(160deg, #0d0418 0%, #1a0a2e 50%, #0d0418 100%);
    padding: 44px 32px 36px;
    overflow: hidden;
}
.top5-banner-bg-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 90%, rgba(233,29,36,.15) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 15% 20%, rgba(76,42,122,.25) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}
.top5-banner-glow {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 110px;
    background: linear-gradient(to top, rgba(13,4,24,.85), transparent);
    pointer-events: none;
    z-index: 1;
}
.top5-posters-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 4px;
}

/* Each poster card */
.top5-poster {
    position: relative;
    flex: 0 0 auto;
    cursor: default;
    transition: transform .35s var(--ease), z-index 0s;
}

/* Cinematic arc layout */
.poster-pos-1 { transform: rotate(-7deg) translateY(14px); }
.poster-pos-2 { transform: rotate(-3.5deg) translateY(6px); }
.poster-pos-3 { transform: rotate(0deg) translateY(0px); }
.poster-pos-4 { transform: rotate(3.5deg) translateY(6px); }
.poster-pos-5 { transform: rotate(7deg) translateY(14px); }

.top5-poster:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.07) !important;
    z-index: 20;
}

.poster-art {
    width: 120px;
    height: 178px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255,255,255,.18);
    box-shadow: 0 14px 45px rgba(0,0,0,.65);
    background: linear-gradient(160deg, #2d1654, #0d0418); /* fallback */
}
.poster-uploaded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.poster-pf-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: .4px;
    z-index: 3;
    max-width: calc(100% - 16px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.poster-inner-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
    padding: 32px 10px 10px;
    z-index: 2;
}
.poster-title-txt {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.poster-genre-txt {
    font-size: 9px;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .5px;
}
/* Large background number */
.poster-num {
    position: absolute;
    bottom: -10px;
    left: 4px;
    font-size: 58px;
    font-weight: 900;
    color: rgba(255,255,255,.12);
    line-height: 1;
    user-select: none;
    font-style: italic;
    z-index: 1;
    -webkit-text-stroke: 1.5px rgba(255,255,255,.18);
}

/* ── Blog content (body text area) ── */
.blog-content-new {
    padding: 36px 40px 24px;
}
.blog-content-new p {
    font-size: 15px;
    color: var(--text-mid);
    margin-bottom: 18px;
    line-height: 1.8;
}
.blog-content-new .lead-text {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.75;
}
.blog-content-new h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 36px 0 18px;
    letter-spacing: -.3px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-section);
}

/* Detailed release sections */
.blog-releases-detailed { padding: 0 40px 40px; }
.detailed-release-section { padding-bottom: 8px; }
.detailed-release-section > h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 14px;
}
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0 28px;
}

/* ═══════════════════════════════════════════════════════
   SIDEBAR PLAN CARDS (new premium design)
═══════════════════════════════════════════════════════ */
.blog-sidebar { top: 82px; }

.plan-card-new {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(76,42,122,.1), 0 1px 4px rgba(0,0,0,.06);
    transition: var(--trans);
}
.plan-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(76,42,122,.18), 0 2px 8px rgba(0,0,0,.08);
    border-color: rgba(76,42,122,.25);
}

/* Top badge strip */
.plan-top-badge {
    padding: 10px 20px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
    line-height: 1.4;
}
.badge-yellow {
    background: linear-gradient(90deg, #c87800, #e8a000, #D4A84F);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.badge-green {
    background: linear-gradient(90deg, #0d7a36, #16A34A, #22c55e);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,.2);
}

/* Inner padding */
.plan-card-inner { padding: 20px 20px 18px; }

/* ── Header row: name/price | meta/buy ── */
.plan-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
}

.plan-name-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--purple-dark);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.plan-price-large {
    display: flex;
    align-items: flex-start;
    gap: 1px;
    line-height: 1;
}
.plan-rupee {
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
    margin-top: 8px;
    flex-shrink: 0;
}
.plan-price-num {
    font-size: 64px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -3px;
    line-height: 1;
}
/* keep old selector as fallback so nothing else breaks */
.plan-price-large span:not(.plan-rupee):not(.plan-price-num) {
    font-size: 64px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -3px;
    line-height: 1;
}

.plan-meta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.plan-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.plan-meta-cell {
    background: linear-gradient(135deg, #f0f4ff, #e8eeff);
    border: 1px solid rgba(76,42,122,.1);
    border-radius: 10px;
    padding: 8px 10px;
    text-align: center;
    min-width: 58px;
}
.plan-meta-cell strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--purple-dark);
    line-height: 1.2;
    letter-spacing: -.3px;
}
.plan-meta-cell span {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-top: 2px;
    display: block;
}

/* Buy / Activate button – now an anchor */
.btn-buy-pill {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, var(--red) 0%, #ff3f46 100%);
    color: var(--white) !important;
    border: none;
    padding: 9px 18px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(233,29,36,.35);
    transition: var(--trans);
    white-space: nowrap;
    letter-spacing: .3px;
    text-decoration: none !important;
}
.btn-buy-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233,29,36,.45);
}

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

/* ── Platform logos section ── */
.plan-logos-section { margin-bottom: 14px; }
.plan-logos-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.plan-logos-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* Individual logo tile */
.plan-logo-tile {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
    padding: 5px;
    transition: var(--trans);
    flex-shrink: 0;
}
.plan-logo-tile:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.14);
    border-color: rgba(76,42,122,.2);
}
.plan-logo-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* "+N more" counter tile */
.plan-logo-more {
    background: var(--bg-section);
    color: var(--text-mid);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: -.3px;
    border-color: var(--border);
    padding: 0;
}
.plan-logo-more:hover { transform: none; box-shadow: none; }

/* Benefit bullets */
.plan-benefit-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 12px;
}
.plan-benefit-bullets li {
    font-size: 12.5px;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}
.plan-benefit-bullets li::before {
    content: '✓';
    color: var(--success);
    font-weight: 800;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(22,163,74,.1);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}
.plan-see-more {
    font-size: 12px;
    color: var(--purple);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--trans);
}
.plan-see-more:hover { color: var(--red); text-decoration: none; gap: 8px; }


/* ── How to Watch section ── */
.how-to-watch-section {
    padding: 80px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
}
.watch-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}
.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple);
}
.step-number {
    font-size: 46px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--purple);
    opacity: .35;
    line-height: 1;
    margin-bottom: 14px;
}
.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.step-card p {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ── Releases-page responsive overrides ── */
@media (max-width: 768px) {
    .article-top-section   { padding: 24px 22px 20px; }
    .blog-content-new      { padding: 24px 22px 16px; }
    .blog-releases-detailed { padding: 0 22px 32px; }
    .top5-posters-wrap     { gap: 8px; }
    .poster-art            { width: 90px; height: 136px; }
    .poster-num            { font-size: 40px; }
    .poster-pos-1          { transform: rotate(-5deg) translateY(10px); }
    .poster-pos-5          { transform: rotate(5deg) translateY(10px); }
    .blog-meta-row         { flex-direction: column; align-items: flex-start; gap: 12px; }
    .watch-steps           { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .top5-posters-wrap     { gap: 5px; overflow-x: auto; padding-bottom: 8px; justify-content: flex-start; }
    .poster-pos-1,.poster-pos-2,.poster-pos-3,.poster-pos-4,.poster-pos-5 {
        transform: none !important;
    }
    .poster-art { width: 100px; height: 148px; }
    .plan-price-large span:not(.plan-rupee) { font-size: 32px; }
}
