/* --- General Styling --- */
:root {
    --primary-color: #145AFF;
    /* Blue for buttons */
    --text-light: #f1f5f9;
    --text-dark: #1e293b;
    --bg-dark-transparent: rgba(15, 23, 42, 0.5);
    --bg-main: #050714;
}

html,
body {
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Instrument Sans", sans-serif;
    color: var(--text-light);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

/* --- Hero Section & Carousel --- */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-main) 5%, rgba(5, 7, 20, 0.4) 50%, rgba(5, 7, 20, 0.0) 100%);
}

.carousel-slide.active {
    opacity: 1;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

nav {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--bg-dark-transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-radius 0.5s ease-in-out, padding 0.5s ease;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo svg {
    height: 20px;
    width: auto;
}

.logo-cls-1 {
    fill: #fff;
}

.logo-cls-2 {
    fill: var(--primary-color);
}


.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
    /* This centers the links */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #003cbf;
    transform: scale(1.05);
}

.mobile-only {
    display: none;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 99;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.4s ease;
}

/* --- Carousel Controls --- */
.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

.control-btn {
    cursor: pointer;
    background: var(--bg-dark-transparent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

#play-pause-btn .play-icon {
    display: none;
}

#play-pause-btn .pause-icon {
    display: block;
}

#play-pause-btn.pause .play-icon {
    display: block;
}

#play-pause-btn.pause .pause-icon {
    display: none;
}

#carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background-color: #ffffff;
    width: 35px;
    border-radius: 5px;
}

.support-btn {
    position: fixed;
    bottom: 40px;
    right: 2%;
    z-index: 5;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.support-btn:hover {
    background-color: #003cbf;
    transform: scale(1.05);
}

/* --- About Us Section --- */
.about-section {
    padding: 100px 0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.about-content h2 {
    font-size: 10rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Koulen', sans-serif;
}

.about-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #bdc1c6;
}

.about-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* --- Infinite Scroller --- */
.scroller {
    max-width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 10%, white 80%, transparent);
}

.scroller:hover .scroller-inner {
    animation-play-state: paused;
}

.scroller-inner {
    display: flex;
    gap: 1rem;
}

.scroller[data-animated="true"] .scroller-inner {
    width: max-content;
    animation: scroll 30s linear infinite;
}

.scroller[data-direction="right"] .scroller-inner {
    animation-direction: reverse;
}

.scroller-inner.sLogo img {
    margin: 0 2em;
}

.scroller-inner img {
    height: 80px;
    width: auto;
    /* border-radius: 8px; */
}

.scroller[data-direction="left"] .scroller-inner img {
    height: 250px;
}

@keyframes scroll {
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

/* --- Watch TV Section --- */
.watch-tv-section {
    height: 65vh;
    width: 100%;
    padding: 0;
}

.watch-tv-content {
    width: 100%;
    height: 100%;
    padding: 0 2%;
    text-align: center;
    position: relative;
}

.bg-tv-frame {
    position: relative;
    width: 100%;
    height: 500px;
    padding-top: 2em;
    border-radius: 30px;
    background-color: var(--primary-color);
}

.watch-tv-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Koulen', sans-serif;
}

.tv-player-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.tv-frame {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.tv-screen {
    position: absolute;
    top: 1%;
    left: 0.5%;
    width: 98.5%;
    height: 88;
    z-index: 1;
    background-color: black;
    overflow: hidden;
    /* To contain the overlay */
}

#video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tv-player-container:hover .tv-controls-overlay {
    opacity: 1;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff0000;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.player-buttons {
    display: flex;
    gap: 0.75rem;
}

.player-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.player-btn svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.2s ease;
}

.player-btn:hover svg {
    transform: scale(1.1);
}

.volume-off {
    display: none;
}


.tv-watermark {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    z-index: 3;
    opacity: 1;
}

.tv-watermark svg {
    width: 100%;
    height: auto;
}

/* --- Channel Scroller Section --- */
.channel-scroller-section {
    padding: 200px 0 0 0;
    /* Add padding for spacing */
}

.channel-scroller {
    background-color: #fff;
    padding: 1.5rem 0;
}

.channel-scroller .scroller-inner img {
    height: 60px;
    width: auto;
    margin: 0 .5em;
    transition: all 0.3s ease;
}

.channel-scroller .scroller-inner img:hover {
    scale: 110%;
    opacity: 1;
}

/* --- Scroll-to-Zoom Video Section --- */
.scroll-zoom-section {
    height: 800vh;
    /* Increased to allow for hold phases */
    position: relative;
}

.scroll-zoom-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-zoom-video-wrapper {
    position: relative;
    width: 90vw;
    max-width: 90vw;
    height: 570px;
    border-radius: 30px;
    overflow: hidden;
    transform: scale(1);
}

.scroll-zoom-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050714;
    opacity: 0;
    z-index: 1;
}

.scroll-zoom-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-zoom-content-initial {
    position: absolute;
    z-index: 5;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    pointer-events: none;
}

.scroll-zoom-content-initial h1 {
    font-size: 4rem;
    font-family: 'Koulen', sans-serif;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.scroll-zoom-content-initial .highlight {
    color: var(--primary-color);
}

.scroll-zoom-content-secondary {
    position: absolute;
    z-index: 6;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.info-panel {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
    max-width: 70vw;
    text-align: center;
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.info-panel h2 {
    font-size: 2rem;
    font-family: 'Koulen', sans-serif;
    margin-bottom: 0.5rem;
}

.info-panel .trial {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1em 3em;
    border-radius: 100vw;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    pointer-events: auto;
}

.info-panel .trial:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
}

.info-panel-cl {
    text-align: left;
    background-color: #050714;
    border-radius: 20px;
    max-width: 70vw;
    padding: 3rem;
}

.info-panel-cl .pre-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.info-panel-cl .main-heading {
    font-size: 150px;
    font-family: 'Koulen', sans-serif;
    color: var(--primary-color);
    line-height: .8;
}

.info-panel-cl .description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    width: 60%;
}

.info-panel-cl .btn-discover {
    display: inline-block;
    background-color: white;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
    pointer-events: all;
}

.info-panel-cl .btn-discover:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.05);
}

.info-panel-cl .btn-discover span {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.info-panel-cl .btn-discover:hover span {
    transform: translateX(5px);
}


/* --- Pricing Section --- */
.pricing-section {
    padding: 100px 5%;
    text-align: center;
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-family: 'Koulen', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #bdc1c6;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 90vw;
    margin: 0 auto;
}

.pricing-card {
    background: #0d1021;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.highlighted {
    background: var(--text-light);
    color: var(--text-dark);
}

.pricing-card.highlighted h3,
.pricing-card.highlighted .price {
    color: var(--primary-color);
}

.pricing-card h3 {
    font-family: 'Koulen', sans-serif;
    font-size: 3rem;
}

.pricing-card .price {
    font-family: 'Koulen', sans-serif;
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: -40px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-card li {
    margin-bottom: 1rem;
    padding-left: 25px;
    position: relative;
    cursor: default;
}

.pricing-card li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.pricing-card.highlighted li::before {
    color: var(--primary-color);
}


.btn-subscribe {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
    display: block;
}

.btn-subscribe:hover {
    background-color: #ffffff;
    color: #003cbf;
}

.pricing-card.highlighted .btn-subscribe {
    background-color: var(--primary-color);
    color: white;
}

.pricing-card.highlighted .btn-subscribe:hover {
    background-color: #002e90;
}

/* --- New Apps Section --- */
.apps-section {
    padding: 100px 5%;
    text-align: center;
}

.apps-header {
    margin-bottom: 50px;
}

.apps-header h2 {
    font-size: 3rem;
    font-family: 'Koulen', sans-serif;
    color: var(--primary-color);
}

.apps-tabs {
    margin-bottom: 2rem;
}

.tab-button {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.apps-tab-content {
    display: none;
}

.apps-tab-content.active {
    display: block;
}


.apps-main-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.apps-main-card {
    background: #0d1021;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apps-main-card h3 {
    font-size: 2rem;
    font-family: 'Koulen', sans-serif;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.apps-main-card h3 .device-icon-main,
.apps-sub-card h4 .device-icon-sub,
.apps-sub-card h4 .tizen {
    flex-shrink: 0;
    height: 30px;
    width: auto;
    fill: var(--text-light);
    /* Default fill */
}

/* Specific icon adjustments */
.apps-sub-card h4 .device-icon-sub.vidaa {
    height: auto;
    /* Override height to maintain aspect ratio */
    width: 80px;
    /* Making Vidaa icon wider */
}

.apps-sub-card h4 .device-icon-fill {
    fill: var(--text-light);
    /* Ensuring Tizen and Linux icons are visible */
}

.apps-sub-card h4 .tizen {
    height: 35px;
}


.apps-sub-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.apps-sub-card {
    background: #050714;
    padding: 1.5rem;
    border-radius: 15px;
}

.apps-sub-card h4 {
    font-size: 1.5rem;
    font-family: 'Koulen', sans-serif;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.apps-sub-card ul {
    list-style: none;
    padding-left: 0;
}

.apps-sub-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.apps-sub-card li span {
    margin-right: 1rem;
    /* Add space between name and link */
    white-space: nowrap;
}


.apps-sub-card li:last-child {
    border-bottom: none;
}

.apps-sub-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    /* Prevent links from wrapping */
}


/* --- Footer Section --- */
.footer-section {
    padding: 50px 5%;
    background-color: #0d1021;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    flex-basis: 25%;
}

.logo-footer {
    width: 150px;
    height: auto;
}

.footer-links,
.footer-contact,
.footer-legal {
    flex-basis: 20%;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-family: 'Koulen', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section a {
    color: #bdc1c6;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact .contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.footer-contact a:hover .contact-icon {
    /* No specific hover for SVG fill, handled in SVG data */
}


.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc1c6;
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #0d1021;
    margin: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%;
    max-width: 700px;
    border-radius: 15px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h2 {
    font-family: 'Koulen', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-content p,
.modal-content ul {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #bdc1c6;
}

.modal-content ul {
    padding-left: 20px;
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    nav {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    nav.nav-open {
        border-radius: 30px;
        align-items: flex-start;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: list-item;
        margin-top: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        width: 100%;
        order: 3;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, padding 0.3s ease-in-out;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin: 0;
    }

    .nav-links.active {
        max-height: 500px;
        padding-top: 2rem;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

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

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-section {
        padding-bottom: 50px;
    }

    .watch-tv-section {
        height: 35vh;
    }

    .bg-tv-frame {
        position: relative;
        width: 100%;
        height: 300px;
        padding-top: 2em;
        border-radius: 30px;
        background-color: var(--primary-color);
    }

    .tv-frame {
        width: 90%;
        height: auto;
        position: relative;
        z-index: 2;
        pointer-events: none;
    }

    .tv-screen {
        position: absolute;
        top: 1%;
        left: 5.5%;
        width: 89%;
        height: 87%;
        z-index: 1;
        background-color: black;
    }

    .tv-watermark {
        margin-left: 30px;
        margin-top: 10px;
        width: 50px;
    }

    .channel-scroller-section {
        padding-top: 200px;
    }

    .scroll-zoom-content-initial h1 {
        font-size: 2.5rem;
    }

    .info-panel-cl {
        text-align: center;
        max-width: 90vw;
    }

    .info-panel-cl .main-heading {
        font-size: 80px;
    }

    .info-panel-cl .description {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links,
    .footer-contact,
    .footer-legal {
        align-items: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    nav {
        padding: 0.75rem 1.25rem;
    }

    .logo svg {
        height: 20px;
    }

    .support-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .carousel-controls,
    .support-btn {
        bottom: 20px;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .watch-tv-content {
        padding: 20px;
    }

    .watch-tv-content h2 {
        font-size: 1.8rem;
    }

    .tv-watermark {
        width: 60px;
        top: 10px;
        left: 10px;
    }

    .scroll-zoom-content-initial h1 {
        font-size: 1.8rem;
    }

    .scroll-zoom-video-wrapper {
        height: 300px;
    }

    .info-panel-cl {
        padding: 1.5rem;
    }

    .info-panel-cl .main-heading {
        font-size: 4rem;
    }

    .info-panel-cl .pre-heading,
    .info-panel-cl .description {
        font-size: 0.9rem;
        width: 100%;
    }
}