:root {
    --primary-red: #b30000;
    --dark-bg: #0a0a0a;
    --dark-section-bg: #111111;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --neon-orange: #ff9900;
    --neon-yellow: #ffcc00;
    --blue-banner: #133b70;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1440px;
    width: 95%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Utils */
.btn-live-pulse {
    background: #ff0000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Top Bar / Live Player (User Integrated) */
.player-container {
    width: 100%;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    /* Groups everything side-by-side to the left */
    align-items: center;
    gap: 15px;
    /* Space between logo group and buttons */
    padding: 1px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* Ensure it's on top of everything */
    border-bottom: 1px solid #222;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ensure logo size is controlled via CSS as well */
.player-header img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
}

/* Container for the buttons to keep them grouped with the logo */
.player-controls-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-button {
    background-color: #004488;
    /* Blue to match screenshot */
    color: #2e2b2b;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 13px;
    white-space: nowrap;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-left: 8px;
    animation: blink 1s infinite;
}

.play-pause-button,
.volume-button,
.share-button {
    background-color: #004488;
    /* Blue background */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.play-pause-button:hover,
.volume-button:hover,
.share-button:hover {
    background-color: #003366;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Main Header */
.main-header {
    background-color: #0d0d0d;
    padding: 25px 0;
    border-bottom: 2px solid #222;
    position: relative;
    z-index: 1000;
}

/* Header Grid/Flex Layout */
.nav-container {
    display: flex;
    align-items: self-end;
    justify-content: center;
    /* Centered layout for Desktop */
    gap: 349px;
    /* Reasonable gap */
    position: relative;
}

.logo-box {
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    width: fit-content;
    flex-shrink: 0;
    margin-top: 5px;
    /* Push logo down slightly as requested */
}

.brand-logo {
    height: 90px;
    /* Optimal size */
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--primary-red);
}

.nav-separator {
    width: 1px;
    height: 20px;
    background-color: #444;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}


/* Hero Section */
.hero-section {
    background-color: #050505;
    min-height: 600px;
    height: 80vh;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Ensure children stack vertically */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    /* "Big Size" Request: Uses 85% of screen height */
    height: 100%;
    /* Fill the section */
    flex: 1;
    /* Grow to fill available space */
    border-radius: 0;
    margin-bottom: 0;
    background: #000;
    display: block;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    display: block;
    /* "Kaplasın" = Cover. Fills area, crops excess edges to fit. */
    object-fit: cover;
    object-position: center;
}

/* Overlay Controls Position */
.hero-overlay-controls {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-image-wrapper {
        border-radius: 0;
        /* Full width means no corners usually, or keep if user wants style but full width */
        width: 100%;
        height: 50vh;
        /* Fixed height to force cover */
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Cover the container */
    }

    .hero-overlay-controls {
        bottom: 8%;
    }
}

.knob {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(#333, #111);
    border: 2px solid #444;
    box-shadow: 0 0 10px cyan;
}

.hero-overlay-controls {
    position: absolute;
    bottom: 50px;
    left: 20%;
}

.hero-bottom-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #666;
    font-size: 12px;
    width: 100%;
    padding: 0 10px;
}

/* Platforms Banner */
.platforms-banner {
    background: var(--blue-banner);
    padding: 30px 0;
    color: white;
}

.platforms-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Ensure wrapping on smaller screens */
}

.platform-label {
    font-size: 24px;
    font-weight: 700;
}

.platform-logos {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    /* Wrap logos */
    justify-content: center;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    color: white;
}

.brand-item strong {
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.about-content p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}


/* Redesigned Collage Wrapper */
.about-images {
    display: flex;
    gap: 20px;
    height: 450px;
}

.about-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-item.img-radio {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.collage-item.img-radio:hover {
    transform: translateY(-10px);
}

.collage-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col-img {
    flex: 1;
    border-radius: 20px;
    background-color: #f0f0f0;
    /* Fallback */
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.col-img:hover {
    transform: scale(1.02);
}

/* Container for Crowd Image + Badge */
.img-overlay-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.on-air {
    position: absolute;
    z-index: 10;
    background: #ff0000;
    color: white;
    padding: 8px 15px;
    font-weight: 800;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    letter-spacing: 1px;
    border: 2px solid white;
}


/* Frequencies Section */
.frequencies-section {
    background-color: #050505;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    background-image: url('frequencies-bg.png');
    background-size: cover;
    background-position: center;
}

.freq-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.section-title-pill {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 50px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    background: rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.freq-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.freq-item {
    text-align: center;
    min-width: 80px;
}

.freq-item .city {
    display: block;
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 8px;
    font-weight: 600;
}

.freq-item .hz {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.satellite-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sat-box h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
}

.sat-box p {
    font-size: 13px;
    color: #ccc;
    max-width: 350px;
    margin: 0 auto;
    line-height: 1.5;
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
    /* Clean white background */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left Side Info */
.contact-info h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.underline {
    width: 60px;
    height: 4px;
    background: #004488;
    margin-bottom: 40px;
    border-radius: 2px;
}

.info-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    /* Wrap on smaller screens inside the column */
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-card.full-width {
    margin-top: 10px;
}

.icon-box {
    background: #004488;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    /* Rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-card .text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.info-card .text p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Social Media Area */
.social-links-area {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links-area h4 {
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
}

.social-squares {
    display: flex;
    gap: 10px;
}

.social-squares a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.social-squares a:hover {
    background: #004488;
    color: white;
    border-color: #004488;
}

/* Right Side Form */
.contact-form-wrapper {
    background: #fff;
    padding: 10px 0;
    /* Minimal padding container self, form inputs have spacing */
    /* Screenshot shows form on a card or just clean on white? It looks like a white card on white or very subtle shadow. Let's add standard clean look */
    border-radius: 10px;
}

.contact-form-wrapper h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f4f5f7;
    /* Light gray background */
    border: 1px solid transparent;
    border-radius: 8px;
    /* Rounded inputs */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border 0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #004488;
}

.submit-btn {
    background: #004488;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    /* Fully rounded button pill */
    cursor: pointer;
    font-weight: bold;
    align-self: flex-start;
    /* Align left */
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #003366;
}

/* Tablet & Mobile Responsiveness for Contact Section */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        /* Stack columns on tablet */
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        /* Stack name/phone etc on mobile */
        gap: 20px;
    }

    .info-row {
        flex-direction: column;
        /* Stack info items */
    }

    .submit-btn {
        width: 100%;
        /* Full width button on mobile */
        justify-content: center;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #a00000 0%, #700000 100%);
    /* Premium Gradient */
    color: white;
    padding-top: 70px;
    font-size: 14px;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    /* 4 columns */
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 20px;
    /* Larger slogan */
    font-weight: 900;
    margin-top: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Text depth */
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    /* More formal */
    letter-spacing: 0.5px;
}

/* Underline accent for headers */
.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    /* Slightly easier to read */
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
    /* Slide effect */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-col i {
    width: 25px;
    text-align: center;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.9);
}

/* Whatsapp Button Premium */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    /* WhatsApp Gradient */
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy pop */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
    background: linear-gradient(135deg, #2ce070 0%, #15a593 100%);
}

/* App Buttons Inline */
.footer-apps-inline {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.store-btn img {
    height: 42px;
    border-radius: 8px;
    background: black;
    /* App store buttons usually black w/ border */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    /* SVG usually full bleed */
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.store-btn:hover img {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    /* Overlay instead of solid color for blending */
    padding: 25px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.scroll-top-btn {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.scroll-top-btn:hover {
    background: white;
    color: #990000;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet */
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on mobile as requested */
        text-align: left;
        /* Left align looks better in 2-col grid */
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-col h4::after {
        left: 0;
        /* Reset underline to left */
        transform: none;
    }

    .footer-col h3 {
        font-size: 16px;
        /* Slightly smaller slogan on mobile */
    }

    .footer-col i {
        margin-right: 5px;
    }

    .whatsapp-btn {
        width: 100%;
        /* Full width button for easier tapping */
        justify-content: center;
        margin: 10px 0;
    }

    .footer-apps-inline {
        flex-direction: column;
        /* Stack app buttons on very small screens if needed, or keep row */
        align-items: flex-start;
        gap: 10px;
        margin-top: 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* =========================================
   RESPONSIVE (TABLET & MOBILE)
   ========================================= */

/* Tablet / Smaller Desktop (Max 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        justify-content: space-between;
        /* Spread out */
        gap: 20px;
    }

    .header-right {
        /* On tablet, valid to keep grouped if there's space, 
           or switch to hamburger earlier if menu is long. 
           Let's try to keep it visible on landscape tablet, 
           but reduce font size spacing */
        gap: 15px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .brand-logo {
        height: 50px;
    }

    .neon-radio-graphic {
        transform: scale(0.85);
        margin-bottom: 40px;
    }

    .hero-section {
        min-height: 50vh;
        /* Adjust height for tablet */
        height: auto;
        flex-direction: column;
        text-align: center;
        padding: 0;
        /* Remove padding to avoid black bars */
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile (Max 768px) */
/* Mobile (Max 768px) */
@media (max-width: 768px) {
    body {
        padding-top: 20px;
        /* Push content down for fixed player */
    }

    .player-container {
        padding: 5px 15px;
        justify-content: space-between;
        /* On mobile, maybe space them out or keep left? Let's keep flex-start but reduce gap if needed, or space-between if it fits better. The user said 'side by side all', but on mobile width is limited. Let's keep flex-start but with smaller gap. */
        gap: 10px;
        overflow-x: auto;
        /* Handle overflow if too many buttons */
    }

    /* .top-bar rule removed as class no longer exists */

    .nav-container {
        padding: 10px 15px;
    }

    .brand-logo {
        height: 40px;
    }

    /* MENU TOGGLE */
    .mobile-menu-toggle {
        display: block;
    }

    /* Hide standard nav items/layout */
    .header-right {
        display: none;
        /* Hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0d0d0d;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        align-items: center;
        gap: 20px;
        border-top: 1px solid #222;
        /* Animation/Transition could go here */
    }



    /* Active State for JS */
    .header-right.active {
        display: flex;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .main-nav a {
        font-size: 16px;
        display: block;
        padding: 10px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-separator {
        display: none;
    }

    .social-icons {
        margin-top: 10px;
    }

    /* Hero */
    .hero-section {
        height: auto;
        min-height: 50vh;
        /* Ensure visibility */
        padding: 0;
        /* Remove padding */
    }

    .neon-radio-graphic {
        width: 100%;
        max-width: 350px;
        height: 250px;
        /* Smaller */
        transform: none;
    }

    .radio-screen {
        height: 100px;
    }

    .neon-text-top {
        font-size: 24px;
    }

    .neon-text-bottom {
        font-size: 32px;
    }

    /* Platforms */
    .platforms-banner .container {
        gap: 20px;
        flex-direction: column;
    }

    .platform-logos {
        gap: 20px;
    }

    /* Frequencies */
    .section-title-pill {
        font-size: 20px;
        padding: 10px 30px;
        margin-bottom: 40px;
    }

    .freq-grid {
        gap: 20px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 60px;
    }

    /* Freq grid 2 columns */
    .freq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .satellite-info {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================================
   PROJECTS PAGE STYLES
   ========================================= */

.projects-page-section {
    padding: 70px 0 100px 0;
    /* Top padding adjusts for fixed header */
    min-height: 80vh;
    background-color: #fdfcfc;
}

.page-title {
    text-align: left;
    margin-bottom: 40px;
    font-weight: 900;
    font-size: 32px;
    color: #0d0d0d;
    border-left: 5px solid #a00000;
    /* Matching footer red */
    padding-left: 15px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 Layout */
    gap: 30px;
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s forwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Maintains responsive height */
    position: relative;
    background-color: #333;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the card */
    transition: transform 0.5s ease;
    display: block;
}

.project-card:hover .project-img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

/* Scroll Reveal Animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease-out;
}

.reveal-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal-active {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right {
        transform: translateX(0);
        /* Disable horizontal shift on mobile for better UX */
        transform: translateY(30px);
        /* Use slight fade-up instead */
    }

    .reveal-active {
        transform: translateY(0);
    }
}

/* =========================================
   INTERACTIVE MAP PAGE STYLES
   ========================================= */

.map-page-section {
    padding: 60px 0 100px 0;
    min-height: 80vh;
    background-color: #fdfcfc;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.interactive-map-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #FFD700;
    /* Match yellow map background approximatively */
}

.interactive-map-img {
    width: 100%;
    height: auto;
    display: block;
}


/* Clean Map Mode */
.map-container.clean-map-mode {
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

/* Map Label Buttons - Interactive Hotspots */
.map-label-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.0);
    /* Transparent by default */
    border: 2px solid rgba(255, 215, 0, 0.3);
    /* Subtle guide ring, can be removed if desired */
    /* Pulse effect to show interactivity */
    animation: hotspotPulse 2s infinite;
}

.map-label-btn:hover,
.map-label-btn.active {
    background: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    border-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes hotspotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Glassmorphism Popover */
.freq-popover.glass-effect {
    position: fixed;
    /* Fixed to center of screen or keep absolute to map? Fixed is better for "info" */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 320px;
    background: rgba(20, 20, 20, 0.6);
    /* Darker semi-transparent bg */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    /* Higher z-index */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
}

.freq-popover.glass-effect.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.popover-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popover-header span {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #ffd700;
    /* Gold */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.close-popover {
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popover:hover {
    background: rgba(255, 255, 255, 0.3);
}

.popover-body {
    padding: 25px;
    max-height: 300px;
    overflow-y: auto;
}

.popover-body h6 {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.popover-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.popover-body ul li i {
    color: #ffd700;
    /* Gold icon */
    margin-right: 12px;
}

.popover-body ul li:last-child {
    border-bottom: none;
}

.popover-body ul li:last-child {
    border-bottom: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .map-label-btn {
        font-size: 14px;
        background: rgba(255, 255, 255, 0.7);
        /* More contrast on mobile small screen */
    }

    .map-label-btn.huge-label {
        font-size: 18px;
    }

    .freq-popover {
        position: fixed;
        /* Fixed on screen center for mobile */
        top: 50% !important;
        left: 50% !important;
        width: 90%;
        max-width: 320px;
    }
}

/* Map Responsiveness */
@media (max-width: 768px) {
    .map-hotspot {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .map-container {
        border-radius: 10px;
    }

    .info-content-active h2 {
        font-size: 36px;
    }
}

/* ============================================
   LIVE SECTION STYLES
   ============================================ */

.live-page-body {
    background-color: #0a0a0a;
}

.live-section {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    min-height: calc(100vh - 200px);
}

.live-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* Video Player Container */
.live-player-container {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.live-video-wrapper {
    width: 100%;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Live Video Element */
.live-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Video Logo Top Left */
.video-logo-top {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff0066, #ff3366);
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 10;
}

.video-logo-kn {
    color: white;
    font-weight: 900;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

/* Star Icon Top Right */
.video-star-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ff00ff;
    font-size: 24px;
    text-shadow: 0 0 10px #ff00ff;
    z-index: 10;
}

/* QR Code */
.video-qr {
    position: absolute;
    bottom: 60px;
    left: 15px;
    z-index: 10;
}

.video-qr img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Channel Info */
.video-channel-info {
    position: absolute;
    bottom: 60px;
    left: 90px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 20px;
    z-index: 10;
}

.channel-icon {
    color: white;
    font-size: 14px;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.channel-name {
    color: white;
    font-size: 12px;
    font-weight: 600;
}

/* Video Overlay Controls */
.video-overlay-controls {
    position: absolute;
    bottom: 60px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.video-overlay-controls button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Video Controls Bar */
.video-controls-bar {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    gap: 20px;
}

.controls-left,
.controls-right {
    display: flex;
    gap: 10px;
}

.ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.controls-center {
    flex: 1;
}

.progress-bar-wrapper {
    width: 100%;
    padding: 0 10px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #ff0066, #ff3366);
    border-radius: 2px;
}

/* ============================================
   PLATFORMS PANEL
   ============================================ */

.live-platforms-panel {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Platforms Header */
.platforms-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 25px 20px;
    display: flex;
    justify-content: center;
}

/* Channel Header Logo */
.channel-header-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.kn-music-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kn-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.kn-logo-text {
    display: flex;
    flex-direction: column;
}

.kn-text {
    color: #00d4ff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.music-tv-text {
    color: #ff00ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Platforms Title */
.platforms-title {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.platforms-title h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Platforms List */
.platforms-list {
    padding: 10px 0;
}

.platform-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.platform-item:hover {
    background: #f0f0f0;
}

.platform-item:last-child {
    border-bottom: none;
}

/* Platform Logo Boxes */
.platform-logo-box {
    width: 50px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.platform-logo-box.magenta-bg {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.platform-logo-box.red-bg {
    background: linear-gradient(135deg, #f44336, #e91e63);
}

.platform-logo-box.white-border {
    background: transparent;
    border: 2px solid #333;
}

.platform-logo-box.orange-multi {
    background: linear-gradient(135deg, #ff9800, #ff5722);
}

.platform-logo-box.filbox-orange {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    position: relative;
}

.platform-logo-text {
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.platform-logo-small {
    color: white;
    font-size: 10px;
    font-weight: 700;
}

.platform-logo-izle {
    color: white;
    font-size: 10px;
    font-weight: 700;
    background: #2196f3;
    padding: 1px 4px;
    border-radius: 2px;
    margin-left: 2px;
}

.platform-logo-tv,
.platform-logo-v {
    color: #333;
    font-size: 16px;
    font-weight: 900;
}

.fil-text {
    color: white;
    font-size: 12px;
    font-weight: 900;
}

.box-text {
    color: white;
    font-size: 8px;
    font-weight: 700;
    display: block;
    margin-top: -3px;
}

.filbox-play {
    position: absolute;
    right: 5px;
    color: #0066cc;
    font-size: 14px;
}

/* Platform Info */
.platform-info {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.platform-channel {
    color: #e91e63;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.platform-name {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

/* Platform Logo Image */
.platform-logo-img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Active Nav Link */
.nav-active {
    color: #ff0066 !important;
    position: relative;
}

.nav-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff0066;
}

/* ============================================
   LIVE SECTION RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .live-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .live-platforms-panel {
        max-width: 100%;
    }

    .platforms-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .platform-item {
        border-right: 1px solid #eee;
    }

    .platform-item:nth-child(2n) {
        border-right: none;
    }

    .live-section {
        padding: 100px 0 60px 0;
    }
}

/* ============================================
   LIVE SECTION RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .live-section {
        padding: 80px 0 40px 0;
    }

    .live-wrapper {
        gap: 20px;
    }

    .live-player-container {
        border-radius: 8px;
    }

    .video-controls-bar {
        padding: 10px 15px;
        gap: 10px;
    }

    .ctrl-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .video-qr {
        display: none;
    }

    .video-channel-info {
        left: 15px;
        bottom: 50px;
    }

    .platforms-list {
        grid-template-columns: 1fr;
    }

    .platform-item {
        border-right: none;
    }

    .platforms-header {
        padding: 20px 15px;
    }

    .kn-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .kn-text {
        font-size: 26px;
    }

    .music-tv-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .live-section {
        padding: 70px 0 30px 0;
    }

    .video-logo-top {
        top: 10px;
        left: 10px;
        padding: 3px 8px;
    }

    .video-logo-kn {
        font-size: 12px;
    }

    .video-star-icon {
        top: 10px;
        right: 10px;
        font-size: 18px;
    }

    .video-overlay-controls {
        bottom: 50px;
        right: 10px;
    }

    .video-overlay-controls button {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .controls-left .pause-main {
        display: none;
    }

    .platform-item {
        padding: 10px 15px;
    }

    .platform-logo-box {
        width: 45px;
        height: 30px;
    }

    .platform-channel {
        font-size: 16px;
    }

    .platform-name {
        font-size: 12px;
    }
}