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

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    background-image: url('https://via.placeholder.com/1920x1080/1a1a1a/333333?text=Sports+Background');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(10, 10, 10, 0.9);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: 50px;
    display: block;
}

.btn-primary {
    display: inline-block;
    background-color: #7159ff;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.0rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    border: 2px solid #7159ff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: rgba(229, 9, 20, 0.1);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin: 0px 0;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    font-family: "MotoGP Display Bold";
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e50914;
}

/* Header Styles */
.header {
    background-image: linear-gradient(318.68deg, #35045bc7, #0d3140 49.72%, #35045bc7), url(/klz/HARDER-pgeesktraliga.jpg);
    padding: 4px 0px;
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0px 5%;
}

.logo img {
    height: 40px;
    width: auto;
}

.login-icon {
    display: flex;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.login-icon i {
    font-size: 25px;
    margin-right: 8px;
    color: #f9f9f9;
}

.login-icon span {
    font-weight: bold;
}

.login-icon:hover {
    color: #e50914;
}

/* Match Title */
.match-title {
    text-align: center;
    padding: 10px 10px;
    background-color: transparent;
    margin-bottom: 0px;
}

.match-title h1 {
    color: #4d1b8c;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-bottom: 0px;
    font-family: 'Roboto Condensed',sans-serif;
}

.match-title .match-subtitle {
    color: #aaa;
    font-size: 1rem;
}

/* Video Section */
.video-section {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 0px 10px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.video-loader p {
    color: white;
    margin-top: 15px;
    font-size: 0.9rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #e50914;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgb(0 0 0 / 71%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 6;
    border: 2px solid #ffffff;
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: rgba(229, 9, 20, 1);
}

.video-controls {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 50%), rgb(0 0 0 / 50%));
    padding: 10px 10px;
    display: flex;
    align-items: center;
    z-index: 20;
    opacity: 1;
    transition: opacity 0.3s;
    border-top: 0px solid #adadad;
}

.video-wrapper:hover .video-controls {
    opacity: 1;
}

.left-controls, .right-controls {
    display: flex;
    align-items: center;
}

.left-controls {
    flex: 0;
}

.progress-bar {
    flex: 3;
    height: 5px;
    background-color: #fbf5f5ad;
    margin: 0 15px;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress {
    width: 30%;
    height: 100%;
    background-color: transparent;
    border-radius: 3px;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #e50914;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.progress-bar:hover .progress::after {
    opacity: 1;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    margin: -8px -15px;
    cursor: not-allowed;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.control-btn:hover {
    opacity: 1;
}

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

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.live-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background-color: #090813;
    width: 95%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(178deg, #090813, #201b4a);
    border-bottom: 1px solid #333;
}

.popup-logo img {
    height: 30px;
    width: auto;
}

.close-popup {
    background: none;
    border: none;
    color: #aaa;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    padding: 0 5px;
}

.close-popup:hover {
    color: #e50914;
    transform: rotate(90deg);
}

.popup-body {
    padding: 30px;
    text-align: center;
}

.popup-body h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
    letter-spacing: 0px;
    font-family: "MotoGP Display Bold";
}

.popup-body p {
    color: #dfdfdf;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.3;
    font-family: "MotoGP Display Bold";
}

.popup-benefits {
    margin: 25px 0;
    text-align: left;
    background-color: #1d1944;
    padding: 20px;
    border-radius: 6px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: white;
    font-size: 0.95rem;
}

.benefit-item i {
    color: #e50914;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.devices-image {
    margin: 0px 0;
    border-radius: 6px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); */
}

.devices-image img {
    width: 100%;
    height: auto;
}

.popup-footer {
    padding: 10px;
    background: transparent;
    text-align: center;
    border-top: 1px solid #333;
}

.popup-footer .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

.popup-link {
    display: block;
    margin-top: 0px;
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.popup-link:hover {
    color: #e50914;
}

/* Sliding Banner */
.sliding-banner {
    position: relative;
    max-width: 1200px;
    margin: 0px auto 15px;
    padding: 0 20px;
    overflow: hidden;
}

.banner-container {
    display: flex;
    transition: transform 0.5s ease;
}

.banner-slide {
    min-width: 25%;
    padding: 0 10px;
    position: relative;
    transition: transform 0.3s;
}

.banner-slide:hover {
    transform: translateY(-5px);
}

.banner-slide img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.banner-slide:hover img {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.banner-caption {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px 10px 10px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-nav:hover {
    background-color: rgba(229, 9, 20, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 25px;
}

.banner-nav.next {
    right: 25px;
}

/* Soccer Schedule */
.soccer-schedule {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 0;
    margin: 40px 0;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 33.33%;
    padding: 0 15px;
}

.match-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.match-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.teams {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.team img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
}

.team span {
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.vs {
    color: #e50914;
    font-weight: bold;
    margin: 0 10px;
    font-size: 1.2rem;
}

.match-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #aaa;
    font-size: 0.8rem;
    margin: 5px 0;
    min-width: 80px;
}

.info-item i {
    color: #e50914;
    margin-bottom: 8px;
    font-size: 1rem;
}

.match-link {
    display: inline-block;
    color: white;
    background-color: #e50914;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.match-link:hover {
    background-color: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Match Poster with Benefits */
.match-poster-benefits {
    background: transparent;
    padding: 20px 0;
    margin: 10px 0;
    /* box-shadow: 0 1px 9px rgb(0 0 0 / 91%); */
}

.match-poster-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 21px 18px;
    display: flex;
    align-items: center;
    gap: 50px;
    background: #201b49;
    border-radius: 8px;
    /* padding: 0.8rem; */
    /* box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); */
}

.match-poster {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); */
}

.match-poster img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.match-poster:hover img {
    transform: scale(1.03);
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.benefits-list {
    margin-bottom: 10px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #f9f9f9;
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefits-list i {
    color: #009091;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Network Section */
.network-section {
    background-color: transparent;
    padding: 10px 10px;
    text-align: center;
    /* box-shadow: 0 1px 9px rgb(0 0 0 / 91%); */
}

.tv-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 10px auto 0;
    gap: 30px;
}

.tv-logos img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.tv-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px);
}

/* Highlights Section */
.highlights-section {
    background: transparent;
    padding: 4px 10px;
    margin: 10px 0;
    /* box-shadow: 0 1px 9px rgb(0 0 0 / 91%); */
}

.highlights-container {
    max-width: 1182px;
    margin: 0 auto;
    padding: 21px 18px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(318.68deg, #0d3140, #42218bab 49.72%, #35045bad);
    border-radius: 8px;
    /* padding: 0.8rem; */
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.highlights-description {
    flex: 1;
}

.highlights-description h2 {
    color: #009091;
    font-size: 1.8rem;
    margin-bottom: 12px;
    letter-spacing: 0px;
    font-family: 'Roboto Condensed',sans-serif;
    text-transform: uppercase;
}

.highlights-description p {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.highlights-features {
    margin-bottom: 30px;
}

.highlights-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: white;
    font-size: 0.95rem;
}

.highlights-features i {
    color: #7159ff;
    margin-right: 12px;
    font-size: 1rem;
}

.highlights-video {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.highlights-video video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
}

.highlights-video:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 9, 20, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.play-btn:hover {
    background-color: rgba(229, 9, 20, 1);
    transform: scale(1.1);
}

/* Devices Section */
.devices-section {
    background: transparent;
    padding: 0px 10px;
    margin: 10px 0;
    padding-bottom: 15px;
    /* box-shadow: 0 1px 9px rgb(0 0 0 / 91%); */
}

.devices-container {
    max-width: 1182px;
    margin: 0 auto;
    padding: 21px 18px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: #132137;
    border-radius: 8px;
    /* padding: 0.8rem; */
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.devices-content {
    flex: 1;
}

.devices-content h2 {
    color: #6cdb29;
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 0px;
    font-family: 'Roboto Condensed',sans-serif;
}

.devices-text {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.device-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 0px;
    flex-wrap: wrap;
    justify-content: center;
}

.device-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: default;
    min-width: 80px;
}

.device-icon i {
    font-size: 2.0rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.device-icon span {
    font-size: 0.8rem;
    text-align: center;
}

.device-icon:hover {
    color: #e50914;
}

.device-icon:hover i {
    transform: translateY(-5px);
}

.devices-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); */
}

.devices-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.devices-image:hover img {
    transform: scale(1.03);
}

/* Footer */
.footer {
    background: linear-gradient(1deg, #090813, #201b4a);
    color: #aaa;
    padding: 0px 0 0;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.footer-logo {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-slogan {
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    /* width: unset; */
}

.link-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.link-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    transition: color 0.3s;
    font-size: 0.9rem;
}

.link-column ul li a:hover {
    color: #e50914;
}

.footer-social {
    width: 30%;
    padding-left: 30px;
}

.footer-social h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #aaa;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a:hover {
    color: #e50914;
    transform: translateY(-3px);
    background-color: #333;
}

.app-download {
    margin-top: 30px;
}

.app-download h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.app-btn i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.app-btn span {
    font-size: 0.8rem;
}

.app-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid #333;
    padding: 20px 20px;
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #e50914;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .banner-slide {
        min-width: 33.33%;
    }
    
    .carousel-slide {
        min-width: 50%;
    }
    
    .match-poster-container,
    .highlights-container,
    .devices-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        /* width: 60%; */
    }
    
    .footer-social {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .match-title h1 {
        font-size: 1.4rem;
    }
    
    .banner-slide {
        min-width: 50%;
    }
    
    .carousel-slide {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .footer-links {
        /* width: 100%; */
    }
    
    .footer-social {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .login-icon span {
        display: none;
    }
    
    .match-title h1 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .banner-slide {
        min-width: 100%;
    }
    
    .link-column {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 1.0rem;
    }
    
    .popup-body {
        padding: 10px;
    }
    
    .popup-benefits {
        padding: 15px;
    }
    
    .tv-logos {
        gap: 15px;
    }
    
    .tv-logos img {
        height: 30px;
    }
    
    .device-icons {
        gap: 12px;
    }
    
    .device-icon {
        min-width: 60px;
    }
}