@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-display: swap;
    font-weight: 200 800;
    src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: #fff;
    color: #111;
}

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

a {
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* =====================================================
   SITE HEADER
   ===================================================== */

.site-header {
    position: relative;
    z-index: 999;

    width: 100%;

    background: #000000;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* Scrolled state */

.site-header.header-scrolled {
    background:
        rgba(7, 24, 47, 0.97);

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.15);
}


/* Header inner */

.header-inner {
    display: flex;

    align-items: center;

    min-height: 78px;
}


/* =====================================================
   LOGO
   ===================================================== */

.header-brand {
    flex-shrink: 0;
}

.site-logo {
    display: inline-flex;

    align-items: center;

    color: #FFFFFF;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -0.7px;
}

.site-logo:hover {
    color: #FFFFFF;
}

.site-logo-catch {
    color: #FFFFFF;
}

.site-logo-tv {
    margin-left: 4px;

    color: #E7412F;
}


/* =====================================================
   DESKTOP NAVIGATION
   ===================================================== */

.desktop-navigation {
    margin-left: auto;
    margin-right: 35px;
}

.desktop-menu {
    display: flex;

    align-items: center;

    gap: 4px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.desktop-menu > li {
    position: relative;

    margin: 0;
}

.desktop-menu > li > a {
    display: flex;

    align-items: center;

    min-height: 78px;

    padding: 0 15px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 14px;
    font-weight: 600;

    transition:
        color 0.2s ease;
}

.desktop-menu > li > a:hover {
    color: #FFFFFF;
}


/* Current page */

.desktop-menu .current-menu-item > a,
.desktop-menu .current_page_item > a,
.desktop-menu .current-menu-ancestor > a {
    color: #E7412F;
}


/* Active underline */

.desktop-menu > li > a::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 17px;

    height: 2px;

    transform: scaleX(0);

    border-radius: 5px;

    background: #E7412F;

    transition:
        transform 0.2s ease;
}

.desktop-menu > li > a:hover::after,
.desktop-menu .current-menu-item > a::after,
.desktop-menu .current_page_item > a::after {
    transform: scaleX(1);
}


/* =====================================================
   HEADER CTA
   ===================================================== */

.header-actions {
    flex-shrink: 0;
}

.header-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 21px;

    border-radius: 7px;

    background: #E7412F;

    color: #FFFFFF;

    font-size: 14px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);

    background: #E7412F;

    color: #FFFFFF;
}


/* =====================================================
   MOBILE MENU BUTTON
   ===================================================== */

.mobile-menu-toggle {
    display: none;

    position: relative;

    width: 45px;
    height: 45px;

    margin-left: auto;

    padding: 0;

    border: 0;
    border-radius: 7px;

    background:
        rgba(255, 255, 255, 0.07);

    cursor: pointer;
}

.hamburger-line {
    position: absolute;

    left: 11px;

    width: 23px;
    height: 2px;

    border-radius: 3px;

    background: #FFFFFF;

    transition:
        transform 0.25s ease,
        opacity 0.2s ease,
        top 0.25s ease;
}

.hamburger-line:nth-child(1) {
    top: 14px;
}

.hamburger-line:nth-child(2) {
    top: 21px;
}

.hamburger-line:nth-child(3) {
    top: 28px;
}


/* Hamburger → X */

.mobile-menu-toggle.active
.hamburger-line:nth-child(1) {
    top: 21px;

    transform: rotate(45deg);
}

.mobile-menu-toggle.active
.hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active
.hamburger-line:nth-child(3) {
    top: 21px;

    transform: rotate(-45deg);
}


/* =====================================================
   MOBILE NAVIGATION
   ===================================================== */

.mobile-navigation {
    display: none;

    overflow: hidden;

    max-height: 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    background: #000000;

    transition:
        max-height 0.35s ease;
}

.mobile-navigation.active {
    max-height: 650px;
}

.mobile-navigation-inner {
    padding-top: 17px;
    padding-bottom: 25px;
}

.mobile-menu {
    margin: 0 0 20px;
    padding: 0;

    list-style: none;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: flex;

    align-items: center;

    padding: 14px 5px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 16px;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: #E7412F;
}

.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a {
    color: #E7412F;
}


/* Mobile CTA */

.mobile-menu-cta {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 50px;

    border-radius: 8px;

    background: #E7412F;

    color: #FFFFFF;

    font-weight: 700;
}

.mobile-menu-cta:hover {
    background: #E7412F;

    color: #FFFFFF;
}


/* Prevent page scrolling */

body.mobile-menu-open {
    overflow: hidden;
}


/* =====================================================
   HEADER RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

    .header-inner {
        min-height: 70px;
    }

    .desktop-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-navigation {
        display: block;
    }

    .site-logo {
        font-size: 23px;
    }

}

.site-header {
    width: 100%;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-page {
    background: #FFFFFF;
}


/* =====================================================
   CONTACT HERO
   ===================================================== */

.contact-hero {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 55%,
            #E7412F 100%
        );

    color: #FFFFFF;

    text-align: center;
}

.contact-hero .container {
    max-width: 850px;
}

.contact-hero .section-label {
    color: #E7412F;
}

.contact-hero h1 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: clamp(
        44px,
        6vw,
        68px
    );

    line-height: 1.05;
}

.contact-hero p {
    max-width: 700px;

    margin: 0 auto;

    color:
        rgba(
            255,
            255,
            255,
            0.84
        );

    font-size: 18px;
    line-height: 1.7;
}


/* =====================================================
   CONTACT LAYOUT
   ===================================================== */

.contact-section {
    padding: 105px 0;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items: start;

    gap: 80px;
}


/* =====================================================
   CONTACT INFORMATION
   ===================================================== */

.contact-information h2 {
    margin: 0 0 18px;

    color: #000000;

    font-size: clamp(
        34px,
        4vw,
        47px
    );

    line-height: 1.1;
}

.contact-intro {
    margin: 0 0 40px;

    color: #000000;

    font-size: 17px;
    line-height: 1.7;
}

.contact-info-list {
    display: grid;

    gap: 28px;
}

.contact-info-item {
    display: flex;

    align-items: flex-start;

    gap: 18px;
}

.contact-info-icon {
    display: flex;
    flex: 0 0 50px;

    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 12px;

    background: #FFFFFF;

    font-size: 23px;
}

.contact-info-item h3 {
    margin: 0 0 7px;

    color: #000000;

    font-size: 18px;
}

.contact-info-item p,
.contact-info-item address {
    margin: 0;

    color: #000000;

    font-style: normal;
    line-height: 1.65;
}


/* Support box */

.contact-support-box {
    margin-top: 40px;

    padding: 27px;

    border-radius: 15px;

    background: #FFFFFF;
}

.contact-support-box h3 {
    margin: 0 0 9px;

    font-size: 19px;
}

.contact-support-box p {
    margin: 0 0 15px;

    color: #000000;

    line-height: 1.65;
}

.contact-text-link {
    color: #E7412F;

    font-weight: 700;
}


/* =====================================================
   FORM CARD
   ===================================================== */

.contact-form-card {
    padding: 42px;

    border: 1px solid #FFFFFF;
    border-radius: 20px;

    background: #FFFFFF;

    box-shadow:
        0 18px 55px
        rgba(0, 0, 0, 0.09);
}

.contact-form-card h2 {
    margin: 0 0 10px;

    color: #000000;

    font-size: 30px;
}

.contact-form-description {
    margin: 0 0 30px;

    color: #000000;

    line-height: 1.65;
}


/* =====================================================
   FORM FIELDS
   ===================================================== */

.contact-form-row {
    margin-bottom: 22px;
}

.contact-form-row label {
    display: block;

    margin-bottom: 8px;

    color: #000000;

    font-size: 14px;
    font-weight: 700;
}

.contact-form-row label span {
    color: #E7412F;
}

.contact-form-row input,
.contact-form-row select,
.contact-form-row textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #FFFFFF;
    border-radius: 8px;

    background: #FFFFFF;

    color: #000000;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form-row input,
.contact-form-row select {
    min-height: 50px;
}

.contact-form-row textarea {
    min-height: 160px;

    resize: vertical;
}

.contact-form-row input:focus,
.contact-form-row select:focus,
.contact-form-row textarea:focus {
    border-color: #E7412F;

    box-shadow:
        0 0 0 3px
        rgba(231, 65, 47, 0.11);
}


/* =====================================================
   FORM BUTTON
   ===================================================== */

.contact-submit-button {
    width: 100%;

    min-height: 53px;

    border: 0;

    font-family: inherit;
    font-size: 15px;

    cursor: pointer;
}

.contact-form-note {
    margin: 13px 0 0;

    color: #000000;

    font-size: 12px;

    text-align: center;
}


/* =====================================================
   FORM MESSAGES
   ===================================================== */

.contact-form-message {
    margin-bottom: 25px;

    padding: 15px 18px;

    border-radius: 8px;

    font-size: 14px;
    line-height: 1.5;
}

.contact-form-success {
    border: 1px solid #FFFFFF;

    background: #FFFFFF;

    color: #E7412F;
}

.contact-form-error {
    border: 1px solid #FFFFFF;

    background: #FFFFFF;

    color: #E7412F;
}


/* =====================================================
   HONEYPOT
   ===================================================== */

.contact-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* =====================================================
   CONTACT RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        padding: 75px 0;
    }

    .contact-section {
        padding: 75px 0;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

}


/* =====================================================
   SITE FOOTER
   ===================================================== */

.site-footer {
    padding: 0;

    background: #000000;

    color: rgba(255, 255, 255, 0.74);
}

.footer-main {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.35fr;

    gap: 55px;

    padding-top: 75px;
    padding-bottom: 65px;
}


/* Logo */

.footer-logo {
    display: inline-flex;

    margin-bottom: 20px;

    font-size: 27px;
    font-weight: 800;

    letter-spacing: -0.7px;
}

.footer-logo-catch {
    color: #FFFFFF;
}

.footer-logo-tv {
    margin-left: 4px;

    color: #E7412F;
}


/* Description */

.footer-description {
    max-width: 350px;

    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
    line-height: 1.75;
}


/* Footer CTA */

.footer-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 43px;

    padding: 0 19px;

    border-radius: 7px;

    background: #E7412F;

    color: #FFFFFF;

    font-size: 14px;
    font-weight: 700;
}

.footer-cta:hover {
    background: #E7412F;

    color: #FFFFFF;
}


/* Headings */

.footer-column h3 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: 16px;
}


/* Footer menus */

.footer-menu {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-menu li {
    margin-bottom: 11px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
}

.footer-menu a:hover {
    color: #E7412F;
}


/* Contact */

.footer-contact address {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 14px;
    font-style: normal;
    line-height: 1.75;
}

.footer-support-text {
    margin: 0 0 8px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
    line-height: 1.6;
}

.footer-contact-link {
    color: #E7412F;

    font-size: 14px;
    font-weight: 700;
}


/* =====================================================
   FOOTER BOTTOM
   ===================================================== */

.footer-bottom {
    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-height: 74px;
}

.footer-bottom p {
    margin: 0;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
}

.footer-bottom-links {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
}

.footer-bottom-links a:hover {
    color: #E7412F;
}


/* =====================================================
   FOOTER RESPONSIVE
   ===================================================== */

@media (max-width: 1000px) {

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 60px;
        padding-bottom: 50px;
    }

    .footer-bottom-inner {
        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 12px;

        padding-top: 20px;
        padding-bottom: 20px;
    }

}
/* =====================================================
   CHANNEL LIST PAGE
   ===================================================== */

.channel-list-page {
    background: #FFFFFF;
}


/* Hero */

.channels-hero {
    padding: 110px 0;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 55%,
            #E7412F 100%
        );
    color: #FFFFFF;
}

.channels-hero .container {
    max-width: 900px;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E7412F;
}

.channels-hero .section-label {
    color: #E7412F;
}

.channels-hero h1 {
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    color: #FFFFFF;
}

.channels-hero-text {
    max-width: 760px;
    margin: 0 auto 35px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}


/* Global button */

.catchon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 8px;
    background: #E7412F;
    color: #FFFFFF;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.catchon-button:hover {
    background: #E7412F;
    color: #FFFFFF;
    transform: translateY(-2px);
}


/* Intro */

.channels-intro {
    padding: 90px 0 45px;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #000000;
}


/* Category cards */

.channel-categories {
    padding: 45px 0 100px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.channel-category-card {
    padding: 38px;
    border: 1px solid #FFFFFF;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.channel-category-card:hover {
    transform: translateY(-6px);
    border-color: #E7412F;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    border-radius: 14px;
    background: #FFFFFF;
    font-size: 30px;
}

.channel-category-card h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.channel-category-card p {
    margin: 0 0 22px;
    color: #000000;
    line-height: 1.65;
}

.channel-category-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.channel-category-card li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: #000000;
}

.channel-category-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E7412F;
    font-weight: 700;
}


/* International */

.international-channels {
    padding: 100px 0;
    background: #FFFFFF;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.country-item {
    padding: 20px 15px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    background: #FFFFFF;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}


/* Quality CTA */

.channel-quality {
    padding: 100px 0;
}

.channel-quality-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px;
    border-radius: 20px;
    background: #000000;
    color: #FFFFFF;
}

.channel-quality-box > div {
    max-width: 720px;
}

.channel-quality-box h2 {
    margin: 0 0 15px;
    font-size: clamp(30px, 4vw, 44px);
    color: #FFFFFF;
}

.channel-quality-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}


/* Final CTA */

.channels-final-cta {
    padding: 95px 0;
    text-align: center;
    background: #E7412F;
    color: #FFFFFF;
}

.channels-final-cta .container {
    max-width: 800px;
}

.channels-final-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 50px);
    color: #FFFFFF;
}

.channels-final-cta p {
    margin: 0 auto 30px;
    max-width: 650px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.catchon-button-light {
    background: #FFFFFF;
    color: #E7412F;
}

.catchon-button-light:hover {
    background: #FFFFFF;
    color: #E7412F;
}


/* Channel page responsive */

@media (max-width: 1000px) {

    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .country-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 700px) {

    .channels-hero {
        padding: 80px 0;
    }

    .channels-intro {
        padding-top: 70px;
    }

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

    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channel-category-card {
        padding: 28px;
    }

    .channel-quality-box {
        display: block;
        padding: 35px 25px;
    }

    .channel-quality-box .catchon-button {
        margin-top: 30px;
    }

}


@media (max-width: 420px) {

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

}
/* =====================================================
   APP PAGE
   ===================================================== */

.app-page {
    background: #FFFFFF;
}


/* Hero */

.app-hero {
    padding: 105px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 55%,
            #E7412F 100%
        );
    color: #FFFFFF;
}

.app-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.app-hero-content {
    max-width: 700px;
}

.app-hero .section-label {
    color: #E7412F;
}

.app-hero h1 {
    margin: 0 0 24px;
    font-size: clamp(44px, 6vw, 70px);
    line-height: 1.03;
    color: #FFFFFF;
}

.app-hero-content > p {
    max-width: 650px;
    margin: 0 0 35px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
}

.app-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.catchon-button-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #FFFFFF;
}

.catchon-button-outline:hover {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: #E7412F;
}


/* App visual */

.app-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-device-card {
    width: min(100%, 380px);
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.app-device-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 105px;
    height: 105px;
    margin: 0 auto 28px;
    border-radius: 25px;
    background: #E7412F;
    color: #FFFFFF;
    font-size: 42px;
}

.app-device-card h3 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #FFFFFF;
}

.app-device-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}


/* Intro */

.app-intro {
    padding: 100px 0 50px;
}


/* Features */

.app-features {
    padding: 50px 0 110px;
}

.app-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.app-feature-card {
    padding: 36px;
    border: 1px solid #FFFFFF;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.app-feature-card:hover {
    transform: translateY(-5px);
    border-color: #E7412F;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
}

.app-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    border-radius: 15px;
    background: #FFFFFF;
    font-size: 28px;
}

.app-feature-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
}

.app-feature-card p {
    margin: 0;
    color: #000000;
    line-height: 1.7;
}


/* Devices */

.app-devices {
    padding: 100px 0;
    background: #FFFFFF;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 55px;
}

.device-card {
    padding: 30px;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    background: #FFFFFF;
    text-align: center;
}

.device-card-icon {
    margin-bottom: 16px;
    font-size: 40px;
}

.device-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.device-card p {
    margin: 0;
    color: #000000;
    line-height: 1.6;
}


/* Benefits */

.app-benefits {
    padding: 110px 0;
}

.app-benefits-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.app-benefits-content h2 {
    margin: 0 0 20px;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.1;
}

.app-benefits-content > p {
    margin: 0 0 38px;
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
}

.app-benefit-list {
    display: grid;
    gap: 25px;
}

.app-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.app-benefit-item > span {
    display: flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 2px;
    border-radius: 50%;
    background: #FFFFFF;
    color: #E7412F;
    font-weight: 800;
}

.app-benefit-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.app-benefit-item p {
    margin: 0;
    color: #000000;
    line-height: 1.6;
}


/* Benefits box */

.app-benefits-box {
    padding: 50px;
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            #000000,
            #E7412F
        );
    color: #FFFFFF;
    box-shadow: 0 25px 60px rgba(7, 24, 47, 0.2);
}

.app-benefits-small {
    display: block;
    margin-bottom: 15px;
    color: #E7412F;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.app-benefits-box h3 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.15;
    color: #FFFFFF;
}

.app-benefits-box p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}


/* Download */

.app-download {
    padding: 110px 0;
    background: #FFFFFF;
}

.app-download-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.app-download-box h2 {
    margin: 0 0 18px;
    font-size: clamp(35px, 5vw, 50px);
}

.app-download-box > p {
    max-width: 650px;
    margin: 0 auto 40px;
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
}

.download-options {
    display: grid;
    gap: 16px;
    max-width: 750px;
    margin: 0 auto;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 22px;
    border: 1px solid #FFFFFF;
    border-radius: 14px;
    background: #FFFFFF;
    text-align: left;
}

.download-icon {
    display: flex;
    flex: 0 0 55px;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #FFFFFF;
    font-size: 28px;
}

.download-option-content {
    flex: 1;
}

.download-option-content span {
    display: block;
    margin-bottom: 4px;
    color: #000000;
    font-size: 13px;
}

.download-option-content strong {
    display: block;
    font-size: 18px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 7px;
    background: #E7412F;
    color: #FFFFFF;
    font-weight: 700;
}

.download-button:hover {
    background: #E7412F;
    color: #FFFFFF;
}

.download-note {
    margin-top: 25px !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    color: #000000 !important;
}


/* Final CTA */

.app-final-cta {
    padding: 95px 0;
    background: #E7412F;
    color: #FFFFFF;
    text-align: center;
}

.app-final-cta .container {
    max-width: 800px;
}

.app-final-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 50px);
    color: #FFFFFF;
}

.app-final-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
}


/* Responsive */

@media (max-width: 1000px) {

    .app-hero-grid,
    .app-benefits-grid {
        grid-template-columns: 1fr;
    }

    .app-hero-grid {
        gap: 60px;
    }

    .app-feature-grid,
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-hero-content {
        max-width: 800px;
    }

}


@media (max-width: 700px) {

    .app-hero {
        padding: 75px 0;
    }

    .app-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .app-hero-buttons .catchon-button {
        width: 100%;
    }

    .app-feature-grid,
    .device-grid {
        grid-template-columns: 1fr;
    }

    .app-benefits-box {
        padding: 35px 25px;
    }

    .download-option {
        flex-wrap: wrap;
    }

    .download-button {
        width: 100%;
        margin-top: 5px;
    }

}
/* =====================================================
   FAQ PAGE
   ===================================================== */

.faq-page {
    background: #FFFFFF;
}


/* Hero */

.faq-hero {
    padding: 105px 0;
    background:
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 55%,
            #E7412F 100%
        );
    color: #FFFFFF;
    text-align: center;
}

.faq-hero .container {
    max-width: 850px;
}

.faq-hero .section-label {
    color: #E7412F;
}

.faq-hero h1 {
    margin: 0 0 20px;
    color: #FFFFFF;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.05;
}

.faq-hero p {
    max-width: 700px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.7;
}


/* FAQ Section */

.faq-section {
    padding: 105px 0;
}

.faq-section .section-heading {
    margin-bottom: 55px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}


/* FAQ Item */

.faq-item {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #FFFFFF;
    border-radius: 13px;
    background: #FFFFFF;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: #FFFFFF;
}

.faq-item.active {
    border-color: #E7412F;
    box-shadow: 0 10px 30px rgba(12, 70, 130, 0.08);
}


/* Question */

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 23px 25px;

    border: 0;
    background: transparent;

    color: #000000;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;

    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: #E7412F;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(231, 65, 47, 0.25);
    outline-offset: -3px;
}


/* Plus icon */

.faq-icon {
    display: flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #FFFFFF;
    color: #E7412F;

    font-size: 25px;
    font-weight: 400;
    line-height: 1;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #E7412F;
    color: #FFFFFF;
}


/* Answer */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.35s ease;
}

.faq-answer-inner {
    padding:
        0
        75px
        26px
        25px;
}

.faq-answer p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.75;
}

.faq-answer p + p {
    margin-top: 15px;
}

.faq-answer a {
    color: #E7412F;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}


/* Bottom CTA */

.faq-contact-cta {
    padding: 95px 0;
    background: #E7412F;
    color: #FFFFFF;
    text-align: center;
}

.faq-contact-cta .container {
    max-width: 800px;
}

.faq-contact-cta .section-label {
    color: #FFFFFF;
}

.faq-contact-cta h2 {
    margin: 0 0 17px;
    color: #FFFFFF;
    font-size: clamp(34px, 5vw, 50px);
}

.faq-contact-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.faq-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
}

.faq-secondary-button:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}


/* FAQ Mobile */

@media (max-width: 700px) {

    .faq-hero {
        padding: 75px 0;
    }

    .faq-section {
        padding: 75px 0;
    }

    .faq-question {
        padding: 20px;
        gap: 15px;
        font-size: 17px;
    }

    .faq-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .faq-answer-inner {
        padding:
            0
            20px
            22px
            20px;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .faq-cta-buttons .catchon-button {
        width: 100%;
    }

}
/* =====================================================
   PRICING PAGE
   ===================================================== */

.pricing-page {
    background: #FFFFFF;
}


/* Hero */

.pricing-hero {
    padding: 105px 0;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 55%,
            #E7412F 100%
        );
    color: #FFFFFF;
}

.pricing-hero .container {
    max-width: 900px;
}

.pricing-hero .section-label {
    color: #E7412F;
}

.pricing-hero h1 {
    margin: 0 0 22px;
    color: #FFFFFF;
    font-size: clamp(44px, 6vw, 68px);
    line-height: 1.05;
}

.pricing-hero p {
    max-width: 750px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.7;
}


/* Pricing section */

.pricing-section {
    padding: 105px 0;
}


/* Device selector */

.pricing-device-tabs {
    display: flex;
    max-width: 800px;
    margin: 50px auto 55px;
    padding: 7px;
    gap: 6px;

    border: 1px solid #FFFFFF;
    border-radius: 14px;

    background: #FFFFFF;
}

.pricing-device-tab {
    flex: 1;

    padding: 15px 12px;

    border: 0;
    border-radius: 9px;

    background: transparent;
    color: #000000;

    font-family: inherit;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.pricing-device-tab:hover {
    color: #E7412F;
}

.pricing-device-tab.active {
    background: #E7412F;
    color: #FFFFFF;

    box-shadow:
        0 6px 18px
        rgba(231, 65, 47, 0.2);
}


/* Pricing panels */

.pricing-device-panel {
    display: none;
}

.pricing-device-panel.active {
    display: block;
}


/* Cards */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 35px 28px;

    border: 1px solid #FFFFFF;
    border-radius: 18px;

    background: #FFFFFF;

    box-shadow:
        0 12px 40px
        rgba(0, 0, 0, 0.07);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

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

    border-color: #E7412F;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.12);
}


.pricing-card-featured {
    border: 2px solid #E7412F;
}


/* Popular label */

.pricing-popular-badge {
    position: absolute;

    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 16px;

    border-radius: 30px;

    background: #E7412F;
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Card header */

.pricing-card-header {
    padding-bottom: 25px;
    text-align: center;
}

.pricing-card-header h3 {
    margin: 0 0 7px;
    font-size: 25px;
}

.pricing-plan-label {
    color: #000000;
    font-size: 14px;
}


/* Price */

.pricing-card-price {
    min-height: 65px;

    margin-bottom: 5px;

    color: #000000;

    font-size: 42px;
    font-weight: 800;
    line-height: 1;

    text-align: center;
}

.pricing-card-price del {
    display: block;

    margin-bottom: 7px;

    color: #000000;

    font-size: 17px;
    font-weight: 500;
}

.pricing-card-price ins {
    text-decoration: none;
}

.pricing-card-price .woocommerce-Price-currencySymbol {
    font-size: 23px;
    vertical-align: top;
}

.pricing-unavailable {
    font-size: 23px;
    color: #000000;
}


/* Device count */

.pricing-device-count {
    margin-bottom: 25px;

    color: #E7412F;

    font-size: 14px;
    font-weight: 700;

    text-align: center;
}


/* Features */

.pricing-features {
    flex: 1;

    margin: 0 0 30px;
    padding: 25px 0 0;

    border-top: 1px solid #FFFFFF;

    list-style: none;
}

.pricing-features li {
    position: relative;

    padding: 9px 0 9px 25px;

    color: #000000;

    font-size: 14px;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #E7412F;

    font-weight: 800;
}


/* Order button */

.pricing-order-button {
    width: 100%;
}

.pricing-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}


/* Includes */

.pricing-includes {
    padding: 100px 0;
    background: #FFFFFF;
}

.pricing-includes-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    margin-top: 55px;
}

.pricing-include-item {
    padding: 35px 28px;

    border: 1px solid #FFFFFF;
    border-radius: 16px;

    background: #FFFFFF;

    text-align: center;
}

.pricing-include-item > span {
    display: block;

    margin-bottom: 20px;

    font-size: 38px;
}

.pricing-include-item h3 {
    margin: 0 0 12px;

    font-size: 20px;
}

.pricing-include-item p {
    margin: 0;

    color: #000000;

    line-height: 1.65;
}


/* Compatibility */

.pricing-compatibility {
    padding: 100px 0;
}

.compatibility-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;

    margin-top: 50px;
}

.compatibility-item {
    padding: 25px 15px;

    border: 1px solid #FFFFFF;
    border-radius: 13px;

    background: #FFFFFF;

    text-align: center;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.05);
}

.compatibility-item span {
    display: block;

    margin-bottom: 12px;

    font-size: 31px;
}

.compatibility-item strong {
    font-size: 15px;
}


/* Guarantee */

.pricing-guarantee {
    padding: 30px 0 100px;
}

.pricing-guarantee-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 55px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #000000,
            #E7412F
        );

    color: #FFFFFF;
}

.pricing-guarantee-box > div {
    max-width: 720px;
}

.pricing-guarantee-box .section-label {
    color: #E7412F;
}

.pricing-guarantee-box h2 {
    margin: 0 0 17px;

    color: #FFFFFF;

    font-size: clamp(
        30px,
        4vw,
        43px
    );
}

.pricing-guarantee-box p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.78
        );

    line-height: 1.7;
}


/* =====================================================
   PRICING RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {

    .pricing-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .pricing-includes-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .compatibility-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 700px) {

    .pricing-hero {
        padding: 75px 0;
    }

    .pricing-section {
        padding: 75px 0;
    }

    .pricing-device-tabs {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        margin-top: 40px;
    }

    .pricing-device-tab:last-child {
        grid-column:
            1 / -1;
    }

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

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

    .compatibility-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .pricing-guarantee-box {
        display: block;

        padding: 35px 25px;
    }

    .pricing-guarantee-box .catchon-button {
        width: 100%;

        margin-top: 30px;
    }

}


@media (max-width: 420px) {

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

    .pricing-device-tab:last-child {
        grid-column: auto;
    }

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

}
/* =====================================================
   HOMEPAGE
   ===================================================== */


/* HERO */

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 105px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(231, 65, 47, 0.25),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 55%,
            #E7412F 100%
        );

    color: #FFFFFF;
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.home-hero-content {
    max-width: 720px;
}

.home-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #E7412F;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
}

.home-hero h1 {
    margin: 0 0 25px;

    color: #FFFFFF;

    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.02;

    letter-spacing: -1.5px;
}

.home-hero-description {
    max-width: 660px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 19px;
    line-height: 1.75;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 45px;
}

.home-outline-button {
    border: 1px solid rgba(255, 255, 255, 0.5);

    background: transparent;
}

.home-outline-button:hover {
    border-color: #FFFFFF;

    background: #FFFFFF;
    color: #E7412F;
}


/* HERO STATS */

.home-hero-highlights {
    display: flex;
    gap: 40px;
}

.home-hero-highlights > div {
    display: flex;
    flex-direction: column;
}

.home-hero-highlights strong {
    margin-bottom: 3px;

    color: #FFFFFF;

    font-size: 27px;
}

.home-hero-highlights span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}


/* HERO VISUAL */

.home-hero-visual {
    display: flex;
    justify-content: center;
}

.streaming-screen {
    width: min(100%, 520px);

    padding: 25px;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;

    background: rgba(8, 22, 42, 0.7);

    box-shadow:
        0 40px 80px
        rgba(0, 0, 0, 0.3);
}

.streaming-screen-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.screen-logo {
    font-size: 18px;
    font-weight: 800;
}

.screen-live {
    padding: 5px 9px;

    border-radius: 5px;

    background: #E7412F;
    color: #FFFFFF;

    font-size: 10px;
    font-weight: 800;
}

.streaming-featured {
    min-height: 230px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 30px;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #E7412F,
            #000000
        );
}

.streaming-featured span {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}

.streaming-featured h3 {
    max-width: 390px;

    margin: 0;

    color: #FFFFFF;

    font-size: 29px;
    line-height: 1.15;
}

.streaming-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 15px;
}

.stream-card {
    display: flex;
    flex-direction: column;

    padding: 18px 12px;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.08);

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 13px;

    text-align: center;
}

.stream-card span {
    margin-bottom: 7px;

    font-size: 24px;
}


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

.home-features {
    padding: 105px 0;
}

.home-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    margin-top: 55px;
}

.home-feature-card {
    padding: 35px 28px;

    border: 1px solid #FFFFFF;
    border-radius: 17px;

    background: #FFFFFF;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.home-feature-card:hover {
    transform: translateY(-5px);

    border-color: #E7412F;
}

.home-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    margin-bottom: 23px;

    border-radius: 14px;

    background: #FFFFFF;

    font-size: 27px;
}

.home-feature-card h3 {
    margin: 0 0 12px;

    font-size: 21px;
}

.home-feature-card p {
    margin: 0;

    color: #000000;

    line-height: 1.65;
}


/* =====================================================
   HOMEPAGE PRICING
   ===================================================== */

.home-pricing {
    padding: 105px 0;

    background: #FFFFFF;
}

.home-pricing-more {
    margin-top: 35px;

    text-align: center;
}

.home-text-link {
    color: #E7412F;

    font-weight: 700;
}

.home-text-link:hover {
    text-decoration: underline;
}


/* =====================================================
   SPORTS
   ===================================================== */

.home-sports {
    padding: 110px 0;

    background: #000000;

    color: #FFFFFF;
}

.home-sports-grid {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 80px;
}

.home-sports .section-label {
    color: #E7412F;
}

.home-sports h2 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: clamp(36px, 5vw, 52px);
}

.home-sports-content > p {
    max-width: 650px;

    margin: 0 0 30px;

    color:
        rgba(
            255,
            255,
            255,
            0.76
        );

    font-size: 18px;
    line-height: 1.7;
}

.sports-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;
}

.sports-tags span {
    padding: 9px 14px;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.06);

    color:
        rgba(255, 255, 255, 0.84);

    font-size: 13px;
    font-weight: 700;
}

.sports-visual {
    display: flex;
    justify-content: center;
}

.sports-visual-card {
    max-width: 400px;

    padding: 60px 45px;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(231, 65, 47, 0.23),
            rgba(255, 255, 255, 0.04)
        );

    text-align: center;
}

.sports-big-icon {
    display: block;

    margin-bottom: 20px;

    font-size: 74px;
}

.sports-visual-card strong {
    display: block;

    margin-bottom: 10px;

    color: #FFFFFF;

    font-size: 28px;
}

.sports-visual-card p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.7);

    line-height: 1.6;
}


/* =====================================================
   BENEFITS
   ===================================================== */

.home-benefits {
    padding: 105px 0;
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 55px;
}

.benefit-card {
    padding: 32px;

    border: 1px solid #FFFFFF;
    border-radius: 15px;

    background: #FFFFFF;
}

.benefit-card > span {
    display: block;

    margin-bottom: 18px;

    font-size: 34px;
}

.benefit-card h3 {
    margin: 0 0 10px;

    font-size: 20px;
}

.benefit-card p {
    margin: 0;

    color: #000000;

    line-height: 1.65;
}


/* =====================================================
   ABOUT
   ===================================================== */

.home-about {
    padding: 110px 0;

    background: #FFFFFF;
}

.home-about-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items: center;

    gap: 80px;
}

.home-about-visual {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.about-stat-box {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 220px;

    padding: 30px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #000000,
            #E7412F
        );

    color: #FFFFFF;

    text-align: center;
}

.about-stat-box strong {
    margin-bottom: 8px;

    font-size: 38px;
}

.about-stat-box span {
    color:
        rgba(255, 255, 255, 0.73);
}

.home-about-content h2 {
    margin: 0 0 20px;

    font-size: clamp(35px, 5vw, 50px);
    line-height: 1.1;
}

.home-about-content > p {
    margin: 0 0 28px;

    color: #000000;

    font-size: 18px;
    line-height: 1.7;
}

.about-checklist {
    margin: 0 0 32px;
    padding: 0;

    list-style: none;
}

.about-checklist li {
    position: relative;

    padding: 9px 0 9px 28px;
}

.about-checklist li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: #E7412F;

    font-weight: 800;
}


/* =====================================================
   TESTIMONIALS
   ===================================================== */

.home-testimonials {
    padding: 105px 0;
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    margin-top: 55px;
}

.testimonial-card {
    padding: 35px;

    border: 1px solid #FFFFFF;
    border-radius: 17px;

    background: #FFFFFF;

    box-shadow:
        0 12px 40px
        rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    margin-bottom: 20px;

    color: #E7412F;

    letter-spacing: 3px;
}

.testimonial-card > p {
    margin: 0 0 28px;

    color: #000000;

    font-size: 16px;
    line-height: 1.75;
}

.testimonial-customer strong,
.testimonial-customer span {
    display: block;
}

.testimonial-customer span {
    margin-top: 3px;

    color: #000000;

    font-size: 13px;
}


/* =====================================================
   LIBRARY
   ===================================================== */

.home-library {
    padding: 105px 0;

    background: #000000;

    color: #FFFFFF;
}

.home-library .section-label {
    color: #E7412F;
}

.home-library .section-heading h2 {
    color: #FFFFFF;
}

.library-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

    max-width: 900px;

    margin: 55px auto 0;
}

.library-stat {
    padding: 45px;

    border:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.05);
}

.library-stat > strong {
    display: block;

    margin-bottom: 15px;

    color: #E7412F;

    font-size: 49px;
}

.library-stat h3 {
    margin: 0 0 12px;

    color: #FFFFFF;

    font-size: 25px;
}

.library-stat p {
    margin: 0 0 22px;

    color:
        rgba(255, 255, 255, 0.68);

    line-height: 1.65;
}

.library-stat a {
    color: #E7412F;

    font-weight: 700;
}


/* =====================================================
   BLOG
   ===================================================== */

.home-blog {
    padding: 105px 0;
}

.home-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 55px;
}

.home-blog-card {
    overflow: hidden;

    border: 1px solid #FFFFFF;
    border-radius: 17px;

    background: #FFFFFF;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.05);
}

.home-blog-image {
    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #FFFFFF;
}

.home-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.04);
}

.home-blog-content {
    padding: 25px;
}

.home-blog-date {
    display: block;

    margin-bottom: 9px;

    color: #000000;

    font-size: 12px;
}

.home-blog-content h3 {
    margin: 0 0 12px;

    font-size: 20px;
    line-height: 1.35;
}

.home-blog-content h3 a {
    color: #000000;
}

.home-blog-content p {
    margin: 0 0 20px;

    color: #000000;

    line-height: 1.65;
}

.home-blog-readmore {
    color: #E7412F;

    font-weight: 700;
}

.home-blog-empty {
    margin-top: 45px;

    padding: 40px;

    border-radius: 15px;

    background: #FFFFFF;

    text-align: center;
}


/* =====================================================
   FINAL CTA
   ===================================================== */

.home-final-cta {
    padding: 100px 0;

    background: #E7412F;

    color: #FFFFFF;

    text-align: center;
}

.home-final-cta .container {
    max-width: 820px;
}

.home-final-cta .section-label {
    color: #FFFFFF;
}

.home-final-cta h2 {
    margin: 0 0 17px;

    color: #FFFFFF;

    font-size: clamp(37px, 5vw, 54px);
}

.home-final-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 18px;
    line-height: 1.7;
}

.home-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;
}

.home-final-outline {
    border:
        1px solid
        rgba(255, 255, 255, 0.7);

    background: transparent;
}

.home-final-outline:hover {
    border-color: #FFFFFF;

    background:
        rgba(255, 255, 255, 0.1);
}


/* =====================================================
   HOMEPAGE RESPONSIVE
   ===================================================== */

@media (max-width: 1050px) {

    .home-hero-grid,
    .home-sports-grid,
    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-grid,
    .home-sports-grid,
    .home-about-grid {
        gap: 60px;
    }

    .home-feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefits-grid,
    .testimonial-grid,
    .home-blog-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .home-hero {
        padding: 75px 0;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-hero-actions .catchon-button {
        width: 100%;
    }

    .home-hero-highlights {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 15px;
    }

    .home-feature-grid,
    .benefits-grid,
    .testimonial-grid,
    .home-blog-grid,
    .library-grid {
        grid-template-columns: 1fr;
    }

    .home-about-visual {
        grid-template-columns: 1fr;
    }

    .about-stat-box {
        min-height: 170px;
    }

    .streaming-featured {
        min-height: 190px;

        padding: 22px;
    }

    .streaming-cards {
        grid-template-columns: 1fr;
    }

    .home-final-actions {
        flex-direction: column;
    }

    .home-final-actions .catchon-button {
        width: 100%;
    }

}


@media (max-width: 450px) {

    .home-hero-highlights {
        grid-template-columns: 1fr;
    }

}

/* =====================================================
   BLOG & ARCHIVES
   ===================================================== */


/* Blog hero */

.blog-hero {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #000000 0%,
            #000000 55%,
            #E7412F 100%
        );

    color: #FFFFFF;

    text-align: center;
}

.blog-hero .container {
    max-width: 850px;
}

.blog-hero .section-label {
    color: #E7412F;
}

.blog-hero h1 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.05;
}

.blog-hero > .container > p,
.archive-description {
    max-width: 700px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;
    line-height: 1.7;
}

.archive-description p {
    margin: 0;
}


/* Blog listing */

.blog-list-section {
    padding: 100px 0;
}

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;
}


/* Blog cards */

.blog-card {
    overflow: hidden;

    border: 1px solid #FFFFFF;
    border-radius: 17px;

    background: #FFFFFF;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.11);
}


/* Image */

.blog-card-image {
    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #FFFFFF;
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.35s ease;
}

.blog-card:hover
.blog-card-image img {
    transform: scale(1.04);
}


/* No featured image */

.blog-card-placeholder {
    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #000000,
            #E7412F
        );

    color: #FFFFFF;

    font-size: 25px;
    font-weight: 800;
}


/* Card content */

.blog-card-content {
    padding: 27px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 12px;

    color: #000000;

    font-size: 12px;
}

.blog-card-meta a {
    color: #E7412F;
}

.blog-card-content h2 {
    margin: 0 0 13px;

    font-size: 22px;
    line-height: 1.35;
}

.blog-card-content h2 a {
    color: #000000;
}

.blog-card-content h2 a:hover {
    color: #E7412F;
}

.blog-card-content p {
    margin: 0 0 20px;

    color: #000000;

    line-height: 1.7;
}

.blog-read-more {
    color: #E7412F;

    font-weight: 700;
}


/* =====================================================
   PAGINATION
   ===================================================== */

.blog-pagination {
    margin-top: 60px;
}

.blog-pagination .nav-links {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 7px;
}

.blog-pagination .page-numbers {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 42px;

    padding: 0 13px;

    border: 1px solid #FFFFFF;
    border-radius: 7px;

    background: #FFFFFF;

    color: #000000;

    font-size: 14px;
    font-weight: 600;
}

.blog-pagination .page-numbers:hover {
    border-color: #E7412F;

    color: #E7412F;
}

.blog-pagination .page-numbers.current {
    border-color: #E7412F;

    background: #E7412F;

    color: #FFFFFF;
}


/* Empty state */

.blog-empty-state {
    max-width: 700px;

    margin: 0 auto;

    padding: 60px 30px;

    border-radius: 18px;

    background: #FFFFFF;

    text-align: center;
}

.blog-empty-state h2 {
    margin: 0 0 12px;
}

.blog-empty-state p {
    margin: 0;

    color: #000000;
}


/* =====================================================
   SINGLE BLOG POST
   ===================================================== */

.single-post-header {
    padding: 90px 0 60px;

    background:
        linear-gradient(
            135deg,
            #000000,
            #000000
        );

    color: #FFFFFF;
}

.single-post-header-inner {
    max-width: 950px;

    text-align: center;
}

.single-post-categories {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 20px;
}

.single-post-categories a {
    padding: 6px 12px;

    border:
        1px solid
        rgba(255, 255, 255, 0.18);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.07);

    color: #E7412F;

    font-size: 12px;
    font-weight: 700;
}

.single-post-header h1 {
    max-width: 950px;

    margin: 0 auto 22px;

    color: #FFFFFF;

    font-size: clamp(39px, 6vw, 62px);
    line-height: 1.08;
}

.single-post-meta {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 14px;
}


/* Featured image */

.single-featured-section {
    padding: 55px 0 0;
}

.single-featured-section .container {
    max-width: 1100px;
}

.single-featured-image {
    overflow: hidden;

    border-radius: 20px;

    background: #FFFFFF;
}

.single-featured-image img {
    display: block;

    width: 100%;
    height: auto;
}


/* Article layout */

.single-post-content-section {
    padding: 70px 0 110px;
}

.single-post-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 760px)
        300px;

    justify-content: center;

    gap: 70px;
}


/* Post content */

.single-post-content {
    min-width: 0;

    color: #000000;

    font-size: 17px;
    line-height: 1.8;
}

.single-post-content > *:first-child {
    margin-top: 0;
}

.single-post-content p {
    margin: 0 0 24px;
}

.single-post-content h2 {
    margin:
        50px 0
        20px;

    color: #000000;

    font-size: 34px;
    line-height: 1.2;
}

.single-post-content h3 {
    margin:
        38px 0
        16px;

    color: #000000;

    font-size: 26px;
    line-height: 1.25;
}

.single-post-content h4 {
    margin:
        30px 0
        15px;

    font-size: 21px;
}

.single-post-content ul,
.single-post-content ol {
    margin:
        0 0
        26px;

    padding-left: 25px;
}

.single-post-content li {
    margin-bottom: 8px;
}

.single-post-content img {
    max-width: 100%;
    height: auto;

    border-radius: 10px;
}

.single-post-content a {
    color: #E7412F;

    text-decoration: underline;

    text-underline-offset: 3px;
}

.single-post-content blockquote {
    margin:
        35px 0;

    padding:
        25px 30px;

    border-left:
        4px solid #E7412F;

    border-radius:
        0 10px 10px 0;

    background: #FFFFFF;

    color: #000000;
}

.single-post-content blockquote p:last-child {
    margin-bottom: 0;
}


/* Tables */

.single-post-content table {
    width: 100%;

    margin: 30px 0;

    border-collapse: collapse;
}

.single-post-content th,
.single-post-content td {
    padding: 13px;

    border: 1px solid #FFFFFF;

    text-align: left;
}

.single-post-content th {
    background: #FFFFFF;
}


/* Tags */

.single-post-tags {
    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid #FFFFFF;
}

.single-post-tags strong {
    margin-right: 8px;
}

.single-post-tags a {
    display: inline-block;

    margin:
        4px 3px;

    padding:
        6px 10px;

    border-radius: 5px;

    background: #FFFFFF;

    color: #E7412F;

    font-size: 13px;

    text-decoration: none;
}


/* Post navigation */

.single-post-navigation {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    margin-top: 45px;

    padding-top: 35px;

    border-top: 1px solid #FFFFFF;
}

.single-post-navigation span {
    display: block;

    margin-bottom: 6px;

    color: #000000;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.6px;
}

.single-post-navigation a {
    color: #000000;

    font-weight: 700;

    text-decoration: none;
}

.single-post-navigation a:hover {
    color: #E7412F;
}

.post-nav-next {
    text-align: right;
}


/* =====================================================
   BLOG SIDEBAR
   ===================================================== */

.blog-sidebar {
    align-self: start;

    display: grid;

    gap: 22px;
}

.sidebar-box {
    padding: 27px;

    border: 1px solid #FFFFFF;
    border-radius: 15px;

    background: #FFFFFF;

    box-shadow:
        0 8px 28px
        rgba(0, 0, 0, 0.05);
}

.sidebar-box h3 {
    margin:
        0 0
        14px;

    font-size: 20px;
}

.sidebar-box p {
    margin:
        0 0
        19px;

    color: #000000;

    font-size: 14px;
    line-height: 1.65;
}

.sidebar-button {
    width: 100%;
}

.sidebar-category-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.sidebar-category-list li {
    border-bottom: 1px solid #FFFFFF;
}

.sidebar-category-list li:last-child {
    border-bottom: 0;
}

.sidebar-category-list a {
    display: block;

    padding: 10px 0;

    color: #000000;

    font-size: 14px;
}

.sidebar-category-list a:hover {
    color: #E7412F;
}

.sidebar-text-link {
    color: #E7412F;

    font-weight: 700;
}


/* =====================================================
   BLOG RESPONSIVE
   ===================================================== */

@media (max-width: 1000px) {

    .blog-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .single-post-layout {
        grid-template-columns: 1fr;

        max-width: 800px;
    }

    .blog-sidebar {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .blog-hero {
        padding: 75px 0;
    }

    .blog-list-section {
        padding: 75px 0;
    }

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

    .single-post-header {
        padding:
            70px 0
            45px;
    }

    .single-featured-section {
        padding-top: 30px;
    }

    .single-post-content-section {
        padding:
            50px 0
            80px;
    }

    .single-post-content {
        font-size: 16px;
    }

    .single-post-content h2 {
        font-size: 29px;
    }

    .single-post-content h3 {
        font-size: 23px;
    }

    .single-post-navigation {
        grid-template-columns: 1fr;
    }

    .post-nav-next {
        text-align: left;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

}

/* =====================================================
   404 PAGE
   ===================================================== */

.error-404-section {
    min-height: 70vh;

    display: flex;
    align-items: center;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(231, 65, 47, 0.18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #000000,
            #000000
        );

    color: #FFFFFF;

    text-align: center;
}

.error-404-inner {
    max-width: 800px;
}

.error-404-number {
    display: block;

    margin-bottom: 5px;

    color: rgba(105, 183, 255, 0.16);

    font-size: clamp(110px, 20vw, 210px);
    font-weight: 900;
    line-height: 0.9;

    letter-spacing: -8px;
}

.error-404-section .section-label {
    color: #E7412F;
}

.error-404-section h1 {
    margin: 10px 0 20px;

    color: #FFFFFF;

    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.08;
}

.error-404-section p {
    max-width: 650px;

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.7;
}

.error-404-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 13px;
}

.error-404-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);

    background: transparent;
}

.error-404-secondary:hover {
    border-color: #FFFFFF;

    background: #FFFFFF;
    color: #E7412F;
}

.error-404-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;

    margin-top: 45px;
}

.error-404-links a {
    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    font-weight: 600;
}

.error-404-links a:hover {
    color: #E7412F;
}


@media (max-width: 600px) {

    .error-404-section {
        padding: 75px 0;
    }

    .error-404-actions {
        flex-direction: column;
    }

    .error-404-actions .catchon-button {
        width: 100%;
    }

    .error-404-links {
        gap: 15px;
    }

}

/* Remove gap between post header and featured image */
.single-featured-section {
    padding-top: 0;
}