/* ------------------------------------------------ */
/*                HAKUNATV GLOBAL STYLES            */
/* ------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:bestiptv4k.4k@gmail.com;700;900&family=Inter:bestiptv4k.4k@gmail.com;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:bestiptv4k.4k@gmail.com;700;800;900&family=Montserrat:bestiptv4k.4k@gmail.com;700;900&display=swap');

:root{
  --primary-dark:#000000;
  --primary-red:#DD0000;
  --primary-yellow:#FFCE00;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --card:#0f0f10;
  --card2:#131315;
  --stroke:rgba(255,255,255,.12);
  --germany-gradient: linear-gradient(90deg, var(--primary-dark), var(--primary-red), var(--primary-yellow));
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden !important;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--light-text);
    line-height: 1.5;
}

/* ------------------------------------------------ */
/*                   NAVIGATION BAR                 */
/* ------------------------------------------------ */
/* ---------------------- */
/*   TRANSPARENT HEADER   */
/* ---------------------- */

.vortex-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.vortex-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0));
    z-index: -1;
}

.nav-container {
    max-width: 1650px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;      /* keeps everything vertically aligned */
    justify-content: space-between;
    white-space: nowrap;      /* 🔥 forces everything to stay on ONE LINE */
}


.nav-logo {
    margin-right: 40px; /* 🔥 cleaner spacing */
}

.nav-logo img {
    height: 50px;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0 auto;
    padding: 0;
}
.nav-menu li {
    margin: 0 12px;
}


.nav-menu li:first-child {
    margin-left: 0;
}

.nav-menu li:last-child {
    margin-right: 0;
}

.nav-menu li a {
    color: #fff;                /* FIX PURPLE LINKS */
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    position: relative;         /* FIX UNDERLINE ISSUE */
    padding-top: 4px;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

/* UNDERLINE */
.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 3px;
    background: #E50914;
    transition: width .35s ease;
    border-radius: 2px;
}

/* Hover expands underline */
.nav-menu li a:hover::after {
    width: 100%;
}

/* Active underline */
.nav-menu li a.active {
    color: #E50914;
}

.nav-menu li a.active::after {
    width: 100%;
}


/* TRIAL BUTTON */
.trial-btn {
    background: #E50914;
    color: #fff;
    padding: 10px 22px;
    /* button size */
    font-size: 18px;
    /* text size */
    font-weight: 700;
    border-radius: 6px;
    margin-left: 40px; /* 🔥 better than 60px; avoids wrapping */
    text-decoration: none;
    transition: background 0.3s ease;
}

.trial-btn:hover {
    background: #b00610;
}


/* REMOVE OLD NAV CONFLICT */
nav {
    background: transparent !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

/* ------------------------------------------------ */
/*                    HERO SECTION                  */
/* ------------------------------------------------ */
.hero {
    margin-top: 0 !important;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.40);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 58px;        /* 🔥 smaller than before, cleaner */
    line-height: 1.15;
    letter-spacing: -1px;
    text-transform: uppercase;
}
.red {
    color: var(--primary-red);
}

/* SUBTEXT */
.hero-content p {
    margin-top: 22px;
    font-size: 20px;
    font-weight: 400;
    opacity: 0.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 40px;
}
.btn-primary {
    display: inline-block;
    margin-top: 28px;
    padding: 14px 36px;

    background: var(--primary-red);
    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;

    border-radius: 50px;      /* 🔥 ROUND PREMIUM BUTTON */
    box-shadow: 0 4px 18px rgba(229, 9, 20, 0.35);  /* 🔥 depth */

    text-decoration: none;
    transition: all 0.25s ease;
}


.btn-primary:hover {
    background: var(--hover-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(229, 9, 20, 0.45);
}
/* ------------------------------------------------ */
/*                 SECTION HEADERS                  */
/* ------------------------------------------------ */

.section {
    padding: 80px 20px;
    text-align: center;
}

.section h2 {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: 'Montserrat', sans-serif;
}

.section p {
    margin-top: 10px;
    font-size: 20px;
    opacity: .85;
}


/* ------------------------------------------------ */
/*                  FEATURES GRID                   */
/* ------------------------------------------------ */

.features-grid {
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

/* ------------------------------------------------ */
/*                 PRICING SECTION                  */
/* ------------------------------------------------ */

.pricing-section {
    padding: 80px 20px;
    text-align: center;
}

.pricing-row {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.pricing-card {
    position: relative;
    background: #0b0b0b;
    border-radius: 20px;
    padding: 40px 35px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 0 25px #000;
    transition: .3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

/* BASIC PLAN */

.pricing-card.basic {
    border: 1px solid #222;
}

.pricing-card.basic:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.35);
}

/* VIP PLAN */

.pricing-card.vip {
    background: #0a0a0a;
    border-radius: 20px;
    border: none;
}

/* PRICING CARD CONTENT */

.plan-header h3 {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.tag-red,
.tag-gold {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}

.tag-red {
    background: var(--primary-red);
}

.tag-gold {
    background: gold;
    color: #000;
}

/* PRICE */

.plan-price {
    margin: 28px 0;
    font-size: 48px;
    font-weight: 900;
}

/* SELECT BOXES */

.selectors label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    opacity: .9;
    margin-top: 18px;
}

.selectors select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
}

/* FEATURES */

.features li {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.92;
    list-style-type: "• ";
    padding-left: 6px;
}

/* BUTTONS */

.btn-primary.full,
.btn-gold.full {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-radius: 12px;
    font-weight: 700;
    transition: .3s ease;
}

.btn-primary.full {
    background: var(--primary-red);
}

.btn-primary.full:hover {
    background: var(--hover-red);
    transform: translateY(-2px);
}

.btn-gold.full {
    background: gold;
    color: #000;
}

.btn-gold.full:hover {
    background: #e3c400;
    transform: translateY(-2px);
}

/* ------------------------------------------------ */
/*             PRICING COMPARISON TABLE             */
/* ------------------------------------------------ */

.comparison-box {
    max-width: 1100px;
    margin: 60px auto;
    background: #0e0e0e;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #222;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    padding: 14px 0;
    border-bottom: 1px solid #222;
    font-size: 16px;
}

.comparison-row:last-child {
    border-bottom: none;
}

/* ------------------------------------------------ */
/*                     FAQ                          */
/* ------------------------------------------------ */

.faq-item {
    max-width: 900px;
    background: #0d0d0d;
    padding: 20px;
    border-radius: 8px;
    margin: 15px auto;
    cursor: pointer;
    border-left: 4px solid var(--primary-red);
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.faq-item p {
    display: none;
    margin-top: 10px;
}

/* ------------------------------------------------ */
/*                     FOOTER                       */
/* ------------------------------------------------ */

footer {
    background: #000;
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #111;
}

footer p {
    opacity: 0.8;
}

footer .social-icons a {
    color: #fff;
    font-size: 22px;
    margin: 0 12px;
    transition: 0.3s;
}

footer .social-icons a:hover {
    color: var(--primary-red);
}

/* ------------------------------------------------ */
/*               RESPONSIVE (MOBILE)                */
/* ------------------------------------------------ */

@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .pricing-row {
        grid-template-columns: 1fr;
    }
}

/* CHANNEL SEARCH BAR */
.channel-search {
    max-width: 600px;
    margin: 20px auto;
}

.channel-search input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #0d0d0d;
    color: #fff;
    font-size: 16px;
}

/* CHANNEL GRID */
.channel-grid {
    max-width: var(--max-width);
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

.channel-box {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: center;
    transition: .3s;
}

.channel-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.channel-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* TUTORIAL GRID */
.tutorial-grid {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tutorial-box {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: .3s;
}

.tutorial-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

.tutorial-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.tutorial-box ul {
    list-style: none;
    padding-left: 0;
}

.tutorial-box ul li {
    margin-bottom: 10px;
    opacity: .9;
    font-size: 15px;
}

/* ABOUT SECTION */
.about-section {
    max-width: var(--max-width);
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.about-box {
    background: #0d0d0d;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: .3s;
}

.about-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(229, 9, 20, .25);
}

.about-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.about-box ul li {
    margin-bottom: 8px;
    font-size: 16px;
    opacity: .9;
}

/* CONTACT GRID */
.contact-grid {
    max-width: 1500px;
    margin: 40px auto 70px;
    padding: 0 25px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.contact-box {
    background: linear-gradient(180deg, #0e0e0e, #050505);
    padding: 35px;
    border-radius: 18px;

    border: 1px solid #151515;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);

    transition: .3s ease;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -80%;
    width: 260%;
    height: 260%;
    background: radial-gradient(circle, rgba(255,0,30,0.12), transparent 60%);
    transform: rotate(25deg);
    transition: opacity .4s ease;
    opacity: 0;
}

.contact-box:hover::before {
    opacity: 1;
}

.contact-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 0 25px rgba(229, 9, 20, .45);
}

.contact-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box p {
    font-size: 17px;
    opacity: .85;
    margin-bottom: 6px;
}

.contact-box strong {
    color: var(--primary-red);
    font-size: 19px;
}

/* ------------------------------- */
/*       CONTACT FORM SECTION      */
/* ------------------------------- */

.contact-form-section {
    padding: 60px 25px 120px;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.contact-form-section p {
    opacity: .8;
    font-size: 18px;
    margin-bottom: 35px;
}

.contact-form {
    max-width: 700px;
    margin: auto;
    background: #0b0b0b;
    padding: 40px;
    border-radius: 22px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 0 18px rgba(0,0,0,0.5);
}

.form-group {
    text-align: left;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: .9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    font-size: 16px;
    transition: .25s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(229,9,20,0.35);
}

/* SEND BUTTON */
.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    padding: 16px 0;
    font-size: 20px;
    border-radius: 12px;
    font-weight: 800;
    letter-spacing: .3px;
    box-shadow: 0 6px 20px rgba(229, 9, 20, .35);
}

.contact-form .btn-primary:hover {
    transform: translateY(-4px);
}

/* ------------------------------- */
/*           RESPONSIVE            */
/* ------------------------------- */

@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }
    .contact-box {
        padding: 25px;
    }
    .contact-form-section h2 {
        font-size: 32px;
    }
}
/* CONTACT FORM */
.contact-form-section {
    text-align: center;
    padding: 50px 20px;
}

.contact-form {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    opacity: 0.85;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
}
/* COMPARISON SECTION */
.comparison-section {
    padding: 80px 20px;
    text-align: center;
}

.comparison-section h2 {
    font-size: 38px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 40px;
}

.comparison-table {
    max-width: 1600px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid #222;
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 28px 30px;
    border-bottom: 1px solid #222;
    font-size: 20px;  /* cleaner & readable */
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row.header {
    background: #ff004c;
    color: #fff;
    font-weight: 700;
    font-size: 19px;
}

.comp-row div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight {
    color: #ff004c;
    font-weight: 700;
}

.check {
    color: #34ff98;
    font-size: 22px;
}

.comp-row:nth-child(even) {
    background: #111;
}
/* PREMIUM PRICING SECTION */
.pricing-premium {
    padding: 100px 20px;
    text-align: center;
    background: #0a0a0a;
}

.pricing-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-title span {
    color: #E50914;
}

.pricing-sub {
    opacity: 0.85;
    font-size: 20px;
    margin-bottom: 35px;
}

.countdown-box p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer div {
    background: #111;
    padding: 10px 18px;
    border-radius: 10px;
}

.timer span {
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.timer small {
    font-size: 12px;
    opacity: .7;
}

.pricing-wrapper {
    max-width: 1600px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
}

.plan-card {
    background: #0d0d0d;
    border-radius: 18px;
    padding: 35px;
    border: 1px solid #222;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    transition: .3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
}

.plan-card.vip {
    border: 1px solid gold;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 22px;
    font-weight: 900;
}

.tag {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 13px;
}

.tag.red {
    background: #E50914;
    color: #fff;
}

.tag.gold {
    background: gold;
    color: #000;
}

.duration-tabs button {
    padding: 10px 22px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
}

.duration-tabs button.active {
    background: #E50914;
    border-color: #E50914;
}

.price-box h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 5px;
}

.compare {
    opacity: 0.8;
    font-size: 14px;
}

.plan-features {
    text-align: left;
    margin: 25px 0;
    line-height: 1.9;
}

.plan-features li {
    list-style: none;
    font-size: 16px;
    opacity: .9;
}

.order-btn {
    display: block;
    padding: 15px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    text-decoration: none;
    transition: .3s;
}

.order-btn.red {
    background: #E50914;
    color: #fff;
}

.order-btn.gold {
    background: gold;
    color: #000;
}

.order-btn:hover {
    transform: translateY(-3px);
}

.secure-note {
    margin-top: 10px;
    opacity: .7;
    font-size: 14px;
}
/* ======================= */
/*     PREMIUM FOOTER      */
/* ======================= */

.footer-premium {
    background: #000;
    padding: 70px 40px 40px;
    color: #fff;
}

.footer-inner {
    max-width: 1650px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 15px;
}

.footer-desc {
    opacity: 0.85;
    line-height: 1.6;
    max-width: 300px;
}
.footer-col {
    font-size: 18px;
}
.footer-col h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    text-decoration: none !important;
    color: #ffffff !important;
}

.footer-col ul li a:hover {
    color: #E50914;
    opacity: 1;
}

.footer-contact li {
    margin-bottom: 10px;
    opacity: .85;
}

/* Subscribe box */
.subscribe-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.subscribe-box input {
    flex: 1;
    padding: 12px;
    border: none;
    background: #111;
    color: #fff;
    border-bottom: 2px solid #333;
    outline: none;
}

.subscribe-box input:focus {
    border-bottom: 2px solid #E50914;
}

.subscribe-box button {
    background: #E50914;
    border: none;
    padding: 12px 20px;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s;
}

.subscribe-box button:hover {
    background: #b00610;
}

/* Footer bottom */
.footer-line {
    border: none;
    border-top: 1px solid #222;
    margin: 40px 0 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: auto;
    text-align: center;
}

.footer-bottom p {
    opacity: .85;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-policy {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0;
}

.footer-policy a {
    color: #fff;
    opacity: .7;
    transition: .3s;
}

.footer-policy a:hover {
    color: #E50914;
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-inner {
        text-align: center;
    }

    .subscribe-box {
        flex-direction: column;
    }

    .subscribe-box button {
        width: 100%;
    }

    .footer-policy {
        flex-direction: column;
        gap: 10px;
    }
}
/* ======================= */
/*    READY TO PLAY STYLE  */
/* ======================= */

.ready-play {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 100px 40px;
    max-width: 1600px;
    margin: auto;
    align-items: center;
}

.ready-left h2 {
    font-size: 85px;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.ready-left p {
    font-size: 22px;
    margin-bottom: 20px;
    opacity: .85;
}

.ready-list {
    margin: 20px 0 30px;
    list-style: none;
}

.ready-list li {
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.ready-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #E50914;
    font-size: 22px;
}

.ready-btn {
    margin-top: 20px;
    padding: 16px 40px;
    font-size: 22px;
    border-radius: 50px;
}

/* Right Image Grid */
.ready-right .rp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ready-right img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid #222;
    transition: 0.3s ease;
}

/* 🔥 Staggered effect */
.ready-right img:nth-child(odd) {
    transform: translateY(-20px);
}

.ready-right img:nth-child(even) {
    transform: translateY(20px);
}

.ready-right img:hover {
    transform: scale(1.05);
    z-index: 5;
}

/* Mobile fix */
@media(max-width: 900px) {
    .ready-play {
        grid-template-columns: 1fr;
    }

    .ready-right img:nth-child(odd),
    .ready-right img:nth-child(even) {
        transform: translateY(0);
    }
}
/* Carousel container */
.rp-carousel {
    height: 600px;
    overflow: hidden;
    position: relative;
}

/* Track that moves up automatically */
.rp-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 16s linear infinite;
}

.rp-track img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid #222;
    margin-bottom: 18px;
}

/* Infinite vertical scroll */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}
/* ======================= */
/*   WHAT MAKES US DIFFERENT */
/* ======================= */

.features-different {
    padding: 90px 20px;
    text-align: center;
}

.fd-title {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 60px;
}

.fd-grid {
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.fd-box {
    background: #050505;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: left;
    min-height: 260px;
    transition: 0.3s ease;
}

.fd-box:hover {
    transform: translateY(-8px);
    border-color: #E50914;
    box-shadow: 0 0 30px rgba(229, 9, 20, 0.25);
}

.fd-icon {
    font-size: 48px;
    color: #E50914;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fd-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fd-box p {
    font-size: 18px;
    opacity: .85;
    line-height: 1.6;
}

/* Mobile */
@media(max-width: 768px) {
    .fd-title {
        font-size: 36px;
    }
}
/* Tutorial Page Header */
.tutorial-header {
    text-align: center;
    padding: 120px 20px 40px;
}

.tutorial-header h1 {
    font-size: 48px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.tutorial-header h1 i {
    color: #E50914;
    margin-right: 10px;
}

/* Tutorial Grid */
.tutorial-section {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
    padding: 20px 20px 80px;
}

.tutorial-card {
    background: #0d0d0d;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.3s;
}

.tutorial-card:hover {
    transform: translateY(-6px);
    border-color: #E50914;
}

.t-icon {
    font-size: 45px;
    color: #E50914;
    margin-bottom: 15px;
}

.tutorial-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tutorial-card ul li {
    margin-bottom: 10px;
    opacity: 0.85;
    line-height: 1.5;
}

/* Support Section */
.support-section {
    text-align: center;
    padding: 60px 20px;
}

.support-section h2 i {
    color: #E50914;
    margin-right: 10px;
}

/* Footer Icons */
.footer-contact li i {
    color: #E50914;
    margin-right: 10px;
    font-size: 18px;
}

.footer-col ul li a i {
    margin-right: 8px;
    color: #E50914;
}
/* ======================================================= */
/*   HAKUNATV — PREMIUM UPGRADE FOR PRICING + CHANNELS     */
/*   (Safely overrides your old styles without changing     */
/*    anything else in your site)                           */
/* ======================================================= */

/* ------------------------------------------------------- */
/*                  CHANNEL LIST PAGE FIXES                */
/* ------------------------------------------------------- */

.channel-search input {
    background: #0b0b0b;
    border: 1px solid #333;
    color: #fff;
    padding: 16px;
    font-size: 18px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.channel-search input:focus {
    border-color: #E50914;
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.45);
}

.channel-grid {
    max-width: 1500px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.channel-box {
    background: #0b0b0b;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 18px;
    transition: 0.3s ease;
    cursor: pointer;
}

.channel-box:hover {
    transform: translateY(-8px);
    border-color: #E50914;
    box-shadow: 0 0 30px rgba(229,9,20,0.25);
}

.channel-box h3 {
    font-size: 24px;
    font-weight: 800;
}

/* Add smooth fade when hiding search results */
.channel-box {
    opacity: 1;
    transition: opacity .25s ease, transform .25s ease;
}
.channel-box[style*="none"] {
    opacity: 0;
    transform: scale(0.95);
}


/* ------------------------------------------------------- */
/*                    PRICING PAGE UPGRADE                */
/* ------------------------------------------------------- */

.pricing-card {
    border-radius: 22px;
    background: #0a0a0a;
    padding: 45px 40px;
    position: relative;
    transition: 0.35s ease;
}

/* Essential Card */
.pricing-card.basic {
    border: 1px solid #333;
}
.pricing-card.basic:hover {
    border-color: #E50914;
    box-shadow: 0 0 40px rgba(229,9,20,0.25);
}

/* VIP GOLD CARD — premium animated frame */
.pricing-card.vip {
    background: #0d0d0d;
    border: none;
    position: relative;
}

.pricing-card.vip::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #b58b17, #f5e38e, #d4a21c, #fbea9f, #b58b17);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: vipGoldFrame 4s linear infinite;
}

@keyframes vipGoldFrame {
    0% { filter: brightness(0.85); }
    50% { filter: brightness(1.3); }
    100% { filter: brightness(0.85); }
}

/* PRICE styling */
.plan-price {
    font-size: 58px;
    font-weight: 900;
    margin: 30px 0;
}

/* Select (device / duration) */
.selectors select {
    appearance: none;
    padding: 14px 18px;
    border-radius: 14px;
    background: #0b0b0b;
    border: 1px solid #333;
    color: #fff;
    transition: 0.25s ease;

    background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.selectors select:hover,
.selectors select:focus {
    border-color: #E50914;
    box-shadow: 0 0 14px rgba(229,9,20,0.4);
}

/* Feature bullets */
.features li {
    padding-left: 26px;
    position: relative;
}

.features li::before {
    content: "✔";
    color: #E50914;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

/* Buttons */
.btn-gold.full {
    background: linear-gradient(135deg, #f5e38e, #d4a21c);
    font-size: 20px;
    font-weight: 900;
    color: #000;
    border-radius: 14px;
    transition: 0.25s ease;
}

.btn-gold.full:hover {
    filter: brightness(1.15);
    transform: translateY(-3px);
}

/* Dynamic comparison highlights */
.highlight {
    font-weight: 900;
    color: #E50914;
}


/* ------------------------------------------------------- */
/*           MOBILE FIXES FOR PRICING + CHANNELS          */
/* ------------------------------------------------------- */

@media (max-width: 768px) {

    .pricing-card {
        padding: 35px 28px;
    }

    .plan-price {
        font-size: 46px;
    }

    .channel-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .channel-box {
        padding: 20px;
    }

    .channel-box h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .channel-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 28px 22px;
    }
}
/* ============================================================
    HAKUNATV SUPER PREMIUM PRICING — MATCHES YOUR EXACT HTML
   ============================================================ */

.iptv-pricing {
    padding: 160px 40px 100px;
}

.iptv-pricing .grid {
    max-width: 1450px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 45px;
}

/* Plan Card Base */
.plan {
    background: #0b0b0b;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(229, 9, 20, 0.35);
}

/* TITLE */
.plan .head .label {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Montserrat';
}

.plan .flasha,
.plan .flash {
    margin-top: 8px;
    color: #E50914;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

/* VIP BORDER — GOLD ANIMATION */
.plan.vip {
    border: none !important;
    background: #0a0a0a;
}

.plan.vip .vip-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.plan.vip .vip-border svg rect {
    fill: none;
}


/* CONTROLS (dropdowns) */
.controls {
    margin: 25px 0;
}

.control {
    display: block;
    margin-bottom: 18px;
}

.control span {
    font-size: 15px;
    opacity: .85;
    margin-bottom: 6px;
    display: block;
}

.control select {
    width: 100%;
    padding: 14px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    transition: .25s;
}

.control select:hover,
.control select:focus {
    border-color: #E50914;
    box-shadow: 0 0 14px rgba(229,9,20,.4);
}

/* PRICE BOX */
.price {
    margin: 0px 0;
}

.price .main {
    font-size: 58px;
    font-weight: 900;
}

.price .sub {
    margin-top: 5px;
    opacity: .75;
}

.price .orig {
    margin-top: 14px;
    font-size: 14px;
    opacity: .6;
    text-transform: uppercase;
}

.divider {
    height: 1px;
    background: #222;
    margin: 30px 0;
}

/* FEATURES */
.features .f {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.features .f i {
    color: #E50914;
    font-size: 18px;
}

/* CTA BUTTON */
.cta .btn-primary {
    display: block;
    width: 100%;
    padding: 16px;
    background: #E50914;
    text-align: center;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
    transition: 0.25s ease;
}

.cta .btn-primary:hover {
    background: #b00610;
    transform: translateY(-4px);
}

.cta .note {
    text-align: center;
    margin-top: 10px;
    opacity: .7;
    font-size: 14px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .iptv-pricing .grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
/* ======================= */
/*     COUNTRY GRID CSS    */
/* ======================= */
/* ======================= */
/*     COUNTRY GRID CSS    */
/* ======================= */

.country-section {
    padding: 60px 20px 120px;
    text-align: center;
}

.country-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.country-section p {
    font-size: 18px;
    opacity: .8;
    margin-bottom: 35px;
}

/* Grid */
.country-grid {
    max-width: 1600px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    padding: 0 20px;
}

/* Country Card */
.country-item {
    display: flex;
    align-items: center;
    gap: 16px;

    background: linear-gradient(180deg, #0e0e0e, #050505);
    padding: 22px 26px;
    border-radius: 16px;

    border: 1px solid #1e1e1e;
    box-shadow: 0 0 22px rgba(0,0,0,0.6);

    cursor: pointer;
    transition: 0.28s ease;
    position: relative;
    overflow: hidden;
}

/* Glow Effect on Hover */
.country-item::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -80%;
    width: 260%;
    height: 260%;
    background: radial-gradient(circle, rgba(229,9,20,0.14), transparent 60%);
    transform: rotate(25deg);
    opacity: 0;
    transition: opacity .35s ease;
}

.country-item:hover::before {
    opacity: 1;
}

/* Hover Motion */
.country-item:hover {
    transform: translateY(-7px);
    border-color: var(--primary-red);
    box-shadow: 0 0 28px rgba(229,9,20,0.35);
}

/* Flag */
.country-item img {
    width: 42px;
    height: 30px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #333;
}

/* Name */
.country-item span {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .2px;
}

/* Fade when search hides results */
.country-item {
    opacity: 1;
    transition: opacity .25s ease, transform .25s ease;
}

.country-item[style*="none"] {
    opacity: 0;
    transform: translateY(6px);
}

/* MOBILE */
@media (max-width: 600px) {
    .country-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 20px;
    }

    .country-item {
        padding: 16px 18px;
        gap: 12px;
    }

    .country-item img {
        width: 36px;
        height: 26px;
    }

    .country-item span {
        font-size: 16px;
    }
}
.nav-toggle {
    display: none;
    font-size: 30px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-toggle i {
    color: #000000;
}
@media(max-width: 900px) {

    .nav-menu,
    .trial-btn {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    /* Mobile menu panel */
    .nav-menu.mobile-active {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(12px);
        padding: 25px 0;
        display: block !important;
        text-align: center;
        border-top: 1px solid #222;
        animation: slideDown .3s ease;
    }

    .nav-menu.mobile-active li {
        margin: 14px 0;
    }

    .nav-menu.mobile-active li a {
        font-size: 22px;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-15px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}
.nav-toggle i {
    color: #E50914 !important;
}
@media(max-width: 900px) {
    body {
        position: relative;
        overflow-x: hidden !important;
    }
}
.iptv-pricing.two-plans.v1 {
  --bg-0: transparent;
  --bg-1: transparent;
  --card: #0f1014;
  --ink: #fff;
  --muted: #cfd1d6;
  --stroke: rgba(255, 255, 255, .12);
  --gold-1: #C79B00;
  --gold-2: #F8F812;
  --accent: #E63E3E;
  --r: 16px;
  --pad: 22px;
  --t: 220ms cubic-bezier(.2, .8, .2, 1);
  font-family: Poppins, ui-sans-serif, system-ui, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink);
  padding: 40px 20px;
  margin-top: 80px;
}

/* Layout */
.iptv-pricing .ptv-wrap {
  max-width: 1200px;
  margin-inline: auto;
}

.iptv-pricing .ptv-title {
  text-align: center;
  margin-bottom: 25px;
}

.iptv-pricing .ptv-eyebrow {
  display: inline-block;
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}

.iptv-pricing .ptv-title h2 {
  margin: 0;
  font-size: clamp(1.4rem, 1.4rem + 1vw, 2rem);
}

.iptv-pricing .ptv-grid {
  display: grid;
  gap: 25px;
}

@media (min-width: 900px) {
  .iptv-pricing .ptv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =======================
   PLAN CARD – BASE STYLE
   ======================= */

.ptv-plan {
  position: relative;
  background: linear-gradient(180deg, #0e1015, #0b0c10);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: var(--pad);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 650px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.ptv-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .45);
}

.ptv-label {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: .9;
}

.ptv-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Badges */
.ptv-badge,
.ptv-badge--alert {
  padding: 6px 12px;
  font-size: .8rem;
  font-weight: 700;
  border-radius: 999px;
}

.ptv-badge {
  background: linear-gradient(90deg, #ffd366, #fff3b0);
  color: #0c0d10;
}

.ptv-badge--alert {
  background: linear-gradient(90deg, #FF0000, #990000);
  color: #fff;
}

/* =======================
   ESSENTIAL PLAN STYLE
   ======================= */

.ptv-plan.ptv-essential {
  border-color: rgba(230, 62, 62, .45);
}

.ptv-plan.ptv-essential:hover {
  border-color: #ff4d4d;
  box-shadow: 0 18px 45px rgba(255, 0, 0, .35),
              0 0 0 3px rgba(255, 0, 0, .35) inset;
}

/* =======================
   VIP PLAN STYLE
   ======================= */

.ptv-plan.ptv-vip {
  border-radius: 30px;
  border-color: rgba(247, 219, 90, .35);
  background: radial-gradient(80% 60% at 50% 0%, rgba(199, 155, 0, .2), transparent 60%),
              linear-gradient(180deg, #0e1014, #090a0e);
  box-shadow: 0 16px 50px rgba(247, 219, 90, .18), 
              0 10px 30px rgba(0, 0, 0, .35);
}

/* VIP Shining Label */
.ptv-plan.ptv-vip .ptv-label {
  background: linear-gradient(90deg, #fff, #ffe9a8, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: vip-shine 3.2s linear infinite;
}

@keyframes vip-shine {
  100% {
    background-position: 200% 0;
  }
}

/* VIP Border Animation */
.ptv-vip-border {
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}

.ptv-vip-border svg {
  width: 100%;
  height: 100%;
}

.ptv-vip-border rect {
  fill: none;
  stroke: url(#goldStroke);
  stroke-width: 2;
  stroke-dasharray: 140 60 140 60;
  animation: vip-border 5s linear infinite;
}

@keyframes vip-border {
  from {
    stroke-dashoffset: -60;
  }
  to {
    stroke-dashoffset: -460;
  }
}

/* =======================
   PILLS / SELECTION BUTTONS
   ======================= */

.ptv-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ptv-pills button {
    background: #13141a;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 14px 28px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: var(--t);
    font-size: 1rem;
    min-width: 130px;
    text-align: center;
}

.ptv-pills button.is-active {
  background: #1d1f27;
  border-color: #fff;
}

/* =======================
   PRICE BLOCK
   ======================= */

.ptv-price {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, .15);
}

.ptv-price-main {
  font-size: 2.3rem;
  font-weight: 800;
}

.ptv-price-sub {
  font-size: .95rem;
  color: var(--muted);
}

.ptv-price-orig {
  font-size: .85rem;
  color: var(--muted);
}

/* =======================
   FEATURES LIST
   ======================= */

.ptv-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.ptv-feature span {
  font-size: .95rem;
  color: #e8eaef;
  font-weight: 600;
}

/* Guarantees */
.guarantee-7d span {
  color: #ff4d4d !important;
}

.guarantee-15d span {
  color: #e5c200 !important;
}

.ptv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
}

/* =======================
   CTA BUTTONS
   ======================= */

.ptv-cta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.ptv-btn-primary {
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  transition: .2s ease-in-out;
  border: 1px solid rgba(255, 255, 255, .15);
}

/* Essential Button */
.ptv-plan.ptv-essential .ptv-btn-primary {
  background: #FF0000;
  color: #fff;
  border-color: #ff4d4d;
  box-shadow: 0 10px 25px rgba(255, 0, 0, .25);
}

.ptv-plan.ptv-essential .ptv-btn-primary:hover {
  background: #d40000;
  transform: translateY(1px);
}

/* VIP Button */
.ptv-plan.ptv-vip .ptv-btn-primary {
  background: #C79B00;
  color: #0b0c10;
  border-color: #e0b700;
  box-shadow: 0 10px 25px rgba(199, 155, 0, .25);
}

.ptv-plan.ptv-vip .ptv-btn-primary:hover {
  background: #d6b10a;
  transform: translateY(1px);
}

.ptv-note {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}
.ptv-pills button.is-active {
    background: #ffffff22;
    border-color: #fff;
    color: #fff;
}

/* Wave transition under HERO */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    z-index: 3;   /* Above video, below text */
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.vortex-nav.scrolled {
background: rgba(0, 0, 0, 0.75) !important; /* 75% black */
    backdrop-filter: blur(0px) !important; /* removes glass effect */
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.70); /* black shadow */
}
.vortex-nav .nav-menu li a:hover {
    color: #E50914;
    border-bottom: 2px solid #E50914;
}

/* ============================================================
   HAKUNATV IPTV PRICING — NAMESPACED AS .iptv-pricing-x2
   ============================================================ */

.iptv-pricing-x2.two-plans.v1{
    --bg-0:transparent;--bg-1:transparent;--card:#0f1014;--ink:#fff;--muted:#cfd1d6;--stroke:rgba(255,255,255,.12);
    --gold-1:#C79B00;--gold-2:#F8F812;--gold-soft:#f2e394;
    --accent:#E63E3E;
    --r:16px;
    --pad:22px;
    --t:220ms cubic-bezier(.2,.8,.2,1);

    --dd-arrow-size:16px;
    --dd-arrow-x:12px;
    --dd-arrow-pad:40px;

    font-family:ui-sans-serif,system-ui,Segoe UI,Roboto,Helvetica,Arial;color:var(--ink);
    background:linear-gradient(180deg,var(--bg-0),var(--bg-1));
    padding:32px 18px;
    text-shadow:none;
}

.iptv-pricing-x2 .wrap{max-width:1100px;margin-inline:auto}
.iptv-pricing-x2 .title{
    text-align:center;margin-bottom:18px;font-weight:700;letter-spacing:.2px;line-height:1.2
}
.iptv-pricing-x2 .title .eyebrow{
    display:inline-block;font-size:.8rem;color:var(--muted);text-transform:uppercase;letter-spacing:.16em;margin-bottom:6px
}
.iptv-pricing-x2 .title h2{font-size:clamp(1.4rem,1.3rem + 1vw,2rem);margin:0}

.iptv-pricing-x2 .grid{
  display:grid; gap:20px; align-items:stretch;
  grid-template-columns:98%;
  justify-content:center;
}

@media (min-width:900px){
    .iptv-pricing-x2 .grid{grid-template-columns:1fr 1fr}
}

/* Cards */
.iptv-pricing-x2 .plan {
    position: relative;
    background: linear-gradient(180deg, #0e1015, #0b0c10);
    border: 1px solid var(--stroke);
    border-radius: var(--r);
    padding: var(--pad);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0px;
    min-height: 620px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    isolation: isolate;
}

.iptv-pricing-x2 .plan:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(0,0,0,.42)
}

/* Essential */
.iptv-pricing-x2 .plan.essential{ border-color: rgba(230,62,62,.45); }
.iptv-pricing-x2 .plan.essential:hover{
    border-color:#ff5a5a;
    box-shadow:
      0 18px 40px rgba(0,0,0,.42),
      0 0 0 2px rgba(230,62,62,.25) inset,
      0 0 28px rgba(230,62,62,.18);
}

/* VIP */
.iptv-pricing-x2 .plan.vip{
    background:radial-gradient(80% 60% at 50% 0%, rgba(199,155,0,.16), transparent 60%), linear-gradient(180deg,#0e1014,#0a0b0f);
    box-shadow:0 16px 50px rgba(247,219,90,.18), 0 10px 30px rgba(0,0,0,.35);
    border-color:rgba(247,219,90,.35);
    transform:translateY(-1px);
    position:relative;
    border-radius:30px;
}
.iptv-pricing-x2 .plan.vip:hover{transform:translateY(-3px)}

.iptv-pricing-x2 .plan.vip .label{
    background:linear-gradient(90deg,#fff, #ffe9a8,#fff);
    -webkit-background-clip:text;background-clip:text;color:transparent;
    background-size:200% 100%;animation:shine 3.2s linear infinite;
}

@keyframes shine{to{background-position:200% 0}}

/* Select fields */
.iptv-pricing-x2 .controls{display:grid;gap:10px;grid-template-columns:1fr 1fr}
.iptv-pricing-x2 .control{
    display:flex;flex-direction:column;gap:6px;font-size:.88rem;color:var(--muted)
}

.iptv-pricing-x2 .control select{
    appearance:none;
    background:#12141a;color:#fff;
    border:1px solid rgba(255,255,255,.14);
    padding:10px 12px;
    border-radius:10px; outline:none;

    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat:no-repeat;
    background-position:right var(--dd-arrow-x) center;
    background-size:var(--dd-arrow-size);
    padding-right:var(--dd-arrow-pad);
}

.iptv-pricing-x2 .control select:focus{
    border-color:#fff;box-shadow:0 0 0 4px rgba(255,255,255,.06)
}

/* Pricing area */
.iptv-pricing-x2 .price {
    margin-top: 2px;
    border-top: 1px dashed rgba(255, 255, 255, .12);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}
.iptv-pricing-x2 .price .main{font-size:2rem;font-weight:800}
.iptv-pricing-x2 .price .sub{font-size:.9rem;color:var(--muted)}
.iptv-pricing-x2 .price .orig{font-size:.85rem;color:var(--muted)}

/* Features */
.iptv-pricing-x2 .features {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}
.iptv-pricing-x2 .f{display:grid;grid-template-columns:auto 1fr;gap:10px}
.iptv-pricing-x2 .f svg{width:18px;height:18px;opacity:.9}
.iptv-pricing-x2 .f span{font-size:.95rem;color:#e8eaef;font-weight:600}

/* CTA buttons */
.iptv-pricing-x2 .cta{
    margin-top:auto;display:grid;gap:10px
}
.iptv-pricing-x2 .cta a{
    display:flex;align-items:center;justify-content:center;gap:10px;
    padding:12px 14px;border-radius:12px;font-weight:800;
    text-decoration:none;transition:var(--t);
    border:1px solid rgba(255,255,255,.12);
}

/* Essential CTA */
.iptv-pricing-x2 .plan.essential .cta a{
    background:#FF0000;color:#fff;border-color:#ff4d4d;
    box-shadow:0 10px 25px rgba(255,0,0,.25);
}
.iptv-pricing-x2 .plan.essential .cta a:hover{
    transform:scale(1.03);
    background:#ff1a1a;
}

/* VIP CTA */
.iptv-pricing-x2 .plan.vip .cta a{
    background:#C79B00;color:#0b0c10;
    border-color:rgba(199,155,0,.7);
    box-shadow:0 10px 25px rgba(199,155,0,.25);
}
.iptv-pricing-x2 .plan.vip .cta a:hover{
    transform:scale(1.03);
    background:#d6b10a;
}

/* VIP Border Animation */
.iptv-pricing-x2 .vip-border{
    pointer-events:none;position:absolute;inset:0;z-index:1;
    border-radius:inherit;overflow:hidden;
}
.iptv-pricing-x2 .vip-border svg{width:100%;height:100%}
.iptv-pricing-x2 .vip-border rect{
    fill:none;stroke:url(#goldStroke);stroke-width:2;
    stroke-dasharray:140 60 140 60;
    animation:vip-dash 5s linear infinite;
}
@keyframes vip-dash{
    from{stroke-dashoffset:-60}
    to{stroke-dashoffset:-460}
}

.guarantee-15d{color:#c79b00!important}
.guarantee-7d{color:#ff0000!important}
/* ============================================================
   HAKUNATV — BIG CINEMATIC PRICING HERO X2
   ============================================================ */

.pricing-hero-x2 {
    width: 100%;
    padding: 140px 20px 90px;
    text-align: center;
    background: linear-gradient(180deg, #000000 0%, #0b0b0b 60%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Glow spotlight */
.pricing-hero-x2::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(229,9,20,0.25), transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
}

.phx2-inner {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 5;
}

/* Animated Gradient Title */
.phx2-title {
    font-size: 62px;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.phx2-title span {
    background: linear-gradient(90deg, #ff1a1a, #ff6969, #ff1a1a);
    -webkit-background-clip: text;
    color: transparent;
    background-size: 250% 100%;
    animation: phx2-gradient 5s ease infinite;
}

@keyframes phx2-gradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Subtitle */
.phx2-sub {
    margin-top: 20px;
    font-size: 22px;
    opacity: 0.85;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Small highlight feature row */
.phx2-features {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 35px;
    font-size: 20px;
    opacity: 0.9;
    font-weight: 700;
}

.phx2-features div {
    background: #111;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s ease;
}

.phx2-features div:hover {
    border-color: #E50914;
    transform: translateY(-3px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .phx2-title {
        font-size: 44px;
        line-height: 1.2;
    }
    .phx2-sub {
        font-size: 18px;
    }
    .phx2-features {
        flex-direction: column;
        gap: 12px;
    }
}




/* Germany Theme Accents */
.btn, .cta-btn {
    background: var(--germany-gradient);
    color: #fff;
    border-radius: 10px;
}
.price-card {
    background: #0f0f0f;
    border: 2px solid var(--primary-red);
    border-radius: 18px;
    padding: 30px;
    color: #fff;
}
.price-card h3 {
    color: var(--primary-yellow);
}
.price {
    font-size: 42px;
    font-weight: 900;
}


/* ET4K PRICING (Germany Theme) */
.et4k-pricing{padding:80px 0;background:radial-gradient(1000px 600px at 20% 0%, rgba(221,0,0,.18), transparent 60%),radial-gradient(900px 600px at 90% 10%, rgba(255,206,0,.16), transparent 55%), #000;}
.et4k-wrap{width:min(1200px,92%);margin:0 auto;}
.et4k-title{text-align:center;margin-bottom:26px}
.et4k-eyebrow{display:inline-block;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--primary-yellow);background:rgba(255,206,0,.10);border:1px solid rgba(255,206,0,.20);padding:8px 12px;border-radius:999px}
.et4k-title h2{margin:14px 0 8px;color:var(--text);font-size:clamp(26px,3vw,40px);line-height:1.1}
.et4k-lead{color:var(--muted);max-width:720px;margin:0 auto}

.et4k-grid{display:grid;gap:18px;grid-template-columns:repeat(4,minmax(0,1fr));align-items:stretch;margin-top:28px}
@media (max-width: 1100px){.et4k-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 620px){.et4k-grid{grid-template-columns:1fr;}}

.et4k-card{position:relative;background:linear-gradient(180deg,var(--card),var(--card2));border:1px solid var(--stroke);border-radius:20px;padding:22px 20px 20px;box-shadow:0 12px 35px rgba(0,0,0,.35);overflow:hidden}
.et4k-card::before{content:"";position:absolute;inset:0;border-radius:20px;padding:1px;background:linear-gradient(135deg, rgba(221,0,0,.65), rgba(255,206,0,.65));-webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.65;pointer-events:none}
.et4k-head{margin-bottom:14px}
.et4k-plan{margin:0;color:var(--primary-yellow);font-weight:800;letter-spacing:.06em}
.et4k-sub{margin:6px 0 0;color:var(--muted);font-size:14px}

.et4k-price{display:flex;align-items:flex-end;gap:8px;margin:14px 0 16px}
.et4k-amt{font-size:46px;font-weight:900;line-height:1;color:#fff}
.et4k-cur{font-size:18px;font-weight:800;color:var(--primary-yellow);padding-bottom:8px}

.et4k-list{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.et4k-list li{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:14px}
.et4k-list li::before{content:"";width:10px;height:10px;border-radius:2px;margin-top:4px;background:var(--germany-gradient)}

.et4k-btn{display:inline-flex;justify-content:center;align-items:center;margin-top:16px;width:100%;padding:12px 14px;border-radius:14px;background:var(--germany-gradient);color:#fff;font-weight:800;letter-spacing:.02em;text-decoration:none;border:0;transition:transform .15s ease, filter .15s ease}
.et4k-btn:hover{transform:translateY(-1px);filter:saturate(1.1)}
.et4k-btn--pulse{animation:et4kPulse 1.6s ease-in-out infinite}
@keyframes et4kPulse{0%,100%{box-shadow:0 0 0 0 rgba(255,206,0,.25)}50%{box-shadow:0 0 0 14px rgba(255,206,0,0)}}

.et4k-card--featured{border-color:rgba(255,206,0,.35)}
.et4k-badge{position:absolute;top:14px;right:14px;display:inline-flex;gap:6px;align-items:center;font-weight:800;font-size:12px;color:#000;background:var(--primary-yellow);padding:8px 10px;border-radius:999px}
.et4k-badge-ico{width:16px;height:16px}

.et4k-contact{margin-top:22px;text-align:center;color:var(--muted)}
.et4k-contact-link{color:var(--primary-yellow);font-weight:800;text-decoration:none}
.et4k-contact-link:hover{text-decoration:underline}


/* ========================= */
/* GLOBAL TEXT COLOR FIX */
/* ========================= */
/* Force readable white text across dark theme. */
html, body {
  color: #ffffff !important;
  background-color: #000000;
}

h1, h2, h3, h4, h5, h6,
p, span, strong, em, small,
li, dt, dd, label,
table, th, td,
input, textarea, select, option {
  color: inherit;
}

/* Common text blocks that were black */
.hero-content, .ready-play, .comparison-section, .features-different,
.footer-premium, .nav-menu, .nav-container,
[class*="title"], [class*="heading"], [class*="subtitle"], [class*="desc"],
[class*="text"], [class*="content"]{
  color: #ffffff !important;
}

/* Links */
a { color: var(--primary-yellow, #FFCE00); }
a:hover { color: #ffffff; }

/* If any element explicitly sets black, override it */
*[style*="color:#000"],
*[style*="color: #000"],
*[style*="color:black"],
*[style*="color: black"] {
  color: #ffffff !important;
}

/* Make muted text readable */
p, li, .muted, .sub, .subtitle, .desc {
  color: rgba(255,255,255,0.85) !important;
}

/* ========================= */
/* HERO VIDEO FIX */
/* ========================= */
.hero { background:#000; }
.hero-video { z-index: 0 !important; }
.hero::before { z-index: 1 !important; }
.hero::after { z-index: 1 !important; }
.hero-content { z-index: 2 !important; position: relative; }
