:root {
    --bg-main: #0a0a0f;
    --bg-secondary: #0f1722;
    --bg-card: #111827;

    --accent: #1e90ff;
    /* main blue */
    --accent-light: #57a8ff;

    --text-main: #ffffff;
    --text-secondary: #d0d7e3;

    --border-light: rgba(255, 255, 255, 0.08);
}


.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.channel-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

/* Carousel Styles */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(26, 26, 46, 0.3);
    padding: 15px 0;
    cursor: grab;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    will-change: transform;
    transform: translateX(0);
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.carousel-track.dragging {
    animation: none !important;
}

.carousel-card {
    flex: 0 0 180px;
    height: 100px;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    overflow: hidden;
    user-select: none;
}

.carousel-card:hover {
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

.carousel-logo {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 13px;
    pointer-events: none;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-wrapper {
        gap: 10px;
    }

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

    .carousel-track {
        gap: 12px;
        padding: 0 10px;
        transform: translateX(0);
    }

    .carousel-card {
        flex: 0 0 140px;
        height: 80px;
    }

    .carousel-logo {
        width: 85%;
        height: 85%;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        gap: 8px;
    }

    .carousel-container {
        padding: 10px 0;
    }

    .carousel-track {
        gap: 10px;
        padding: 0 8px;
        transform: translateX(0);
    }

    .carousel-card {
        flex: 0 0 110px;
        height: 70px;
    }

    .carousel-logo {
        width: 90%;
        height: 90%;
    }
}

/*Banner card*/
.carousel-card-banner {
    flex: 0 0 180px;
    height: 400px;
    width: 500px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    user-select: none;
}

.carousel-card-banner:hover {
    transform: scale(1.05);
    border-color: #fff;
    box-shadow: #0d47a1;
}

.carousel-logo-banner {
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
}


/*Review card*/
.carousel-card-reviews {
    flex: 0 0 180px;
    height: 400px;
    width: 700px;
    border-radius: 15px;
    border-color: #0d47a1;
    border-style: solid;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    user-select: none;
    margin-right: 10px;
    transform: translateZ(0);
    /* Prevent blur on scale */

}

.carousel-card-reviews:hover {
    transform: scale(1.05);
    border-color: #fff;
    /* This will work now since border is defined */
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.5);
    /* Added proper box-shadow */
}

.carousel-logo-reviews {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Change from cover to contain */
    pointer-events: none;
    image-rendering: auto;
    transform: translateZ(0);
    filter: blur(0);
    /* Explicitly remove blur */
}

.review-text {
    color: #1e90ff;
    font-size: 30px;
    font-weight: 600;
}

.review-subtext {
    color: #d0d7e3;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    color: #fff;
    overflow-x: hidden;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.whatsapp-icon {
    width: 60%;
    margin-top: 12px;
}

/* ===========================
   CONTACT US CARD
   =========================== */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    margin-top: 40px;
}

.contact-card {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    padding: 40px 35px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 132, 255, 0.2);
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e90ff;
    text-align: center;
    margin-bottom: 20px;
}

.contact-about {
    color: #d0d7e3;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Input Styling */
.contact-form .input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-right: 30px;
}

.contact-form label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #8ea2b8;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.5);
}

/* Submit Button */
.contact-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    color: white;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 26px;
    }
}



/* Channel count text */
.channel-count-wrapper {
    margin: 30px auto;
    text-align: center;
    position: relative;
    width: 100%;
}

.channel-count-wrapper::before,
.channel-count-wrapper::after {
    content: "";
    height: 1px;
    width: 80px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    vertical-align: middle;
    margin: 0 12px;
}

.channel-count-text {
    color: #1e90ff;
    font-size: 20px;
    font-weight: 600;
}

/* Responsive Channel Count */
@media (max-width: 1024px) {
    .channel-count-wrapper {
        margin: 28px auto 0;
    }

    .channel-count-wrapper::before,
    .channel-count-wrapper::after {
        width: 70px;
        margin: 0 10px;
    }

    .channel-count-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .channel-count-wrapper {
        margin: 24px auto 0;
    }

    .channel-count-wrapper::before,
    .channel-count-wrapper::after {
        width: 60px;
        margin: 0 8px;
    }

    .channel-count-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .channel-count-wrapper {
        margin: 30px auto;
    }

    .channel-count-wrapper::before,
    .channel-count-wrapper::after {
        width: 40px;
        margin: 0 6px;
    }

    .channel-count-text {
        font-size: 14px;
    }
}




/* Promo Section Container */
.promo-section {
    text-align: center;
    margin: 60px auto 10px auto;
    padding: 0 20px;
    max-width: 1200px;
}

/* Headings */
.promo-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 10px;
}

.promo-offer {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
}

.promo-offer .emoji {
    font-size: 32px;
}

/* Subtitle */
.promo-subtext {
    max-width: 650px;
    margin: 15px auto;
    color: #d0d7e3;
    font-size: 16px;
    line-height: 1.5;
}

/* CTA Badge */
.promo-tag-btn {
    background: #6d3bff;
    color: white;
    border: none;
    padding: 12px 28px;
    margin-top: 20px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(109, 59, 255, 0.4);
    transition: .3s;
}

.promo-tag-btn:hover {
    background: #8350ff;
}

/* OFFER CARD */
.offer-card {
    background: #111827;
    border-radius: 18px;
    padding: 30px 25px;
    margin-top: 40px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.plan-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 10px;
}

/* Popular Label */
.offer-label {
    position: absolute;
    top: 0;
    right: 0;
    background: #e63946;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 12px;
}

/* Duration Title */
.offer-duration {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 4px;
}

/* Subtitle */
.offer-subtitle {
    color: #d0d7e3;
    margin-bottom: 16px;
}

/* Wrapper centers the whole block */
.offer-price-wrapper {
    width: 100%;
    text-align: center;
    /* keeps the wrapper centered */
    margin-bottom: 18px;
}

/* 3-column equal grid */
.offer-price-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* left grows, center is only as wide as text, right grows */
    align-items: end;
    justify-items: center;
    gap: 0;
    /* remove unnecessary spacing */
}

/* each cell */
.price-cell {
    min-height: 1px;
    /* keeps grid stable */
}

/* Left cell: old price */
.price-left .old-price {
    justify-self: start;
    /* keep the old price a bit to the left inside the left cell */
    display: inline-block;
    font-size: 15px;
    color: #7586a0;
    text-decoration: line-through;
    opacity: 0.85;
    line-height: 1;
    margin-left: 12px;
    /* small inward offset so it's not flush to edge */
    text-align: end;
}

/* Center cell: main price */
.price-center .new-price {
    display: inline-flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 60px;
    font-weight: 700;
    color: #1e90ff;
    line-height: 1;
}

/* optional cents style */
.price-center .new-price .cents {
    font-size: 18px;
    align-self: flex-start;
    margin-top: 6px;
}

/* Right cell intentionally empty — could be used for badges later */
/*.price-right {}

/* PLAN CYCLE below the grid, always centered */
.plan-cycle {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    color: #ccc;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-center .new-price {
        font-size: 34px;
    }

    .price-center .new-price .cents {
        font-size: 14px;
        margin-top: 4px;
    }

    .price-left .old-price {
        font-size: 13px;
        margin-left: 6px;
    }

    .plan-cycle {
        font-size: 14px;
    }
}

/* Small screens: keep equal columns but reduce spacing */
@media (max-width: 420px) {
    .price-center .new-price {
        font-size: 50px;
    }

    .price-center .new-price .cents {
        font-size: 12px;
    }

    .price-left .old-price {
        font-size: 16px;
    }
}

/* FEATURES */
.offer-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.offer-features li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ffffff;
    padding-left: 20px;
    position: relative;
}

.offer-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e90ff;
    font-weight: bold;
}

/* BUTTONS */
.pricing-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-content: space-between;
}

.btn-buy,
.btn-trial {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

/* BUY Now */
.btn-buy {
    background: #1e90ff;
    color: white;
}

.btn-buy:hover {
    background: #57a8ff;
}

/* FREE TRIAL */
.btn-trial {
    background: transparent;
    border: 2px solid #1e90ff;
    color: #1e90ff;
}

.btn-trial:hover {
    background: #1e90ff;
    color: white;
}

/* RESPONSIVE TEXT SIZES */
@media (max-width: 600px) {

    .promo-offer {
        font-size: 26px;
    }

    .promo-subtext {
        font-size: 14px;
    }

    .offer-card {
        max-width: 90%;
    }
}



/* Header */
header {
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #1e90ff;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #1e90ff;
}

/* ACTIVE NAV LINK */
nav a.active {
    color: #1e90ff !important;
    font-weight: 700;
    position: relative;
}

nav a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1e90ff;
    border-radius: 2px;
}

.mobile-nav a.active {
    color: #1e90ff !important;
    border-bottom: 1px solid rgba(30, 144, 255, 0.4);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e90ff;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    padding: 20px;
    gap: 15px;
    border-bottom: 2px solid #1e90ff;
}

nav.mobile-nav.active {
    display: flex;
}

nav.mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(233, 30, 99, 0.2);
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-light);
}


/* REFERRAL SECTION */

.referral-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    text-align: center;
}

/* Title */
.ref-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Subtitle text */
.ref-sub {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 700px;
    margin: 10px auto 30px;
}

/* Container cards */
.ref-how-box,
.ref-rewards-box,
.ref-flex-box {
    background: #0f1623;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 22px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: left;
}

/* Headers inside boxes */
.ref-how-box h3,
.ref-rewards-box h3,
.ref-flex-box h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 10px;
}

/* List styling */
.ref-how-box ul {
    list-style: none;
    padding-left: 0;
}

.ref-how-box ul li {
    padding-left: 24px;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    position: relative;
}

.ref-how-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent);
    font-weight: bold;
}

/* Reward tier blocks */
.reward-tier {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-tier:last-child {
    border-bottom: none;
}

.reward-tier p {
    font-size: 16px;
    color: white;
}

/* Badge styling */
.tier-badge {
    background: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 10px;
    margin-right: 8px;
}

/* CTA */
.ref-cta-box {
    margin-top: 25px;
    padding-top: 10px;
}

.ref-cta-box p {
    font-size: 16px;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.ref-btn {
    background: var(--accent);
    color: white;
    font-size: 16px;
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.ref-btn:hover {
    background: var(--accent-light);
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4);
}

/* Responsive */
@media(max-width: 768px) {
    .referral-section {
        padding: 25px 18px;
    }
}


/* ================================
   MISSING APP SECTION
================================ */

.missing-app-section {
    margin: 60px auto;
    padding: 50px 20px;
    background: rgba(13, 25, 44, 0.9);
    border: 1px solid rgba(30, 144, 255, 0.3);
    border-radius: 20px;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.25);
}

.missing-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 15px;
}

.missing-text {
    font-size: 18px;
    color: #d0d7e3;
    margin-bottom: 25px;
    line-height: 1.6;
}

.missing-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #1e90ff, #0b3d91);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.missing-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
    .missing-title {
        font-size: 26px;
    }

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

    .missing-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;

    background-image: url("images/hero-bg.jpg");
    /* 👈 your image path */
    background-size: cover;
    /* makes it responsive */
    background-position: center;
    /* crops nicely */
    background-repeat: no-repeat;
}


.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* adjustable overlay darkness */
    z-index: 1;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(-60px) translateX(-20px);
    }

    75% {
        transform: translateY(-30px) translateX(20px);
    }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 700;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.hero-slogan-container {
    margin-bottom: 50px;
}

.hero-slogan {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.slogan-part-1 {
    display: inline;
}

.slogan-part-3 {
    display: inline;
}

.changing-word-wrapper {
    display: inline-block;
    position: relative;
    width: 180px;
    height: 38px;
    overflow: hidden;
    vertical-align: baseline;
    margin: 0 8px;
}

.changing-word {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 32px;
    opacity: 0;
    animation: slideUp 3s infinite;
}

.changing-word:nth-child(1) {
    animation-delay: 0s;
}

.changing-word:nth-child(2) {
    animation-delay: 1s;
}

.changing-word:nth-child(3) {
    animation-delay: 2s;
}

@keyframes slideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    32% {
        transform: translateY(0);
        opacity: 1;
    }

    34% {
        transform: translateY(-40px);
        opacity: 0;
    }

    100% {
        transform: translateY(-40px);
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 16px 50px;
    font-size: 16px;
    border-radius: 35px;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-hero.primary {
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    color: white;
}

.btn-hero.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #1e90ff;
}

.btn-hero.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #1e90ff;
}

.btn-hero.secondary:hover {
    background: #1e90ff;
    transform: translateY(-3px);
}

/* Category Sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.channel-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.channel-card:hover {
    transform: translateY(-10px);
    border-color: #1e90ff;
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
}

@media (min-width: 769px) {
    .channel-card:hover {
        transform: translateY(-10px);
        border-color: #1e90ff;
        box-shadow: 0 20px 50px rgba(233, 30, 99, 0.3);
    }
}

.channel-thumbnail {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border-radius: 15px;
}

.channel-info {
    padding: 15px;
}

.channel-name {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.channel-category {
    color: #999;
    font-size: 12px;
    margin-bottom: 12px;
}

.channel-btn {
    width: 100%;
    padding: 8px;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.channel-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: rgba(15, 15, 15, 0.95);
    padding: 50px 20px;
    border-top: 2px solid #1e90ff;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #1e90ff;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #1e90ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
    color: #999;
}

/* ===========================
   STREAMING APPS PAGE UI & Pro Tools and Ai Subs
   =========================== */

.apps-section {
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.apps-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 40px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.apps-title-tools {
    font-size: 36px;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 40px;
}

/* APP CARD */
.app-card {
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.15);
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 144, 255, 0.4);
    border-color: #1e90ff;
}

/* Logo */
.app-logo {
    width: 90px;
    /* consistent width */
    height: 90px;
    /* consistent height */
    object-fit: contain;
    /* keep the proportions */
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    margin: 0 auto 15px auto;
    display: block;
    background: aliceblue;
}

/* Name */
.app-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

/* Description */
.app-desc {
    font-size: 14px;
    color: #c7d0dd;
    margin-bottom: 18px;
}

/* BUY BUTTON */
.app-buy-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1e90ff, #0d47a1);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.app-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
    .apps-title-tools {
        font-size: 18px;
        font-weight: 700;
        color: #1e90ff;
        margin-bottom: 40px;
    }

    .apps-title {
        color: #1e90ff;
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .app-card {
        padding: 18px;
    }

    .app-logo {
        width: 80px;
        background-color: aliceblue;
    }
}

@media (max-width: 480px) {
    .apps-title-tools {
        font-size: 18px;
        font-weight: 700;
        color: #1e90ff;
        margin-bottom: 40px;
    }

    .apps-title {
        color: #1e90ff;
        font-size: 26px;
        font-weight: 600;
        padding-bottom: 40px;
    }

    .app-card {
        padding: 18px;
    }

    .app-logo {
        width: 80px;
        background-color: aliceblue;
    }
}



/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-slogan {
        font-size: 26px;
    }

    .channels-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .hero-slogan-container {
        margin-bottom: 40px;
    }

    .hero-slogan {
        font-size: 18px;
        line-height: 1.6;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .slogan-part-1 {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .slogan-part-3 {
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .changing-word-wrapper {
        width: 120px;
        height: 26px;
        margin: 0 4px;
    }

    .changing-word {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }

    .channels-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

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

    @media (max-width: 480px) {
        .logo {
            font-size: 18px;
        }

        .hero-content h1 {
            font-size: 20px;
            margin-bottom: 20px;
            line-height: 1.25;
        }

        .hero-slogan-container {
            margin-bottom: 30px;
        }

        .hero-slogan {
            font-size: 14px;
            line-height: 1.5;
            gap: 3px;
        }

        .slogan-part-1 {
            display: block;
            width: 100%;
            margin-bottom: 8px;
        }

        .slogan-part-3 {
            display: block;
            width: 100%;
            margin-top: 8px;
        }

        .changing-word-wrapper {
            width: 90px;
            height: 20px;
            margin: 0 2px;
        }

        .changing-word {
            font-size: 14px;
        }

        .hero-buttons {
            flex-direction: row;
            gap: 15px;
            width: 100%;
            justify-content: center;
        }

        .btn-hero {
            flex: 1;
            min-width: 140px;
            padding: 12px 20px;
            font-size: 13px;
            border-radius: 25px;
        }

        .channels-grid {
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 12px;
        }

        .channel-thumbnail {
            height: 100px;
            font-size: 12px;
        }

        .channel-info {
            padding: 12px;
        }

        .channel-name {
            font-size: 14px;
        }

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

        .footer-content {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .object-1,
        .object-2,
        .object-3,
        .object-4 {
            opacity: 0.05;
        }

    }

    .review-text {
        color: #1e90ff;
        font-size: 30px;
        font-weight: 600;
    }

    .review-subtext {
        color: #d0d7e3;
        font-size: 16px;
        text-align: center;
        margin-top: 10px;
    }
}