        /* Global Box-Sizing Reset for consistent layout */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        /* Myanmar Jojar Pro Font Definition */
        /* Note: The font files (MyanmarJojarPro.woff2, MyanmarJojarPro.woff) must be hosted in a 'fonts' directory relative to this HTML file for the font to display correctly. */
        @font-face {
            font-family: 'Myanmar Jojar Pro';
            src: url('fonts/MyanmarJojarPro.woff2') format('woff2'),
                 url('fonts/MyanmarJojarPro.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap; /* Ensures text remains visible during font loading */
        }
        
        /* YoeYar-One Font Definition */
        @font-face {
            font-family: 'YoeYar-One';
            src: url('fonts/YoeYar-One.woff2') format('woff2'),
                 url('fonts/YoeYar-One.woff') format('woff');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }

        /* Ubuntu Font Definition (for English body text) */
        @import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');
        /* Merienda Font Definition (for English headings) */
        @import url('https://fonts.googleapis.com/css2?family=Merienda:wght@700&display=swap');


        /* Dark Mode Styles with Myanmar Jojar Pro as primary font */
        body {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #1a1a1a; /* Dark background */
            color: #e0e0e0; /* Light text */
            line-height: 1.6;
            overflow-x: hidden; 
        }

        /* START: CSS rule for Myanmar font */
        body.lang-my #hero h1,
        body.lang-my .section-title,
        body.lang-my .dj-card h3,
        body.lang-my .podcast-card h3,
        body.lang-my .sponsorship-info-box h3,
        body.lang-my .branches-card h3,
        body.lang-my .service-item h3,
        body.lang-my .terms-title h3,
        body.lang-my footer h3,
        body.lang-my .btn {
            font-family: 'Myanmar Jojar Pro', sans-serif;
        }

        body.lang-my p,
        body.lang-my #hero p,
        body.lang-my .dj-card p,
        body.lang-my .podcast-card p,
        body.lang-my .sponsorship-info-box p,
        body.lang-my .branches-card p,
        body.lang-my .service-item p,
        body.lang-my .terms-description p,
        body.lang-my footer p,
        body.lang-my .form-group input,
        body.lang-my .form-group textarea {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1.1rem;
        }
         /* END: CSS rule for Myanmar font */
         
        /* START: CSS rule for English font */
        body.lang-en {
            font-family: "Handlee", cursive;
            font-weight: normal;
            font-style: normal;
        }

        body.lang-en h1,
        body.lang-en .section-title,
        body.lang-en .dj-card h3,
        body.lang-en .podcast-card h3,
        body.lang-en .sponsorship-info-box h3,
        body.lang-en .branches-card h3,
        body.lang-en .service-item h3,
        body.lang-en .terms-title h3,
        body.lang-en header nav ul li a {
            font-family: 'Merienda', cursive;
        }

        body.lang-en footer h3 {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1.3rem;
        }

        body.lang-en p,
        body.lang-en #hero p,
        body.lang-en .dj-card p,
        body.lang-en .podcast-card p,
        body.lang-en .sponsorship-info-box p,
        body.lang-en .branches-card p,
        body.lang-en .service-item p,
        body.lang-en .terms-description p,
        body.lang-en .form-group input,
        body.lang-en .form-group textarea {
            font-family: "Handlee", cursive;
            font-size: 1.25rem;
        }

        body.lang-en footer p {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1.1rem;
        }
        /* END: CSS rule for English font */

        /* Container for content centering and padding */
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 4vw; /* Responsive padding for better mobile fit */
        }

        /* Header Styles */
        header {
            background: #282828; /* Darker header background */
            padding: .5rem 0;
            border-bottom: 1px solid #3a3a3a; /* Darker border */
            position: sticky; /* Sticky header for navigation */
            top: 0;
            z-index: 1000; /* Ensures header stays on top */
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative; /* Needed for absolute positioning of menu-toggle and nav ul */
        }

        #logo img {
            height: 50px;
            vertical-align: middle;
            filter: brightness(0.8) contrast(1.2); /* Adjust logo for dark mode if needed */
            /* Note: 'logo.png' must be in the same directory as this HTML file. */
        }

        /* Hamburger Menu Icon (hidden on larger screens) */
        .menu-toggle {
            display: none; /* Hide by default for web view */
            cursor: pointer;
            font-size: 2rem;
            color: #e0e0e0;
            position: relative;
            z-index: 1001;
            padding: 5px 10px;
        }

        /* Desktop Navigation Styles */
        header nav {
            display: block; /* Show navigation by default on desktop */
        }

        header nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex; /* Arrange menu items horizontally */
            align-items: center;
        }

        header nav ul li {
            margin-left: 20px; /* Spacing between main menu items */
            position: relative; /* For dropdown positioning */
        }

        header nav ul li a {
            color: #e0e0e0;
            font-size: 1rem;
            text-decoration: none;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
            font-weight: bold;
        }

        header nav ul li a:hover {
            color: #c90909;
        }

        /* Dropdown menu styles for desktop */
        header nav .dropdown {
            display: none; /* Hidden by default */
            position: absolute;
            top: 100%; /* Position below the parent link */
            left: 0;
            background-color: #282828; /* Same as header background */
            min-width: 200px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            z-index: 1000;
            border-radius: 5px;
            padding: 10px 0;
        }

        header nav .dropdown li {
            margin: 0; /* No horizontal margin for dropdown items */
        }

        header nav .dropdown li a {
            padding: 8px 20px; /* Padding for dropdown links */
            font-size: 1rem;
            color: #b0b0b0; /* Slightly muted color for sub-links */
            white-space: nowrap; /* Prevent text wrapping */
        }

        header nav .dropdown li a:hover {
            background-color: rgba(255,255,255,0.05);
            color: #c90909;
        }

        /* Show dropdown on hover for desktop */
        header nav li.has-dropdown:hover .dropdown {
            display: block;
        }

        /* Arrow icon for dropdown parent links on desktop */
        header nav li.has-dropdown > a::after {
            content: '\25BC'; /* Unicode down arrow */
            font-size: 0.7em;
            margin-left: 8px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        header nav li.has-dropdown:hover > a::after {
            transform: rotate(180deg); /* Rotate arrow when dropdown is active */
        }


        /* Full-screen Overlay Menu Styles (for mobile/tablet) */
        .full-screen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 26, 26, 0.98); /* Semi-transparent dark background */
            z-index: 2000; /* Ensures it's on top of everything */
            visibility: hidden; /* Hidden by default */
            opacity: 0; /* Fully transparent by default */
            transition: opacity 0.4s ease, visibility 0.4s; /* Smooth fade-in/out */
            display: flex;
            align-items: center; /* Center content vertically */
            justify-content: center; /* Center content horizontally */
        }

        .full-screen-overlay.active {
            visibility: visible;
            opacity: 1;
        }

        .full-screen-overlay nav {
            width: 100%;
            max-height: 90vh; /* Limit height for scrollability on smaller screens */
            overflow-y: auto; /* Enable scrolling if content overflows */
            padding: 20px;
        }

        .full-screen-overlay nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: center;
            display: flex;
            flex-direction: column; /* Stack menu items vertically */
            align-items: center;
        }

        .full-screen-overlay nav ul li {
            margin: 15px 0; /* Spacing between main menu items */
            width: 100%;
            max-width: 400px; /* Limit width of menu items */
        }

        .full-screen-overlay nav ul li a {
            color: #e0e0e0;
            font-size: 1.8rem; /* Larger font size for main links */
            text-decoration: none;
            display: block;
            padding: 10px;
            transition: color 0.3s ease;
            font-weight: bold;
        }

        .full-screen-overlay nav ul li a:hover {
            color: #c90909;
        }

        /* Styles for dropdowns within the full-screen overlay (now collapsible) */
        .full-screen-overlay .dropdown {
            list-style: none;
            padding: 0;
            margin: 10px 0 0 0;
            max-height: 0; /* Hidden by default */
            overflow: hidden; /* Hide overflowing content */
            transition: max-height 0.3s ease-out; /* Smooth collapse/expand */
            background-color: rgba(0,0,0,0.2); /* Slightly darker background for sub-items */
            border-radius: 5px;
        }

        .full-screen-overlay .dropdown.active {
            max-height: 300px; /* Max height when active (adjust as needed) */
        }

        .full-screen-overlay .dropdown li {
            margin: 0; /* No margin between sub-items */
            border-bottom: 1px solid rgba(255,255,255,0.1); /* Separator for sub-items */
        }
        .full-screen-overlay .dropdown li:last-child {
            border-bottom: none;
        }

        .full-screen-overlay .dropdown li a {
            font-size: 1.2rem; /* Smaller font size for sub-links */
            padding: 8px 0;
            color: #b0b0b0; /* Slightly muted color for sub-links */
        }
        .full-screen-overlay .dropdown li a:hover {
            color: #c90909;
            background-color: rgba(255,255,255,0.05);
        }

        /* Arrow icon for dropdown parent links */
        .full-screen-overlay li.has-dropdown > a::after {
            content: '\25BC'; /* Unicode down arrow */
            font-size: 0.8em;
            margin-left: 10px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .full-screen-overlay li.has-dropdown.active > a::after {
            transform: rotate(180deg); /* Rotate arrow when active */
        }

        /* Close button for the full-screen overlay */
        .close-overlay-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: #e0e0e0;
            cursor: pointer;
            z-index: 2001; /* Ensures it's on top of the overlay content */
            transition: color 0.3s ease;
        }

        .close-overlay-btn:hover {
            color: #c90909;
        }

        /* Hero Section Styles */
        #hero {
            background-color: rgba(0,0,0,.7); /* Default dark overlay */
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            /* Added for smooth background image transitions */
            transition: background-image 1s ease-in-out, opacity 1s ease-in-out; 

            color: #fff;
            height: 60vh; /* Responsive height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding-bottom: 2rem; 
            position: relative; /* To allow overlay for background image transitions */
        }

        /* Overlay for fade transition */
        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7); /* Dark overlay */
            z-index: 1;
        }

        /* Ensures content is above the overlay */
        #hero > *:not(.hero-bg-transition-layer) { 
            z-index: 2;
            position: relative;
        }

        /* Layer for smooth background image transition */
        .hero-bg-transition-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out; /* Fade transition for images */
            z-index: 0; /* Below overlay and content */
        }
        .hero-bg-transition-layer.active {
            opacity: 1;
        }

        #hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        #hero p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            background: #c90909; /* Original button color */
            color: #fff;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 700;
            transition: background .3s ease;
            cursor: pointer;
            border: none;
            font-family: sans-serif; /* Specific font for slider text */
            font-size: 1rem;
            margin-bottom: 20px; /* Add margin below the button */
        }

        .btn:hover {
            background: #c62828; /* Darker hover for button */
        }
        
        /* Styles for the text slider now inside #hero */
        .text-slider {
            position: relative;
            width: 100%;
            max-width: 600px;
            overflow: hidden; 
            height: 2.2rem; /* Fixed height to prevent layout shifts */
            line-height: 1.2rem;
            margin-top: 10px;
            color: #ffffff;
            background-color: rgba(0, 0, 0, 0.4);
            padding: 0.5rem 20px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-item {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 100%;
            text-align: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            font-family: 'Myanmar Text', sans-serif; /* Specific font for slider text */
            font-style: normal;
            font-weight: normal;
            color: inherit;
        }

        .slider-item.active {
            opacity: 1;
        }

        /* General Section Styles */
        .section {
            padding: 4rem 0;
            min-height: 100px; /* Added min-height for sections, helps with Firefox rendering on some viewports */
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem; /* Reduced margin to make space for date */
            color: #c90909; /* Brighter title color for contrast */
            font-family: 'Myanmar Jojar Pro', sans-serif;
        }

        /* Date display below section title */
        .section-date {
            text-align: center;
            font-size: 1.1rem;
            color: #b0b0b0; /* Muted color for the date */
            margin-bottom: 1.5rem; /* Space below the date */
            font-family: 'Myanmar Text', sans-serif;
        }

        /* Myanmar Calendar Styles */
        .mmcalc {
            text-align: center;
            font-size: 0.8rem;
            color: #b3b3b3; /* Muted color for the date */
        }


        /* Schedule Timeline Styles */
        #schedule {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            color: #e0e0e0;
        }

        /* Style for the card wrapper */
        .schedule-card-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        /* Style for each card */
        .schedule-card {
            background-color: #282828;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            flex: 1 1 300px; /* Allows cards to grow/shrink, minimum width 300px */
            max-width: 800px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .schedule-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.5);
        }

        .schedule-card .timeline {
            position: relative;
            padding: 20px 0 20px 10px;
            list-style: none;
            margin: 0;
        }

        .schedule-card .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            left: 10px; /* Adjust based on dot size */
            height: 100%;
            width: 2px;
            background: #4a4a4a; /* Darker border for the line */
        }

        .schedule-card .timeline > li {
            margin-bottom: 20px;
            position: relative;
            padding-left: 40px; /* Space for the line and dot */
        }

        .schedule-card .timeline > li:before {
            content: '';
            position: absolute;
            left: -10px;
            top: 5px;
            width: 22px;
            height: 22px;
            line-height: 22px;
            font-size: 10px;
            text-align: center;
            background: #4a4a4a; /* Darker background for dots */
            color: #e0e0e0; /* Light text for dots */
            border-radius: 50%;
            /* border: 2px solid #c90909; Original header color */
        }

        .schedule-card .timeline > li.current-program:before {
            background: #00cc00; /* Changed background for current program */
            border-color: #4a4a4a;
            animation: blink 2s linear infinite; /* Blinking effect */
        }

        .schedule-card .timeline > li.current-program h3 {
            margin: 0;
            font-size: 1em;
            font-weight: bold;
            color: #00cc00;
            animation: blink 2s linear infinite; /* Blinking effect */
        }

        .schedule-card .timeline > li.current-program p{
            margin: 5px 0 0;
            font-size: 1em;
            font-weight: bold;
            color: #00cc00;
            animation: blink 2s linear infinite; /* Blinking effect */
        }

        .schedule-card .timeline .timeline-time h3 {
            margin: 0;
            font-size: 1em;
            color: #b0b0b0;
        }

        .schedule-card .timeline .timeline-content p {
            margin: 5px 0 0;
            font-size: 1em;
            color: #e0e0e0;
        }


        /* Blinking animation */
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* Loading row style */
        .schedule-card .timeline .loading-row {
            text-align: center;
            color: #808080;
            font-style: italic;
            list-style: none;
            padding-left: 0;
        }

        .schedule-card .timeline .loading-row:before {
            display: none;
        }

        /* NEW PODCAST SECTION STYLES */
        /* Flexbox for the card layout */
        .podcast-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        /* Style for each card */
        .podcast-card {
            background-color: #282828;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-align: center;
            flex: 1 1 300px; /* Allows cards to grow/shrink, minimum width 300px */
            max-width: 400px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .podcast-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.5);
        }

        .podcast-card h3 {
            color: #c90909;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .podcast-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #b0b0b0;
            margin-bottom: 1.5rem;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        .podcast-card iframe {
            border-radius: 12px;
            width: 100%;
            height: 450px;
            border: none;
        }


        #map {
            width: 100%;
            height: 600px; /* Fixed height for the map */
            background-color: #121622; /* Fallback background color */
            border-radius: 8px; /* Consistent with other sections */
            overflow: hidden; /* Ensure map content stays within bounds */
            box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Darker shadow */
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        /* Map specific styles */
        #map_canvas {
            width: 100%;
            height: 600px; /* Fixed height for the map */
            background-color: #121622; /* Fallback background color */
            border-radius: 8px; /* Consistent with other sections */
            overflow: hidden; /* Ensure map content stays within bounds */
            box-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Darker shadow */
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        /* Styles for the map type selection dropdown */
        .map-controls {
            text-align: center;
            margin-top: 20px;
        }

        .map-controls select {
            padding: 8px;
            border-radius: 5px;
            border: 1px solid #3a3a3a; /* Darker border */
            background-color: #282828; /* Darker background */
            color: #e0e0e0; /* Light text */
            font-size: 1rem;
            cursor: pointer;
        }

        .map-controls select:focus {
            outline: none;
            border-color: #c90909; /* Highlight on focus */
        }
        
        /* Schedule Table Styles */
        #schedule table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            box-shadow: 0 2px 5px rgba(0,0,0,.2); /* Slightly darker shadow */
        }

        #schedule th,
        #schedule td {
            padding: 15px;
            border-bottom: 1px solid #4a4a4a; /* Darker border for table cells */
            color: #e0e0e0; /* Light text for table */
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif; /* Applied YoeYar-One font */
            /* Remove global text-align: center; from here */
        }

        /* Specific alignment for the first column (time) */
        #schedule th:first-child, /* Add this line for the header of the first column */
        #schedule td:first-child {
            text-align: center; /* Keep time centered */
        }

        /* Specific alignment for the second column (program) */
        #schedule th:nth-child(2), /* Add this line for the header of the second column */
        #schedule td:nth-child(2) {
            text-align: left; /* Align program names to the left */
        }

        #schedule thead {
            background: #c90909; /* Original header color */
            color: #fff;
        }

        #schedule tbody tr:nth-child(even) {
            background: #2a2a2a; /* Darker background for even rows */
        }

        #schedule tbody tr:hover {
            background: #3a3a3a; /* Darker hover for table rows */
        }

        /* Blinking animation for current program */
        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        /* DJ Grid Styles */
        .dj-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .dj-card {
            background: #282828; /* Darker card background */
            text-align: center;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,.3); /* Darker shadow */
            transition: transform .3s ease;
            color: #e0e0e0; /* Light text in card */
        }

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

        .dj-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            filter: brightness(0.9); /* Slightly dim images for dark mode */
            /* Note: DJ images must be in a 'djs' directory. */
        }

        .dj-card h3 {
            color: #c90909;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .dj-card p {
            color: #b0b0b0;
        }

        /* Client Logos Section */
        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        /* NEW: Style for each client-logo item to limit to 5 per row */
        .client-logo { 
            /* Calculate flex-basis to allow exactly 5 items per row, accounting for the gap */
            /* (100% / 5 items) - ( (5-1) * gap / 5 items ) = 20% - (4 * 2.5rem / 5) = 20% - 2rem */
            flex-basis: calc(20% - 2rem); 
            /* Ensure the image inside is centered if the div is wider than the image */
            display: flex;
            justify-content: center;
            align-items: center;
            /* Optional: Add a min-width to prevent them from becoming too small on very narrow screens before wrapping */
            min-width: 100px; /* Adjust this value if logos become too small on mobile */
        }

        .client-logo img {
            max-width: 140px;
            height: auto;
            /* Invert for dark mode, then apply grayscale and brightness */
            filter: grayscale(100%) brightness(0.7); 
            opacity: .7;
            transition: all .3s ease;
            /* Note: Client logos must be in a 'clients' directory. */
        }

        .client-logo img:hover {
            /* Reset all filters to original appearance on hover */
            filter: none; 
            transform: scale(1.5);
            opacity: 1;
            z-index: 10;
        }

        .sponsorship-content {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 40px;
        }

        .sponsorship-info-box {
            background-color: #282828; padding: 25px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.3); text-align: center; max-width: 328px;
        }
        
        .sponsorship-info-box h3 {
            color: #c90909; margin-bottom: 15px; font-size: 1.5rem;            
        }

        .sponsorship-info-box p {
            color: #b0b0b0; font-size: 1rem;
        }

        .sponsorship-info-box:hover {
            transform: translateY(-5px);
        }

        /* Services Section Specific Styles */
        .service-item {
            background-color: #282828;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            text-align: center;
            max-width: 350px;
            flex: 1 1 auto; /* Allows items to grow and shrink, prevents overflow */
            margin: 10px; /* Spacing between service boxes */
        }

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

        .service-item h3 {
            color: #c90909;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .service-item p {
            color: #b0b0b0;
            font-size: 1rem;
            line-height: 1.5;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px; /* Space between flex items */
            margin-top: 40px;
        }

        /* Branches Styles */
        .branches-grid {
           display: flex;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 2rem;
        }

        .branches-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #282828;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            background: #282828; /* Darker card background */
            text-align: center;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,.3); /* Darker shadow */
            transition: transform .3s ease;
            color: #e0e0e0; /* Light text in card */
        }

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

        .branches-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            filter: brightness(0.9); /* Slightly dim images for dark mode */
            /* Note: DJ images must be in a 'djs' directory. */
        }

        .branches-card h3 {
            margin-bottom: .5rem;
            color: #ffffff; /* Brighter heading in card */
        }

        .branches-card p {
            color: #b0b0b0;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        .terms-title h2 {
            text-align: left; color: #ebebeb; max-width: 800px; margin: 0 auto 2rem auto;
        }

        .terms-description p {
            text-align: justify; line-height: 2; color: #e0e0e0; max-width: 800px; margin: 0 auto 2rem auto;
        }

        /* Footer Styles */
        footer {
            background: #282828; /* Darker footer background */
            color: #e0e0e0; /* Light text */
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid #3a3a3a;
        }

        footer p {
            margin: 0;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
        }

        footer h3 {
             font-family: 'Myanmar Jojar Pro', sans-serif;
        }

        .social-links {
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            gap: 15px; /* Spacing between icons */
        }

        .social-links a img {
            height: 24px; /* Adjust size as needed */
            width: 24px;
            vertical-align: middle;
            filter: grayscale(100%) brightness(0.8) contrast(1.2); /* Adjust logo for dark mode if needed */
            transition: filter 0.3s ease, transform 0.3s ease;
            /* Note: Social media icons must be in an 'img' directory. */
        }

        .social-links a:hover img {
            filter: none; /* Remove filters on hover to show original color */
            transform: scale(1.1); /* Slightly enlarge on hover */
        }

        /* Styling for App Store and Google Play links in the footer */
        .app-store-links {
            margin-top: 1.5rem; /* Space above the app logos */
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem; /* Spacing between the logos */
            flex-wrap: wrap; /* Allow wrapping on small screens */
        }

        .app-store-links img {
            height: 40px; /* Standard height for both logos */
            width: auto; /* Maintain aspect ratio */
            filter: grayscale(100%) brightness(0.8); /* Greyscale effect like client logos */
            opacity: .8;
            transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        }

        .app-store-links img:hover {
            filter: none; /* Remove filter on hover */
            opacity: 1;
            transform: scale(1.05); /* Slight zoom on hover */
        }

        @media (max-width: 768px) {

        /* Mobile/Tablet layout */
        .menu-toggle {
            display: block; /* Show hamburger on smaller screens */
        }

        header nav {
            display: none; /* Hide desktop navigation on smaller screens */
        }

        #hero h1 {
            font-size: 2.2rem;
        }

        #hero p {
            font-size: 1.2rem;
        }

        .section-title {
            font-size: 2rem;
        }

        /* Override client-logo styles for mobile view to show 2 per row */
 
     .client-logos {
        /* Reduce the gap between the logos */
        gap: 1rem;
        /* Add some padding to the left and right of the container */
        padding: 0 2rem;
        /* Ensure the container is centered and wraps correctly */
        justify-content: center;
        flex-wrap: wrap;
    }

    .client-logo {
        /* Calculate the width for two logos per row, accounting for the new gap */
        flex-basis: calc(50% - 0.5rem);
        /* Set a min-width to prevent logos from becoming too small */
        min-width: 100px;
    }
        

        /* Mobile schedule time formatting */
        #schedule td:first-child {
            white-space: pre-wrap;
            word-break: break-all;
        }

        /* Add this to control the width of the first column (time) on mobile */
        #schedule th:first-child,
        #schedule td:first-child {
            width: 35%;
        }

        /* Adjust the width of the second column (program) to fill the remaining space */
        #schedule th:nth-child(2),
        #schedule td:nth-child(2) {
            width: 65%;
        }

        /* Correct font assignment for Myanmar mobile view */
        body.lang-my #hero h1,
        body.lang-my .section-title,
        body.lang-my .dj-card h3,
        body.lang-my .podcast-card h3,
        body.lang-my .sponsorship-info-box h3,
        body.lang-my .branches-card h3,
        body.lang-my .service-item h3,
        body.lang-my .full-screen-overlay nav ul li a { /* Corrected selector for mobile menu */
            font-family: 'Myanmar Jojar Pro', sans-serif !important;
        }

        body.lang-my footer h3 {
            font-family: 'Myanmar Jojar Pro', sans-serif !important;
        }

        body.lang-my #hero p,
        /* body.lang-my .btn, */
        body.lang-my .dj-card p,
        body.lang-my .podcast-card p,
        body.lang-my .sponsorship-info-box p,
        body.lang-my .branches-card p,
        body.lang-my .service-item p,
        body.lang-my .form-group input,
        body.lang-my .form-group textarea {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
        }

        body.lang-my footer p {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
        }

        /* Correct font assignment for English mobile view */
        body.lang-en #hero h1,
        body.lang-en .section-title,
        body.lang-en .dj-card h3,
        body.lang-en .podcast-card h3,
        body.lang-en .sponsorship-info-box h3,
        body.lang-en .branches-card h3,
        body.lang-en .service-item h3,
        
        body.lang-en .full-screen-overlay nav ul li a { /* Corrected selector for mobile menu */
            font-family: 'Merienda', cursive !important;
        }

        body.lang-en footer h3 {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
            font-size: 1.3rem;
        }

        body.lang-en #hero p,
        /* body.lang-en .btn, */
        body.lang-en .dj-card p,
        body.lang-en .podcast-card p,
        body.lang-en .sponsorship-info-box p,
        body.lang-en .branches-card p,
        body.lang-en .service-item p,
        
        body.lang-en .form-group input,
        body.lang-en .form-group textarea {
            font-family: "Handlee", cursive !important;
        }

        body.lang-en footer p {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
            font-size: 1.1rem;
        }
}

    @media (min-width: 769px) {
        /* Desktop schedule time formatting (default is single line) */
        #schedule td:first-child {
            white-space: nowrap; /* Prevents line breaks */
        }
    }

        /* Song Request Form Styles */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #282828;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .form-container p {
            text-align: center;
            color: #b0b0b0;
            margin-bottom: 1.5rem;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #e0e0e0;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #3a3a3a;
            border-radius: 5px;
            background-color: #1a1a1a;
            color: #e0e0e0;
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif;
            font-size: 1rem;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #c90909;
        }

        .btn-song-request {
            width: 100%;
            display: block;
            text-align: center;
        }

        /* Ensure the mobile language switcher text uses the correct font based on the body's language class */
        body.lang-my .full-screen-overlay nav ul li a#lang-switcher-mobile {
            font-family: 'YoeYar-One', 'Myanmar Text', sans-serif !important;
        }

        body.lang-en .full-screen-overlay nav ul li a#lang-switcher-mobile {
            font-family: "Ubuntu", sans-serif !important;
        }

        /* Full-width line separator */
        .full-width-line {
            border: none;
            border-top: 1px solid #3a3a3a;
            width: 100%;
            margin-top: 1rem;
            margin-bottom: 1rem;
        }

        /* Footer Links */
        .footer-links {
            text-align: center;
            margin-top: 1rem;
            line-height: 1.5; /* Add some line height for better spacing */
        }

        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 0 0.5rem; /* Add horizontal padding for spacing */
        }

        .footer-links a:hover {
            color: #c90909;
            text-decoration: underline;
        }

        .link-separator {
            color: #e0e0e0;
            font-size: 0.9rem;
        }