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

/*  Kill all unwanted scrolls */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  background: linear-gradient(to left, #24013c, #280842, #3d1b85, #2c2574);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/*  Force all child containers to behave */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*  If you use any side buttons or tabs — keep them inside the viewport */
.sticky-tab,
.rightbar,
.sidebar {
  overflow: hidden;
  max-width: 100vw;
  
}

/*  Fix layout containers that cause extra space */
.main-layout{
    max-height: fit-content;
}
.container,
.wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/*  Prevent phantom scroll at bottom */
body::after {
  content: "";
  display: block;
  height: 0;
  overflow: hidden;

}
/* hidden by default */
.sponsor-scroll {
    display: none;
    overflow: hidden;
    
    
    padding: 0.8rem 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* mobile-only version (show scroll on screens smaller than 768px) */
@media (max-width: 780px) {
    .logo {
        display: none;
    }
    .sponsor-scroll {
        display: block;
    }

    .sponsor-track {
        display: flex;
        width: max-content;
        animation: scroll-left 40s linear infinite;
        gap: 2rem;
    }

    .sponsor-track img {
        height: 40px;
        width: 100px;
        object-fit: contain;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    .sponsor-track img:hover {
        transform: scale(1.08);
    }
}

/* hide sponsor scroll on desktop/tablet (where sidebars appear) */
@media (min-width: 768px) {
    .sponsor-scroll {
        display: none !important;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-40%);
    }
}


.first {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    width: fit-content;
    position: sticky;
        top: 0;
        z-index: 1000;
    height: 200px;
    background: linear-gradient(to left, #24013c, #280842, #3d1b85, #2c2574);
    border: none;
  }
  
  /* Logo stays fixed size */
  .logo {
    flex: 0 0 auto;
  }
  
  .logo img {
    display: block;
    max-width: 150px;
    height: auto;
  }
      .highlights-autoscroll {
        width: 100%;
        overflow: hidden;
  
        position: relative;
        padding: 1rem 0;
        color: #1c0644;
        border: none;
      }
      .highlights-track {
        display: flex;
        animation: scrollHighlights 40s linear infinite;
        align-items: center;
        border: none;
      }
      .highlights-track:hover{
        animation-play-state: paused
      }
      @keyframes scrollHighlights {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
      }
      .highlight-card {
        display: flex;
        align-items: center;
        background: #fff;
        border-radius: 1.5rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        width: 500px;           /* set your width */
        height: 200px;
        transition: box-shadow 0.2s;
        cursor: pointer;
        justify-content: space-between;
        
        overflow: hidden;       /* hide extra text */
        text-overflow: ellipsis;
      }
  
      .highlight-card p {
    overflow:scroll;
    display: -webkit-box;
    -webkit-line-clamp: 3;   /* show only 3 lines */
    -webkit-box-orient: vertical;
  }
      .highlight-card:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.13);
      }
      .highlight-img {
        display: block;
        width: 40%;
        height: 100%;
        object-fit: cover;
        border-radius: 1rem;
        margin-right: 1rem;
      }
      .highlight-content {
        flex: 1;
      }
      .highlight-title {
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 0.2rem;
      }
      .highlight-desc {
        font-size: 0.95rem;
        color: #000000;
      }
      .highlight-arrow {
        font-size: 0.0001rem;
        color: #0078d4;
        margin-left: 1rem;
        transition: transform 0.2s;
      }
      .highlight-card:hover .highlight-arrow {
        transform: translateX(5px);
      }
      .app-links img {
        border-radius: 5px;
      }
  
      .video-description {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px;
        border-radius: 8px;
        margin-top: 10px;
      }
      @media (max-width: 760px) {
        .video-description {
          flex-direction: column;
          text-align: center;
        }
      }
/* HEADER */
.header {
    display: none;
    background-color: rgb(38, 3, 100);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.header img {
    width: 50px;
    height: auto;
    margin-right: 1.5rem;
    align-self: flex-start;
    justify-self: flex-start;
    /* Ensure it's at the left edge of the header */
    order: -1;
}

.header nav a:hover {
    background-color: #333;
}

/* NAV LINKS */
#nav-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

#nav-list li a {
    color: #e4e6eb;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

/* BUTTON */
#button {
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#button:hover {
    background-color: white;
    color: #0d3ad0;
}

/* DROPDOWN ("More") */
.more-menu {
    position: relative;
}

.more-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0d3ad0;
    border: 1px solid #333;
    list-style: none;
    padding: 0;
    min-width: 200px;
    z-index: 1000;
}

.highlights-autoscroll {
    width: 100%;
    overflow: hidden;
    
    
    position: relative;
    padding: 1rem 0;
}
.first{
    max-height: fit-content;
}
.highlights-track {
    display: flex;
    animation: scrollHighlights 200s linear infinite;
    align-items: center;
}

@keyframes scrollHighlights {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.logo {
    width: 120px;
    height: auto;
    height: fit-content;
}

.more-dropdown li a {
    padding: 10px 14px;
    display: block;
    color: white;
    text-decoration: none;
}

.more-dropdown li a:hover {
    background-color: white;
    color: #0d3ad0;
}

/* Show dropdown on hover */
.more-menu:hover .more-dropdown {
    display: block;
}

.menu-toggle, .close-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.sponsors-autoscroll {
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.sponsors-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scroll-vertical 120s linear infinite;
    will-change: transform;
}

.sponsors-track a {
    display: block;
    flex-shrink: 0;
    text-align: center;
}

.sponsors-track img {
    width: 100%;
    height: auto;
    filter: brightness(1);
    transition: filter 0.3s;
    object-fit: cover;
    margin-top: 5px;
    margin-bottom: 2px;
}

.sponsors-track img:hover {
    filter: brightness(1);
}

@keyframes scroll-vertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}


/* Main Layout */
.main-layout {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.sidebar {
    flex: 0 0 260px;
    width: 260px;
    max-width: 260px;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 80px);
    justify-content: flex-start;
    align-items: flex-start;
}

.MKCTV-logo img {
    position: sticky;
    top: 100px;
    left: 10px;
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    margin-top: 0px;
    border-radius: 8px;
    object-fit: contain;
    justify-self: flex-start;
}

.sidebar nav ul {
    list-style: none;
}


.sidebar nav a {
    font-size: 2rem;
    height: 50px;
    display: block;
    color: #e4e6eb;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: background-color 0.3s;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background-color: #333;
    border-right: 3px solid #1877f2;
}

.main-content {
    flex: 1;
    padding: 0;
    overflow-x: hidden;
}

/* Rightbar (Sponsor Images Right) */
.rightbar {
    flex: 0 0 260px;
    width: 260px;
    max-width: 260px;
    padding: 20px;
    margin: 0;
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}


.sponsor img,
.sponsor2 img {
    width: 100%;
    max-width: 200px; /* keeps them nicely sized */
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s;
    
}

.sponsor img:hover,
.sponsor2 img:hover {
    transform: scale(1.05);
}


/* Video Section */


.button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button:hover {
    background: #e55a2b;
}

/* Download Section */
.download-info {
    background: #242526;
    padding: 4rem 2rem;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.download-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.app-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-links img {
    width: 200px;
    height: auto;
    transition: transform 0.3s;
}

.app-links img:hover {
    transform: scale(1.05);
}

/* Discover Section */
.discover {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.discover h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.discover h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #b0b3b8;
}

.content-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #1877f2;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #166fe5;
}

.image-content img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.promo-section {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    padding: 40px;
    gap: 0px;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    border: solid 2px #ffffff;
    color: white;
    max-height: fit-content;
    justify-self: center;
    margin-bottom: 30px;
    background: linear-gradient(to bottom, rgba(251, 0, 163, 0.355), #221165);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(229, 251, 255, 0.55);
}

.promo-left {
    flex: 1;
    min-width: 320px;
    padding-right: -20px;
    flex-wrap: wrap;
}

.promo-left h1 {
    font-size: 30px;
    color: #00aaff;
    margin-bottom: 20px;
}

.promo-left h1 span {
    color: #00aaff;
}

.promo-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.promo-left ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.promo-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-right img {
    max-width: 100%;
    height: auto;
    border: 5px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* TV Adverts Section */
.advert {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: linear-gradient(to bottom, rgba(251, 0, 163, 0.355), #221165);
    border-radius: 10px;
    color: white;
    max-width: 1200px;
    justify-self: center;
    box-shadow: 0 10px 25px rgba(229, 251, 255, 0.55);
}

/* Video on the left */
.advert .video-container {
    flex: 0 0 480px;
    max-width: 480px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.advert .video-container iframe {
    width: 100%;
    height: 270px;
    display: block;
    border: none;
    border-radius: 6px;
}

/* Text content on the right */
.advert .content {
    flex: 1;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
}

.advert .content h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.advert .content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #ffffff;
}

.advert .content p strong {
    color: #24cff5;
}

/* Highlight emojis or icons */
.advert .content p span.emoji {
    font-size: 1.3rem;
    margin-right: 0.3rem;
}

/* Link styled as a button */
.advert .content a.button-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background-color: #007bff;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.advert .content a.button-link:hover {
    background-color: #0056b3;
}



/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-box h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-box p {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Services Section */
.services-container {
    padding: 4rem 2rem;
}

.services-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.service-card {
    background: #242526;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
}

.service-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-btn {
    display: inline-block;
    background: #1877f2;
    color: white;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.learn-btn:hover {
    background: #166fe5;
}

/* Contact Section */
.contact-section {
    background: #242526;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #ffffff;
}

.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-container label {
    font-weight: bold;
    color: #e4e6eb;
}

.contact-container input,
.contact-container textarea {
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 6px;
    background: #18191a;
    color: #e4e6eb;
    font-size: 1rem;
}

.contact-container textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.contact-container button {
    background: #1877f2;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-container button:hover {
    background: #166fe5;
}

.note {
    font-size: 0.9rem;
    color: #b0b3b8;
}

/* Footer */
footer {
    background: #3b087e;
    padding: 0;
    color: white;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 5px;
}

.footer h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.get-in-touch form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.get-in-touch input,
.get-in-touch textarea {
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 6px;
    background: #18191a;
    color: #e4e6eb;
}

.get-in-touch button {
    background: #1877f2;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-in-touch button:hover {
    background: #166fe5;
}

.icons-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.icons-list a {
    display: block;
    transition: transform 0.3s;
}

.icons-list a:hover {
    transform: scale(1.1);
}

.icons-list img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info a {
    color: #1877f2;
    text-decoration: none;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map {
    width: 100%;
    height: 200px;
    border: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    color: #b0b3b8;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #1877f2;
    text-decoration: none;
    margin: 0 0.5rem;
}


/* Responsive Design */
@media (max-width: 1400px) {
    .sidebar, .right-navigation{
        width: 500px;
    }
}

@media (max-width: 768px) {
    .promo-section {
        flex-direction: column;
        align-items: center;
    }

    .promo-right {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        display: none;
    }

    .header nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1c1c1c;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #333;
        display: none;
    }

    .header nav ul.open {
        display: flex;
    }

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

    .welcome h1 {
        font-size: 2rem;
    }

    .welcome p {
        font-size: 1rem;
    }

    .discover h2,
    .promo-left h1 {
        font-size: 2rem;
    }

    .app-links {
        flex-direction: column;
        align-items: center;
    }

    .sponsors-track img {
        height: 40px;
    }

    .rightbar {
        flex-direction: column;
        align-items: center;
    }

    .sponsor,
    .sponsor2,
    .sponsor3,
    .sponsor4 {
        margin: 10px 0;
    }

    .left-navigation,
    .right-navigation {
        width: 100%;
        position: static;
        height: auto;
        border: none;
        padding: 10px 0;
        display: none;
    }

    .left-navigation nav a,
    .right-navigation nav a {
        writing-mode: horizontal-tb;
        transform: none;
        height: auto;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}



@media (max-width: 768px) {
    .highlights-track {
        gap: 16px;
    }
    .highlight-card {
        min-width: 220px;
        padding: 8px 12px;
    }
    .highlight-img {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    .highlight-title {
        font-size: 1rem;
    }
    .highlight-desc {
        font-size: 0.85rem;
    }
}

/* Main Layout Container - Always Horizontal */
.main-layout {
    display: flex;
    flex-direction: row;
    max-height: fit-content;
    position: relative;
}

/* Left Navigation - Always Vertical on Side */
.left-navigation {

    position: sticky;
    top: 80px;
    overflow-y: auto;
    z-index: 900;
    display: flex;
    align-items: flex-start;
    width: fit-content;
    height: fit-content;
    max-height: calc(100vh - 80px);
    align-self: flex-start;
}

.left-navigation nav ul {
    list-style: none;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: fit-content;
}

.left-navigation nav a {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: block;
    color: #fff;
    height: fit-content;
    text-decoration: none;
    padding: 5px 2px;
    background: #5A5389;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.left-navigation nav a:hover {
    background: #333;
    color: #ff6b35;
}

/* Sidebar (Sponsor Images Left) */
.sidebar {
    flex: 0 0 260px;
    width: 260px;
    max-width: 260px;
    padding: 20px;
    margin: 0;
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* Right Navigation - Always Vertical on Side */
.right-navigation {
    

    position: sticky;
    top: 80px;
    overflow-y: auto;
    z-index: 900;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    width: fit-content;
    height: fit-content;
    max-height: calc(100vh - 80px);
    align-self: flex-start;
}

.right-navigation nav ul {
    list-style: none;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: fit-content;
}

.right-navigation nav a {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 5px 2px;
    background: #5a5389aa;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.right-navigation nav a:hover {
    background: #333;
    color: #ff6b35;
}

/* Large Tablets: 992px - 1199px */
@media (max-width: 1199px) {
    .sidebar,
    .rightbar {
        flex: 0 0 200px;
    }
}

/* Tablets: 768px - 991px */
@media (max-width: 991px) {
    .sidebar,
    .rightbar {
        flex: 0 0 150px;
    }

    .left-navigation,
    .right-navigation {
        flex: 0 0 50px;
    }

    .left-navigation nav a,
    .right-navigation nav a {
        font-size: 0.8rem;
        padding: 12px 6px;
    }

    .main-content {
        padding: 15px;
    }
}

/* Small Tablets/Large Phones: 600px - 767px */
@media (max-width: 767px) {
    /* Hide sidebars on smaller screens, keep navs */
    .sidebar,
    .rightbar {
        display: none;
    }

    .left-navigation,
    .right-navigation {
        flex: 0 0 45px;
    }

    .left-navigation nav a,
    .right-navigation nav a {
        font-size: 0.75rem;
        padding: 10px 5px;
    }

    .main-content {
        padding: 10px;
    }
}

/* Mobile Phones: < 600px */
@media (max-width: 599px) {
    .left-navigation,
    .right-navigation {
        flex: 0 0 40px;
    }

    .left-navigation nav a,
    .right-navigation nav a {
        font-size: 0.7rem;
        padding: 8px 4px;
    }

    .left-navigation nav ul,
    .right-navigation nav ul {
        gap: 10px;
    }
}

/* Extra Small: < 400px */
@media (max-width: 399px) {
    .left-navigation,
    .right-navigation {
        flex: 0 0 35px;
    }

    .left-navigation nav a,
    .right-navigation nav a {
        font-size: 0.65rem;
        padding: 6px 3px;
    }
}

/* ---------------- RESPONSIVE MEDIA QUERIES ---------------- */

/* Large tablets: 992px - 1199px */
@media (max-width: 1199px) {
    .download-content h2,
    .discover h2 {
        font-size: 2.2rem;
    }

    .content-box {
        gap: 2rem;
    }

    .advert .video-container {
        flex: 0 0 400px;
        max-width: 400px;
    }

    .stat-box h2 {
        font-size: 2.5rem;
    }
}

/* Tablets: 768px - 991px */
@media (max-width: 991px) {
    .download-content h2,
    .discover h2 {
        font-size: 2rem;
    }

    .download-content p,
    .text-content p,
    .promo-left p {
        font-size: 1rem;
    }

    .content-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-content img {
        height: 250px;
    }

    .advert {
        flex-direction: column;
        align-items: center;
    }

    .advert .video-container {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .advert .content {
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .services-section {
        grid-template-columns: 1fr;
    }
}

/* Small Tablets & Large Phones: 600px - 767px */
@media (max-width: 767px) {
    .download-content h2,
    .discover h2 {
        font-size: 1.8rem;
    }

    .app-links img {
        width: 160px;
    }

    .promo-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .promo-right {
        margin-top: 20px;
    }

    .advert .video-container iframe {
        height: 220px;
    }

    .stat-box h2 {
        font-size: 2rem;
    }

    .stat-box p {
        font-size: 1rem;
    }
}

/* Mobile Phones: < 600px */
@media (max-width: 599px) {
    .download-content h2,
    .discover h2 {
        font-size: 1.5rem;
    }

    .app-links {
        gap: 1rem;
    }

    .app-links img {
        width: 140px;
    }

    .discover h3 {
        font-size: 1.2rem;
    }

    .text-content h4 {
        font-size: 1.4rem;
    }

    .image-content img {
        height: 200px;
    }

    .promo-left h1 {
        font-size: 24px;
    }

    .promo-left p {
        font-size: 14px;
    }

    .advert .content h2 {
        font-size: 1.5rem;
    }

    .advert .video-container iframe {
        height: 200px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .services-section {
        gap: 1.5rem;
    }
}

/* Extra Small Phones: < 400px */
@media (max-width: 399px) {
    .download-content h2,
    .discover h2 {
        font-size: 1.3rem;
    }

    .app-links img {
        width: 120px;
    }

    .promo-left h1 {
        font-size: 20px;
    }

    .advert .content h2 {
        font-size: 1.3rem;
    }

    .advert .video-container iframe {
        height: 180px;
    }

    .stat-box h2 {
        font-size: 1.8rem;
    }
}


 /* ===== RIGHT SIDEBAR (VIDEOS) ===== */
    .videos-autoscroll {
      height: 100%;
      overflow: hidden;
      width: 90%;
    }

    .videos-track {
      display: flex;
      flex-direction: column;
      gap: 15px;
      animation: scroll-up 50s linear infinite;
    }

    @keyframes scroll-up {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-50%);
      }
    }

    .video-container {
      width: 100%;
      aspect-ratio: 16 / 9;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .video-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-container a {
      position: absolute;
      bottom: 8px;
      left: 10px;
      background: rgba(0, 0, 0, 0.6);
      padding: 5px 10px;
      border-radius: 6px;
      font-size: 0.9rem;
      text-decoration: none;
      color: #fff;
    }

    /* Pause scroll on hover */
    .sponsors-autoscroll:hover .sponsors-track,
    .videos-autoscroll:hover .videos-track ,
    .highlight-card:hover .highlights-autoscroll{
      animation-play-state: paused;
    }

    /* On Air (bottom left corner) */
    .label-onair {
      bottom: 10px;
      left: 20px;
      background: red;
      font-weight: bold;
    }

    /* Twitter (approx bottom-right zone) */
    .label-twitter {
      bottom: 10px;
      right: 120px;
    }

    /* Menu (further right near edge) */
    .label-menu {
      bottom: 10px;
      right: 60px;
    }

    /* Little arrow pointers */
    .overlay-label::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -4px;
      border-width: 5px;
      border-style: solid;
      border-color: rgba(0, 0, 0, 0.6) transparent transparent transparent;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .player-wrapper {
        width: 90%;
        height: auto;
        aspect-ratio: 16/9;
      }
      .overlay-label {
        font-size: 12px;
        padding: 3px 6px;
      }
    }

/* Paste at the END of your stylesheet to override earlier fixed/sticky rules */

/* make the main layout a full-height flex column so children can stretch */
.main-layout {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}

.rightbar,.sidebar {
  height: 100%;
}

@media (min-width: 1200px) {
  .main-layout {
    width: 100%;
    max-width: none;
    margin: 0 0 20px;
    gap: 0;
    padding: 0;
    align-items: flex-start;
  }

  .main-content {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
  }

  .sidebar,
  .rightbar {
    flex: 0 0 260px;
    max-width: 260px;
    width: 260px;
    margin: 0;
  }
}

.videos-autoscroll {
    overflow: hidden;
    
    position: relative;
    
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 8px 0;
  }

  .videos-track {
    display: flex;
    flex-direction: column;
    animation: scroll-videos 18s linear infinite;
    gap: 18px;
  }

  @keyframes scroll-videos {
    0% { transform: translateY(0); }
    100% { transform: translateY(-60%); }
  }

  .video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    padding: 10px 0 8px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin: 0 12px;
  }

  .video-container video {
    width: 100%;
    height: 200px;
    border-radius: 6px;
    background: #222;
    object-fit: cover;
    margin-bottom: 8px;
    /* Optionally, add controls fAor preview: */
    /* controls */
  }

  .video-container a {
    color: #0078d7;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 2px;
    transition: color 0.2s;
  }

  .video-container a:hover {
    color: #005fa3;
    text-decoration: underline;
    font-weight: bold;
  }
  

  .footer{
    margin-left: 5px;
  }


@media (max-width: 768px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;   /* centers the flex items */
    text-align: center;    /* optional, centers text inside each block */
  }

  .get-in-touch,
  .social-icons,
  .contact-info {
    align-items: center;   /* if you use flex inside these blocks */
    margin-left: 0;
  }
  .highlight-card {
    width: 300px;
  }
}



/* Ultra-wide & TV screens (above 1600px) */
@media (min-width: 1600px) {
  .main-layout {
    max-width: none;
    margin: 0 0 20px;
    gap: 0;
  }

  .sidebar,
  .rightbar {
    flex: 0 0 280px;
    max-width: 280px;
    width: 280px;
  }

  .main-content {
    max-width: none;
    margin: 0;
  }

  .highlight-card {
    width: 620px;
  }

  footer {
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 2000px) {
  body {
    background-size: cover;  /* keeps gradient smooth on 4K TVs */
  }
  .main-layout {
    max-width: 1800px;
  }
}

.right-navigation a, .left-navigation a {
    
    font-size:17px !important;
    padding: 8px 6px;
}
.right-navigation nav ul, .left-navigation nav ul {
    gap:4px !important;
}
