:root {
    --ui-bg: #07111f;
    --ui-bg-soft: rgba(10, 19, 33, 0.74);
    --ui-surface: rgba(255, 255, 255, 0.08);
    --ui-line: rgba(255, 255, 255, 0.12);
    --ui-text: #f8fafc;
    --ui-text-soft: #cbd5e1;
    --ui-text-muted: rgba(248, 250, 252, 0.64);
    --ui-red: #e11d48;
    --ui-red-dark: #be123c;
    --ui-white: #ffffff;
    --ui-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    --ui-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.12);
    --ui-radius: 22px;
    --ui-radius-sm: 14px;
}

@keyframes live-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

@keyframes live-pulse-ring {
    0% { transform: scale(1); opacity: 0.7; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes live-card-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(225, 29, 72, 0.2); }
    50% { box-shadow: 0 0 40px rgba(225, 29, 72, 0.5); }
}


body {
    font-family: "Inter", sans-serif;
    color: #0f172a;
    background: linear-gradient(180deg, #fffaf8 0%, #ffffff 28%, #fff8f4 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.header__menu ul li a,
.footer__social h2 {
    font-family: "Space Grotesk", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.72) 0%, rgba(7, 17, 31, 0) 100%);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px;
    padding: 12px 18px;
    background: var(--ui-bg-soft);
    border: 1px solid var(--ui-line);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    box-shadow: var(--ui-shadow);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-brand__title {
    font-size: 15px;
    font-weight: 800;
    color: var(--ui-white);
    letter-spacing: 0.02em;
}

.e2t-inline-logo {
    height: 1.5em;
    width: auto;
    max-height: 52px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 6px;
    object-fit: contain;
}

.e2t-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000000;
    padding: 0.1em 0.38em 0.14em;
    border-radius: 4px;
    font-family: "Space Grotesk", "Arial Black", sans-serif;
    font-weight: 900;
    line-height: 1;
    vertical-align: middle;
    margin-right: 0.18em;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.e2t-brand-mark .e2t-e,
.e2t-brand-mark .e2t-t {
    color: #ffffff !important;
    font-size: 0.95em !important;
    font-weight: 900 !important;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
}

.e2t-brand-mark .e2t-2 {
    color: #ff0000 !important;
    font-size: 1.55em !important;
    font-weight: 900 !important;
    position: relative;
    z-index: 2;
    margin: 0 -0.08em;
    transform: translateY(-0.1em);
    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
         0 2px 4px rgba(0, 0, 0, 0.9);
}

.logo-red-2 {
    color: #ff0000 !important;
    font-size: 1.55em !important;
    font-weight: 900 !important;
    display: inline-block;
    vertical-align: middle;
    line-height: 0.75;
    margin: 0 1px;
}

.site-brand__subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.62);
}

.site-nav-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header__menu {
    margin-right: 0;
    padding: 0;
}

.header__menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: nowrap;
}

.header__menu ul li {
    margin-right: 0;
}

.header__menu ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: rgba(248, 250, 252, 0.82);
    letter-spacing: 0.01em;
    text-transform: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header__menu ul li a::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: var(--ui-red);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
    opacity: 1;
}

.header__menu ul li a:hover,
.header__menu ul li.is-active > a {
    color: var(--ui-white);
}

.header__menu ul li a:hover::after,
.header__menu ul li.is-active > a::after {
    transform: scaleX(1);
}

/* ── Header Dropdown Menu ────────────────────────────── */
.header__menu > ul > li.has-dropdown {
    position: relative !important;
}

.header__menu > ul > li.has-dropdown > .dropdown {
    position: absolute !important;
    left: 50% !important;
    top: 100% !important;
    transform: translateX(-50%) translateY(12px) !important;
    width: 170px !important;
    min-width: 170px !important;
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(18px) !important;
    border-radius: 14px !important;
    padding: 8px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
    /* Critical: override the flex from general dropdown rule */
    display: block !important;
    margin: 0 !important;
    list-style: none !important;
}

.header__menu > ul > li.has-dropdown:hover > .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(4px) !important;
}

/* Force each dropdown item to stack vertically */
.header__menu > ul > li.has-dropdown > .dropdown > li {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.header__menu > ul > li.has-dropdown > .dropdown > li > a {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #cbd5e1 !important;
    padding: 9px 14px !important;
    border-radius: 8px !important;
    display: block !important;
    text-transform: none !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    width: 100% !important;
    white-space: nowrap !important;
    text-align: left !important;
    background: transparent !important;
}

.header__menu > ul > li.has-dropdown > .dropdown > li > a:after {
    display: none !important;
}

.header__menu > ul > li.has-dropdown > .dropdown > li > a:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.header__menu > ul > li.has-dropdown > .dropdown > li.is-active > a {
    background: rgba(225, 29, 72, 0.2) !important;
    color: #e11d48 !important;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.site-btn-ui {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.site-btn-ui--ghost {
    color: var(--ui-white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.site-btn-ui--ghost:hover {
    color: var(--ui-white);
    background: rgba(255, 255, 255, 0.1);
}

.site-btn-ui--primary,
.primary-btn,
.site-btn {
    color: var(--ui-white);
    background: linear-gradient(135deg, var(--ui-red), var(--ui-red-dark));
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(225, 29, 72, 0.28);
}

.site-btn-ui--primary:hover,
.primary-btn:hover,
.site-btn:hover {
    color: var(--ui-white);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(225, 29, 72, 0.34);
}

.primary-btn.border-btn {
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: none;
}

.primary-btn.border-btn:hover {
    background: #ffffff;
    color: #111827;
}

.breadcrumb-option {
    padding-top: 42px;
    padding-bottom: 8px;
}

.breadcrumb__links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--ui-shadow-soft);
}

.event__item,
.blog__large,
.blog__item,
.podcast-card,
.videos__item,
.blog__details__comments__item,
.contact__form,
.contact__address {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.blog__item__text,
.blog__large__text,
.blog__details__item__text,
.contact__form,
.contact__address,
.podcast-card,
.blog__sidebar__item,
.blog-empty {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.blog__sidebar__item,
.blog-empty {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--ui-shadow-soft);
}

.recent__item {
    padding: 10px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.recent__item:hover {
    background: rgba(225, 29, 72, 0.05);
}

.footer {
    background-size: cover;
    height: auto !important;
    min-height: 549px;
    padding-bottom: 40px;
}

.footer__social h2,
.footer__social__links a {
    color: #fff;
}

.footer__copyright__text p,
.footer__copyright__text a {
    color: #e0e0e0 !important;
}

.footer__copyright__text a:hover {
    color: #ffffff !important;
}

.footer__newslatter form input {
    border-radius: 999px;
    padding-right: 68px;
}

.footer__newslatter form button {
    font-size: 18px;
    color: #fff;
    background: #e11d48;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 24px;
    border: none;
    border-radius: 0 999px 999px 0;
    transition: background 0.3s ease;
}

.contact__form form .input__list--half input,
.contact__form form .input__list--half .select__wrapper {
    width: calc(50% - 16px);
    float: left;
}

.contact__form form .input__list--half .select__wrapper select {
    height: 50px;
    font-size: 13px;
    color: #666666;
    padding-left: 20px;
    border: 1px solid #e1e1e1;
    width: 100%;
    margin-bottom: 20px;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact__form form .input__list--half .select__wrapper {
    position: relative;
    margin-right: 16px;
    margin-bottom: 20px;
}

.contact__form form .input__list--half .select__wrapper::after {
    content: '\f107';
    font-family: "FontAwesome";
    position: absolute;
    right: 15px;
    top: 15px;
    pointer-events: none;
    color: #666666;
}

.alert {
    border: 0;
    border-radius: 16px;
    box-shadow: var(--ui-shadow-soft);
}

@media only screen and (max-width: 1199px) {
    .header__menu ul {
        gap: 18px;
    }
}

@media only screen and (max-width: 991px) {
    .site-header__inner {
        min-height: 74px;
        padding: 10px 14px;
    }

    .site-brand img {
        width: 46px;
        height: 46px;
    }
}

@media only screen and (max-width: 767px) {
    .site-header {
        padding: 10px 0;
    }

    .site-brand__subtitle {
        display: none;
    }

    .site-header__actions {
        display: flex !important;
        align-items: center;
        gap: 6px;
        margin-right: 48px; /* Safe margin for the hamburger button */
    }

    .site-header__actions .site-btn-ui--ghost,
    .site-header__actions #pwa-header-btn {
        display: none !important;
    }

    .site-header__actions .site-btn-ui--primary {
        display: inline-flex !important;
        min-height: 34px;
        padding: 5px 12px;
        font-size: 12px;
        border-radius: 50px;
        white-space: nowrap;
    }

    .site-nav-wrap {
        flex: 0 0 auto;
    }

    .header__nav {
        display: none;
    }

    .site-header .container {
        position: relative;
    }

    .slicknav_menu {
        display: block;
        background: transparent;
        padding: 0;
    }

    .slicknav_btn {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        padding: 8px;
        border-radius: 8px;
        background: transparent !important;
        box-shadow: none !important;
        float: none;
        z-index: 10;
    }

    .slicknav_btn .slicknav_menutxt {
        display: none !important;
    }

    .slicknav_menu .slicknav_icon {
        margin: 0 !important;
        float: none;
    }

    .slicknav_menu .slicknav_icon-bar {
        background-color: #ffffff !important;
        box-shadow: none !important;
        width: 22px;
        height: 2px;
    }

    .slicknav_nav {
        position: absolute;
        left: 15px;
        right: 15px;
        top: 100%;
        margin-top: 10px;
        background: rgba(10, 19, 33, 0.96) !important;
        border: 1px solid var(--ui-line) !important;
        backdrop-filter: blur(18px) !important;
        border-radius: 18px !important;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
        padding: 12px 10px !important;
        z-index: 1100;
    }

    .slicknav_nav a,
    .slicknav_nav .slicknav_row {
        color: #f8fafc !important;
        font-weight: 600 !important;
        padding: 12px 16px !important;
        border-radius: 10px !important;
        margin: 2px 0 !important;
        transition: background 0.2s ease, color 0.2s ease !important;
        text-transform: none !important;
    }

    .slicknav_nav a:hover,
    .slicknav_nav .slicknav_row:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
    }

    .slicknav_nav li.is-active > a {
        background: rgba(225, 29, 72, 0.15) !important;
        color: #e11d48 !important;
    }
}

@media only screen and (max-width: 480px) {
    .site-brand__title {
        font-size: 13px;
    }

    .site-header__actions .site-btn-ui--primary {
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb__links {
        width: 100%;
        border-radius: 20px;
    }

    .footer__social,
    .footer__copyright__text {
        text-align: left;
    }

    .footer__social .footer__social__links a {
        margin-bottom: 10px;
    }
}

/* Extracted from shows.blade.php */
.main-content {
                margin-top: 80px;
                padding: 20px;
            }

            .videos__grid {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }

            .videos__item {
                background: #fff;
                border-radius: 12px;
                overflow: hidden;
                box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
                transition: transform 0.2s ease, box-shadow 0.2s ease;
            }

            .videos__item:hover {
                transform: translateY(-4px);
                box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
            }

            .videos__item__pic {
                position: relative;
                padding-top: 56.25%;
                background: #000;
            }

            .videos__item__pic img,
            .videos__item__link {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
            }

            .videos__item__link {
                display: block;
            }

            .videos__item__pic img {
                object-fit: cover;
            }

            .videos__item__text {
                padding: 14px;
            }

            .videos__item__text h5 {
                margin: 0 0 6px;
                font-size: 16px;
                color: #111827;
                font-weight: 700;
            }

            .videos__item__text ul {
                margin: 0;
                padding: 0;
                list-style: none;
                font-size: 14px;
                color: #6b7280;
            }

            .videos__item__text ul li {
                display: inline;
                margin-right: 10px;
            }

            .play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 64px;
                height: 64px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                background: rgba(0, 0, 0, 0.6);
                border-radius: 50%;
                font-size: 24px;
                opacity: 0;
                transition: opacity 0.3s ease, transform 0.3s ease;
                z-index: 10;
                pointer-events: none;
            }

            .videos__item:hover .play-btn,
            .videos__item__link:focus .play-btn {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.04);
            }

            .videos__item__status {
                display: inline-block;
                margin-top: 8px;
                color: #6b7280;
                font-size: 13px;
            }

            .mfp-bg {
                background: rgba(0, 0, 0, 0.85);
                z-index: 1042;
            }

            .mfp-wrap {
                z-index: 1043;
            }

            .mfp-content {
                max-width: 90vw;
                max-height: 90vh;
                margin: 0 auto;
            }

            .mfp-content video {
                width: 100%;
                height: auto;
                max-height: 80vh;
                display: block;
                border-radius: 8px;
                background: #000;
            }

            .mfp-close {
                color: white !important;
                font-size: 50px;
                opacity: 1;
                right: 10px;
                top: 10px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                width: 35px;
                height: 35px;
                line-height: 35px;
                text-align: center;
            }

            .pagination {
                margin-top: 20px;
                display: flex;
                justify-content: center;
            }

            .pagination .page-link {
                color: #030303;
                border-radius: 5px;
                margin: 0 3px;
            }

            .pagination .page-item.active .page-link {
                background-color: red;
                border-color: red;
                color: #fff;
            }

/* Extracted from podcasts.blade.php */
:root {
            --primary-color: #e11d48;
            --primary-hover: #be123c;
            --text-color: #333;
            --text-light: #666;
            --text-lighter: #999;
            --bg-color: #f9fafb;
            --bg-card: #fff;
            --bg-player: #f3f4f6;
            --border-color: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --radius: 0.75rem;
            --transition: all 0.3s ease;
        }

        .podcast {
            padding: 3rem 0;
        }

        .podcast .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .podcast .section-title span {
            color: var(--primary-color);
        }

        .podcast-card {
            background-color: var(--bg-card);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .podcast-card__inner {
            display: flex;
            flex-direction: column;
        }

        .podcast-card__image {
            width: 100%;
            min-height: 240px;
        }

        .podcast-card__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .podcast-card__content {
            padding: 1.5rem;
        }

        .podcast-card__title {
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .podcast-card__meta {
            color: var(--text-lighter);
            margin-bottom: 0.75rem;
        }

        .podcast-card__description {
            margin-bottom: 1rem;
        }

        .audio-player {
            width: 100%;
            background-color: var(--bg-player);
            border-radius: 0.5rem;
            padding: 0.5rem;
        }

        @media (min-width: 768px) {
            .podcast-card__inner {
                flex-direction: row;
            }

            .podcast-card__image {
                width: 32%;
            }

            .podcast-card__content {
                width: 68%;
            }
        }

/* Extracted from chat-widget.blade.php */
.site-chat {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 1400;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 14px;
    }

    .site-chat__toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, #e11d48, #be123c);
        color: #fff;
        font-weight: 700;
        padding: 14px 18px;
        box-shadow: 0 16px 40px rgba(190, 18, 60, 0.34);
    }

    .site-chat__panel {
        width: min(400px, calc(100vw - 24px));
        background: rgba(6, 12, 22, 0.985);
        color: #f8fafc;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 28px 80px rgba(2, 6, 23, 0.48);
        overflow: hidden;
    }

    .site-chat__panel-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 18px 14px;
        background: linear-gradient(180deg, rgba(225, 29, 72, 0.22), rgba(225, 29, 72, 0));
    }

    .site-chat__panel-header p {
        margin: 4px 0 0;
        color: rgba(248, 250, 252, 0.78);
        font-size: 13px;
    }

    .site-chat__close {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .site-chat__messages {
        max-height: 360px;
        min-height: 200px;
        overflow-y: auto;
        padding: 10px 18px 18px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        background: rgba(255, 255, 255, 0.02);
    }

    .site-chat__message,
    .site-chat__empty {
        border-radius: 20px;
        padding: 14px 16px;
        max-width: 88%;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .site-chat__message--visitor {
        align-self: flex-end;
        background: linear-gradient(135deg, #b3123b, #881337);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .site-chat__message--admin {
        align-self: flex-start;
        background: rgba(255, 255, 255, 0.11);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: #f8fafc;
    }

    .site-chat__empty {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #f8fafc;
        max-width: 100%;
    }

    .site-chat__message-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 700;
        color: rgba(248, 250, 252, 0.82);
    }

    .site-chat__message--visitor .site-chat__message-head {
        color: rgba(255, 255, 255, 0.94);
    }

    .site-chat__message-text {
        margin: 0;
        white-space: pre-wrap;
        word-break: break-word;
        font-size: 15px;
        line-height: 1.7;
        font-weight: 600;
        letter-spacing: 0.01em;
        color: #ffffff !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
    }

    .site-chat__form {
        padding: 0 18px 18px;
        display: grid;
        gap: 10px;
    }

    .site-chat__input,
    .site-chat__textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        padding: 13px 14px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .site-chat__input:focus,
    .site-chat__textarea:focus {
        outline: none;
        border-color: rgba(244, 63, 94, 0.6);
        background: rgba(255, 255, 255, 0.11);
        box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
    }

    .site-chat__input::placeholder,
    .site-chat__textarea::placeholder {
        color: rgba(248, 250, 252, 0.56);
    }

    .site-chat__honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    .site-chat__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .site-chat__status {
        font-size: 12px;
        color: rgba(248, 250, 252, 0.82);
    }

    .site-chat__submit {
        border: 0;
        border-radius: 999px;
        background: linear-gradient(135deg, #e11d48, #be123c);
        color: #fff;
        font-weight: 700;
        padding: 11px 18px;
    }

    @media only screen and (max-width: 767px) {
        .site-chat {
            right: 12px;
            bottom: 12px;
            left: 12px;
            align-items: stretch;
        }

        .site-chat__toggle {
            align-self: flex-end;
        }

        .site-chat__panel {
            width: 100%;
        }
    }

/* Extracted from home.blade.php */
.hero-modern {
        position: relative;
        overflow: hidden;
        padding: 54px 0 88px;
        background:
            radial-gradient(circle at top left, rgba(225, 29, 72, 0.2), transparent 32%),
            linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(17, 24, 39, 0.92)),
            url('../img/blog/hero-bg1.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-modern::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(7, 17, 31, 0.82) 0%, rgba(7, 17, 31, 0.38) 48%, rgba(7, 17, 31, 0.72) 100%);
    }

    .hero-modern .container {
        position: relative;
        z-index: 1;
    }

    .hero-modern__grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
        gap: 40px;
        align-items: center;
        min-height: 72vh;
    }

    .hero-modern__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #fecdd3;
        background: rgba(225, 29, 72, 0.14);
        border: 1px solid rgba(225, 29, 72, 0.24);
    }

    .hero-modern__title {
        max-width: 11ch;
        margin: 0 0 18px;
        font-size: clamp(2.8rem, 5vw, 5rem);
        line-height: 0.95;
        letter-spacing: -0.04em;
        color: #ffffff;
    }

    .hero-modern__text {
        max-width: 620px;
        margin: 0 0 28px;
        font-size: 18px;
        line-height: 1.75;
        color: #cbd5e1;
    }

    .hero-modern__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 28px;
    }

    .hero-modern__trust {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-modern__trust-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: rgba(248, 250, 252, 0.82);
        font-size: 14px;
        font-weight: 600;
    }

    .hero-modern__panel {
        display: flex;
        justify-content: flex-end;
    }

    .live-now-card {
        width: 100%;
        max-width: 420px;
        padding: 28px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05));
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(12px);
    }

    .live-now-card__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 18px;
        padding: 8px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #fecdd3;
        background: rgba(225, 29, 72, 0.14);
    }

    .live-now-card__badge::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #fb7185;
        box-shadow: 0 0 0 6px rgba(251, 113, 133, 0.16);
    }

    .live-now-card h3 {
        margin: 0 0 10px;
        font-size: 28px;
        line-height: 1.1;
        color: #ffffff;
    }

    .live-now-card p {
        margin: 0 0 20px;
        color: #cbd5e1;
        font-size: 15px;
        line-height: 1.7;
    }

    .live-now-card__info {
        display: grid;
        gap: 10px;
        margin-bottom: 24px;
    }

    .live-now-card__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        font-size: 14px;
    }

    .live-now-card__label {
        color: rgba(248, 250, 252, 0.64);
    }

    .live-now-card__value {
        color: #ffffff;
        font-weight: 700;
        text-align: right;
    }

    .event .section-title::after {
        background: rgba(15, 23, 42, 0.1);
    }

    .section-title h1 {
        color: rgba(15, 23, 42, 0.06);
    }

    .live-player-section {
        padding-top: 0;
    }

    .live-player-shell {
        overflow: hidden;
        border-radius: 24px;
        background: #091220;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    }

    .live-player-frame {
        position: relative;
        background: #000;
        aspect-ratio: 16 / 9;
    }

    .live-player-frame iframe,
    .live-player-frame video {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    .live-player-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 24px 28px;
        background: linear-gradient(180deg, rgba(9, 18, 32, 0.96), rgba(9, 18, 32, 0.88));
    }

    .live-player-meta h3 {
        margin: 0 0 6px;
        color: #fff;
        font-size: 26px;
    }

    .live-player-meta p {
        margin: 0;
        color: rgba(255, 255, 255, 0.72);
    }

    @media only screen and (max-width: 991px) {
        .hero-modern {
            padding: 34px 0 56px;
        }

        .hero-modern__grid {
            grid-template-columns: 1fr;
            min-height: auto;
            gap: 28px;
        }

        .hero-modern__title,
        .hero-modern__text {
            max-width: none;
        }

        .hero-modern__panel {
            justify-content: stretch;
        }

        .live-now-card {
            max-width: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .hero-modern__title {
            font-size: clamp(2.2rem, 8vw, 3.2rem);
        }

        .hero-modern__text {
            font-size: 16px;
            line-height: 1.7;
        }

        .hero-modern__actions {
            flex-direction: column;
        }

        .hero-modern__actions .site-btn-ui,
        .hero-modern__actions .primary-btn {
            width: 100%;
        }

        .hero-modern__trust {
            flex-direction: column;
            gap: 10px;
        }

        .live-player-meta {
            flex-direction: column;
            align-items: stretch;
            padding: 20px;
        }
    }

/* Extracted from blogs.blade.php */
.blog__item__pic img,
        .recent__item__pic img {
            width: 100%;
            object-fit: cover;
        }

        .blog__item__pic img {
            height: 240px;
        }

        .recent__item__pic {
            width: 110px;
        }

        .recent__item__pic img {
            height: 80px;
        }

        .blog-empty {
            padding: 40px 30px;
            background: #fff;
            box-shadow: 0 3px 10px rgba(22, 41, 124, 0.1);
            text-align: center;
        }

        .pagination nav {
            display: flex;
            justify-content: center;
        }

        @media only screen and (max-width: 767px) {
            .blog__large__pic,
            .blog__item__pic img {
                height: auto;
            }

            .recent__item__pic {
                width: 90px;
                margin-right: 15px;
            }

            .recent__item__pic img {
                height: 70px;
            }
        }

/* Extracted from blog-show.blade.php */
.blog__details__comments {
            margin-bottom: 50px;
        }

        .blog__details__comments__item {
            padding: 20px;
            border: 1px solid #e1e1e1;
            margin-bottom: 20px;
            background: #fff;
        }

        .blog__details__comments__meta {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 10px;
            flex-wrap: wrap;
        }

        .blog__details__comments__meta h6,
        .blog__details__comments__meta span {
            margin: 0;
        }

        @media only screen and (max-width: 767px) {
            .blog__details__item__pic {
                height: auto;
                min-height: 240px;
            }
        }

/* Skills section — equal height columns */
.skills .row {
    display: flex;
    align-items: stretch;
}

.skills .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.skills__video {
    flex: 1;
}

/* ===========================
   New Footer Design
   =========================== */
.footer-new {
    position: relative;
    background: #cc0000;
    color: #fff;
    padding-bottom: 0;
}

.footer-new__wave {
    line-height: 0;
    overflow: hidden;
}

.footer-new__wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-new__main {
    padding: 50px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Contact */
.footer-new__contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 24px;
}

.footer-new__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-new__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.footer-new__label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3px;
}

.footer-new__value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

/* Brand center */
.footer-new__brand {
    padding: 10px 0;
}

.footer-new__logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.footer-new__logo span {
    font-size: 1.6em;
    color: #fff;
    line-height: 0.7;
    vertical-align: middle;
    font-weight: 900;
}

.footer-new__socials {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-new__socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-new__socials a:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
}

/* Newsletter */
.footer-new__newsletter h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-new__input-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.footer-new__input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
    background: transparent;
}

.footer-new__input-wrap button {
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-new__input-wrap button:hover {
    color: #cc0000;
}

/* Copyright */
.footer-new__copyright {
    padding: 18px 0;
    text-align: center;
}

.footer-new__copyright p,
.footer-new__copyright a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-new__copyright a:hover {
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .footer-new__contact {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-right: 0;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-new__main {
        padding: 36px 0 28px;
    }

    .footer-new__logo {
        font-size: 22px;
    }

    .footer-new__newsletter {
        margin-top: 24px;
    }
}

/* =========================================================
   Language Selector
   ========================================================= */

/* Hide Google's own top bar and widget UI */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-menu-frame,
.goog-te-menu2,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
    display: none !important;
    box-shadow: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

iframe.skiptranslate {
    display: none !important;
    height: 0 !important;
}

.lang-selector {
    position: relative;
    display: inline-block;
    font-family: "Inter", sans-serif;
}

.lang-selector__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f8fafc;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.lang-selector__trigger:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.lang-selector__globe {
    font-size: 15px;
    line-height: 1;
}

.lang-selector__current {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lang-selector__arrow {
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.22s ease;
}

.lang-selector__trigger[aria-expanded="true"] .lang-selector__arrow {
    transform: rotate(180deg);
}

.lang-selector__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 170px;
    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 6px;
    list-style: none;
    margin: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 9999;
}

.lang-selector__dropdown.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-selector__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
    position: relative;
}

.lang-selector__item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f8fafc;
}

.lang-selector__item--active {
    background: rgba(225, 29, 72, 0.15);
    color: #fecdd3;
    font-weight: 700;
}

.lang-selector__item--active::after {
    content: "\f00c";
    font-family: "FontAwesome", sans-serif;
    position: absolute;
    right: 14px;
    font-size: 11px;
    color: #e11d48;
}

.lang-selector__flag {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.lang-selector__name {
    flex: 1;
}

/* Mobile: keep the trigger compact */
@media only screen and (max-width: 768px) {
    .lang-selector {
        display: none;
    }
}

/* Nav-item wrapper — no underline hover like regular nav links */
.lang-selector-nav-item {
    display: flex;
    align-items: center;
    margin-right: 0;
}


/* Ensure the dropdown opens downward even inside the nav */
.lang-selector-nav-item .lang-selector__dropdown {
    top: calc(100% + 14px);
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-8px) scale(0.97);
}

.lang-selector-nav-item .lang-selector__dropdown.is-open {
    transform: translateX(-50%) translateY(0) scale(1);
}

/* =========================================================
   Blog & Comments Hover Colors Fix
   ========================================================= */

/* Override the global a:hover white rule inside blog content areas */
.blog__item__text a:hover,
.blog__item__text a:focus,
.blog__large__text a:hover,
.blog__large__text a:focus,
.blog__details__content a:hover,
.blog__details__content a:focus {
    color: #e11d48 !important;
    text-decoration: none;
}

/* Prevent titles from going white */
.blog__item__text h5 a,
.blog__large__text h4 a,
.blog__details__item__text h3 {
    color: #111111 !important;
    transition: color 0.2s ease;
}

.blog__item__text h5 a:hover,
.blog__large__text h4 a:hover {
    color: #e11d48 !important;
}

/* "X Comments" link in listing sidebar widget */
.blog-comment-link {
    color: #888888 !important;
    font-size: 13px;
    transition: color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-comment-link:hover {
    color: #e11d48 !important;
}

/* Blog card bottom action row */
.blog__item__links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    gap: 8px;
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    background: #e11d48;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
}

.blog-read-more-btn:hover {
    background: #be123c !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}


/* ==========================================================================
   Anti-Download Protection
   Prevents drag-and-drop saving and removes any visual hint of downloadability
   ========================================================================== */

/* Disable drag-and-drop on all media and image elements */
img,
audio,
video,
source {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}


/* Disable text selection on media controls to avoid accidental save flows */
audio::-webkit-media-controls-panel,
video::-webkit-media-controls-panel {
    -webkit-user-select: none;
    user-select: none;
}

/* Disable pointer events on images to prevent drag-save */
img {
    pointer-events: none;
}

/* Re-enable pointer events only for images that are explicitly links */
a img {
    pointer-events: auto;
}

/* ==========================================================================
   RESPONSIVE OVERHAUL – E2T Business Radio
   Breakpoints: 1199 | 991 | 767 | 575 | 480 | 360
   ========================================================================== */

/* ─── Helpers ────────────────────────────────────────────────────────────── */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ─── 1 · Large Tablet (≤ 1199px) ──────────────────────────────────────── */
@media only screen and (max-width: 1199px) {

    /* Header */
    .site-header__inner {
        gap: 16px;
        padding: 10px 16px;
    }

    .header__menu ul {
        gap: 12px;
    }

    .header__menu ul li a {
        font-size: 13px;
    }

    /* Hero */
    .hero-modern__grid {
        gap: 32px;
    }

    /* Global section padding */
    .spad {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* ─── 2 · Tablet (≤ 991px) ─────────────────────────────────────────────── */
@media only screen and (max-width: 991px) {

    /* ── Global Typography ── */
    h1 { font-size: 52px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }

    .section-title h1 {
        font-size: 60px;
        top: -30px;
    }

    .spad {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* ── Header ── */
    .site-header__inner {
        min-height: 70px;
        padding: 10px 14px;
        gap: 12px;
    }

    .site-brand img {
        width: 42px;
        height: 42px;
    }

    /* ── Hero ── */
    .hero-modern {
        padding: 32px 0 50px;
    }

    .hero-modern__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
    }

    .hero-modern__title {
        font-size: clamp(2.4rem, 5vw, 3.6rem);
    }

    .hero-modern__text {
        font-size: 17px;
    }

    .hero-modern__panel {
        justify-content: stretch;
    }

    .live-now-card {
        max-width: none;
        padding: 22px;
    }

    /* ── Services (Advertising Spots) ──
       On tablet, each col-lg-6 stacks but keeps content visible */
    .services__left {
        height: 300px;
        width: 100%;
    }

    .service__item {
        height: auto !important;
        min-height: 160px;
    }

    /* ── Countdown (neutralise the brittle padding hack from style.css) ── */
    .countdown {
        padding-bottom: 60px !important;
    }

    .footer {
        margin-top: 0 !important;
        background-position: center center !important;
    }

    /* ── Footer ── */
    .footer {
        min-height: auto !important;
        height: auto !important;
    }

    /* Remove Bootstrap offset on tablet so columns don't produce blank gaps */
    .col-lg-3.offset-lg-1,
    .col-lg-4.offset-lg-1 {
        margin-left: 0 !important;
    }

    /* Footer columns full-width on tablet */
    .footer .col-lg-3,
    .footer .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }

    /* ── Live Player meta ── */
    .live-player-meta {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 14px;
    }
}

/* ─── 3 · Mobile Large (≤ 767px) ────────────────────────────────────────── */
@media only screen and (max-width: 767px) {

    /* ── Global Typography ── */
    h1 { font-size: 40px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }

    .section-title h1 {
        font-size: 48px;
        top: -24px;
        line-height: 0.9;
    }

    .spad {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /* ── Header ── */
    .site-header {
        padding: 8px 0;
    }

    .site-header__inner {
        padding: 8px 12px;
        min-height: 64px;
        gap: 8px;
    }

    .site-brand {
        gap: 8px;
    }

    .site-brand img {
        width: 38px;
        height: 38px;
    }

    .site-brand__title {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 110px;
    }

    .site-brand__subtitle {
        display: none;
    }

    /* Live button stays visible but compact */
    .site-header__actions {
        display: flex !important;
        align-items: center;
        gap: 6px;
        /* Leave room for hamburger icon */
        margin-right: 44px;
        flex-shrink: 0;
    }

    .site-header__actions .site-btn-ui--primary {
        display: inline-flex !important;
        min-height: 32px;
        padding: 4px 10px;
        font-size: 11px;
        gap: 5px;
        white-space: nowrap;
    }

    .site-header__actions .site-btn-ui--ghost {
        display: none !important;
    }

    /* Hamburger button */
    .slicknav_btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        padding: 8px;
        float: none;
        z-index: 10;
    }

    /* Mobile nav panel */
    .slicknav_nav {
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        width: auto;
        background: rgba(10, 19, 33, 0.97) !important;
        border-radius: 18px !important;
        padding: 10px 8px !important;
    }

    /* ── Hero ── */
    .hero-modern {
        padding: 28px 0 44px;
    }

    .hero-modern__title {
        font-size: clamp(1.9rem, 7.5vw, 2.8rem);
        line-height: 1.05;
        max-width: none;
    }

    .hero-modern__text {
        font-size: 15px;
        line-height: 1.7;
        max-width: none;
    }

    .hero-modern__actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-modern__actions .site-btn-ui,
    .hero-modern__actions .primary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-modern__trust {
        flex-direction: column;
        gap: 10px;
    }

    .live-now-card {
        padding: 18px;
        border-radius: 16px;
    }

    .live-now-card h3 {
        font-size: 22px;
    }

    .live-now-card p {
        font-size: 14px;
    }

    /* ── About section ── */
    .about__pic img {
        border-radius: 16px;
        margin-bottom: 24px;
    }

    .about__text {
        padding-left: 0;
    }

    /* ── Services (Advertising Spots) ── */
    .services .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 !important;
    }

    .services__left {
        height: 250px;
    }

    .services__list .col-lg-6,
    .services__list .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .service__item {
        height: auto !important;
        min-height: 130px;
        padding: 24px 18px !important;
    }

    .service__item h4 {
        font-size: 16px;
    }

    .service__item p {
        font-size: 13px;
    }

    /* ── Track / Podcast section ── */
    .track__content {
        margin-bottom: 24px;
    }

    .track__pic img {
        border-radius: 12px;
    }

    /* ── Countdown – neutralise style.css hack completely ── */
    .countdown {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .countdown__text h1 {
        font-size: 40px !important;
    }

    .countdown__text h4 {
        font-size: 18px;
    }

    .footer {
        margin-top: 0 !important;
        background-position: center center !important;
        min-height: auto !important;
        height: auto !important;
    }

    /* ── Footer columns – full-width on mobile ── */
    .footer .col-lg-3,
    .footer .col-lg-4,
    .footer .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-bottom: 28px;
    }

    .footer .offset-lg-1 {
        margin-left: 0 !important;
    }

    .footer__social h2 {
        font-size: 22px;
    }

    .footer__social__links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Newsletter form */
    .footer__newslatter form {
        display: flex;
        align-items: center;
    }

    .footer__newslatter form input {
        flex: 1;
        min-width: 0;
        font-size: 13px;
    }

    /* ── Breadcrumb ── */
    .breadcrumb__links {
        width: 100%;
        border-radius: 16px;
        gap: 8px;
        padding: 10px 16px;
        font-size: 13px;
    }

    /* ── Blog ── */
    .blog__item__pic img {
        height: 200px;
    }

    .recent__item__pic {
        width: 80px;
        flex-shrink: 0;
    }

    .recent__item__pic img {
        height: 65px;
    }

    /* ── Contact form – stack half-width fields ── */
    .contact__form form .input__list--half input,
    .contact__form form .input__list--half .select__wrapper {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }

    .contact__form form .input__list--half .select__wrapper {
        margin-right: 0 !important;
    }

    /* ── Events slider ── */
    .event__item__text h4 {
        font-size: 18px;
    }

    /* ── YouTube section ── */
    .youtube__item {
        margin-bottom: 20px;
    }

    /* ── Live player ── */
    .live-player-shell {
        border-radius: 16px;
    }

    .live-player-meta {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }

    .live-player-meta h3 {
        font-size: 20px;
    }

    /* ── Chat widget ── */
    .site-chat {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .site-chat__toggle {
        align-self: flex-end;
        padding: 12px 16px;
        font-size: 13px;
    }

    .site-chat__panel {
        width: 100%;
    }
}

/* ─── 4 · Mobile Medium (≤ 575px) ──────────────────────────────────────── */
@media only screen and (max-width: 575px) {

    /* ── Global Typography ── */
    h1 { font-size: 34px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }

    .section-title h1 {
        font-size: 40px;
        top: -20px;
    }

    .spad {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    /* ── Hero ── */
    .hero-modern {
        padding: 22px 0 36px;
    }

    .hero-modern__title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .hero-modern__eyebrow {
        font-size: 11px;
        padding: 6px 12px;
    }

    .live-now-card {
        padding: 16px;
        border-radius: 14px;
    }

    .live-now-card h3 {
        font-size: 20px;
    }

    .live-now-card__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .live-now-card__value {
        text-align: left;
    }

    /* ── Services ── */
    .services__list .col-lg-6,
    .services__list .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* ── Countdown ── */
    .countdown__timer .countdown__item span {
        font-size: 36px;
    }

    .countdown__timer .countdown__item p {
        font-size: 13px;
    }

    /* ── Footer ── */
    .footer-new__main {
        padding: 30px 0 24px;
    }

    .footer-new__contact {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-new__newsletter {
        margin-top: 20px;
    }

    /* ── Blog sidebar ── */
    .blog__sidebar__item {
        padding: 20px;
    }

    /* ── Contact / Advertise forms ── */
    .adv-stat-card {
        text-align: center;
        padding: 20px 16px;
    }

    .adv-stat-card__number {
        font-size: 2rem;
    }

    /* ── Breadcrumb ── */
    .breadcrumb-option {
        padding-top: 28px;
        padding-bottom: 0;
    }
}

/* ─── 5 · Mobile Small (≤ 480px) ────────────────────────────────────────── */
@media only screen and (max-width: 480px) {

    /* ── Header ── */
    .site-brand__title {
        font-size: 12px;
        max-width: 90px;
    }

    .site-header__actions {
        margin-right: 40px;
    }

    .site-header__actions .site-btn-ui--primary {
        padding: 4px 8px;
        font-size: 10px;
        min-height: 30px;
    }

    /* ── Hero ── */
    .hero-modern__title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .hero-modern__text {
        font-size: 14px;
    }

    /* ── Podcast player ── */
    .player_bars {
        width: 140px;
        margin-right: 8px;
    }

    .player_controls_box {
        margin-right: 8px;
    }

    .jp-volume-controls {
        width: 60px;
        padding-left: 18px;
    }

    .jp-volume-bar {
        width: 38px;
    }

    .single_player_container h4 {
        font-size: 15px;
    }

    /* ── Countdown ── */
    .countdown__text h1 {
        font-size: 32px !important;
    }

    .countdown__text h4 {
        font-size: 16px;
    }

    /* ── Footer ── */
    .footer__address ul li h6 {
        font-size: 13px;
        word-break: break-word;
    }

    /* ── Sections general ── */
    h1 { font-size: 30px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }

    .section-title h1 {
        font-size: 34px;
        top: -16px;
    }
}

/* ─── 6 · Very Small Screens (≤ 360px) ─────────────────────────────────── */
@media only screen and (max-width: 360px) {

    /* ── Header ── */
    .site-brand img {
        width: 32px;
        height: 32px;
    }

    .site-brand__title {
        font-size: 11px;
        max-width: 75px;
    }

    .site-header__actions .site-btn-ui--primary {
        padding: 3px 7px;
        font-size: 10px;
        gap: 4px;
    }

    /* Hide Live text on header button, show only icon */
    .site-header__actions .site-btn-ui--primary .fa-play-circle {
        margin: 0;
    }

    /* ── Hero ── */
    .hero-modern__title {
        font-size: 1.5rem;
    }

    .live-now-card {
        padding: 14px;
    }

    .live-now-card h3 {
        font-size: 18px;
    }

    /* ── Services ── */
    .service__item {
        padding: 16px !important;
    }

    /* ── Sections ── */
    .spad {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    h1 { font-size: 26px; }
    h2 { font-size: 20px; }

    .section-title h1 {
        font-size: 28px;
        top: -12px;
    }

    /* ── Blog ── */
    .blog__item__pic img {
        height: 160px;
    }

    .recent__item__pic {
        width: 68px;
    }

    .recent__item__pic img {
        height: 56px;
    }

    /* ── Chat widget ── */
    .site-chat__toggle {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* ─── Utility: prevent horizontal scroll on all screen sizes ─────────────── */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure all images inside fluid containers are responsive */
.services .services__left img,
.about__pic img,
.track__pic img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── END RESPONSIVE OVERHAUL ───────────────────────────────────────────── */

/* ==========================================================================
   MOBILE SIDEBAR OFF-CANVAS DRAWER & ACCORDION
   ========================================================================== */

/* Hide legacy SlickNav completely */
.slicknav_menu,
.slicknav_btn,
.slicknav_nav,
#mobile-menu-wrap {
    display: none !important;
}

/* Hamburger Toggler Button in Header */
.mobile-nav-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer !important;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    z-index: 99999 !important;
    pointer-events: auto !important;
}

.mobile-nav-toggler * {
    pointer-events: none !important;
}

.mobile-nav-toggler:hover,
.mobile-nav-toggler:focus,
.mobile-nav-toggler:active {
    background: rgba(225, 29, 72, 0.25) !important;
    color: #ffffff !important;
    border-color: rgba(225, 29, 72, 0.5) !important;
    outline: none;
}

@media only screen and (max-width: 991px) {
    .mobile-nav-toggler {
        display: inline-flex !important;
    }
}


/* Off-Canvas Backdrop Overlay */
.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 18, 0.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sidebar-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Off-Canvas Sidebar Drawer */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 88vw;
    background: #07111f;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    color: #f8fafc;
    font-family: "Inter", sans-serif;
}

.mobile-sidebar.is-open {
    transform: translateX(0);
}

.mobile-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.mobile-sidebar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-sidebar__brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.mobile-sidebar__brand-title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
}

.mobile-sidebar__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-sidebar__close:hover {
    background: rgba(225, 29, 72, 0.2);
    color: #e11d48;
    border-color: rgba(225, 29, 72, 0.4);
}

.mobile-sidebar__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Navigation Links */
.mobile-sidebar__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-sidebar__nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-sidebar__nav li a i {
    width: 18px;
    text-align: center;
    font-size: 15px;
}

.mobile-sidebar__nav li a:hover,
.mobile-sidebar__nav li.is-active > a {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.mobile-sidebar__nav li.is-active > a {
    background: rgba(225, 29, 72, 0.16);
    color: #fecdd3;
    font-weight: 700;
}

/* Accordion Dropdown "Page" */
.mobile-sidebar__dropdown {
    display: flex;
    flex-direction: column;
}

.mobile-sidebar__dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-sidebar__dropdown-btn span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-sidebar__dropdown-btn span i {
    width: 18px;
    text-align: center;
    font-size: 15px;
}

.mobile-sidebar__dropdown-btn .mobile-sidebar__arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.mobile-sidebar__dropdown-btn.is-open .mobile-sidebar__arrow {
    transform: rotate(180deg);
}

.mobile-sidebar__dropdown-btn:hover,
.mobile-sidebar__dropdown.is-active > .mobile-sidebar__dropdown-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.mobile-sidebar__sublist {
    list-style: none;
    padding: 4px 0 4px 18px !important;
    margin: 4px 0 0 12px !important;
    display: none;
    flex-direction: column;
    gap: 2px;
    border-left: 2px solid rgba(225, 29, 72, 0.4);
}

.mobile-sidebar__sublist.is-open {
    display: flex !important;
}

.mobile-sidebar__sublist li a {
    padding: 10px 14px;
    font-size: 13px;
}

/* Language selector grid inside mobile sidebar */
.mobile-sidebar__lang {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sidebar__lang-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(248, 250, 252, 0.5);
    margin-bottom: 10px;
}

.mobile-sidebar__lang-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mobile-sidebar__lang-btn {
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.mobile-sidebar__lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.mobile-sidebar__lang-btn.is-active {
    background: rgba(225, 29, 72, 0.2);
    border-color: rgba(225, 29, 72, 0.5);
    color: #fecdd3;
    font-weight: 700;
}

.mobile-sidebar__cta {
    margin-top: auto;
    padding-top: 12px;
}

/* ==========================================================================
   PWA INSTALL BANNER & MODAL STYLES
   ========================================================================== */

#pwa-install-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
    width: calc(100% - 32px);
    max-width: 460px;
}

#pwa-install-banner.pwa-banner--visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.pwa-banner__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.pwa-banner__icon {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

.pwa-banner__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pwa-banner__text strong {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.pwa-banner__text span {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pwa-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pwa-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    line-height: 1;
}

.pwa-banner__btn--install {
    background: #e11d48;
    color: #ffffff;
}

.pwa-banner__btn--install:hover {
    background: #be123c;
}

.pwa-banner__btn--dismiss {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    padding: 8px 10px;
}

.pwa-banner__btn--dismiss:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* iOS PWA Instructions Modal */
#pwa-ios-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#pwa-ios-modal.pwa-ios-modal--visible {
    opacity: 1;
    visibility: visible;
}

.pwa-ios-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.pwa-ios-modal__box {
    position: relative;
    z-index: 1;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px 24px 0 0;
    padding: 24px 20px 32px;
    width: 100%;
    max-width: 480px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
}

.pwa-ios-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    cursor: pointer;
}

.pwa-ios-modal__icon {
    width: 56px !important;
    height: 56px !important;
    max-width: 56px !important;
    max-height: 56px !important;
    object-fit: contain;
    margin-bottom: 12px;
}

.pwa-ios-modal__box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.pwa-ios-modal__box p {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.pwa-ios-modal__steps {
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 14px 16px 14px 36px;
    font-size: 13px;
    color: #e2e8f0;
    line-height: 1.6;
}

@media only screen and (max-width: 575px) {
    #pwa-install-banner {
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .pwa-banner__text span {
        display: none;
    }
}



/* ── Footer Contact Info - Responsive Fix ──────────────────────────────────── */
@media (max-width: 991px) {

    /* Ensure the footer background image covers fully on mobile */
    .footer.set-bg {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    /* Stack icon + text vertically, keep text visible */
    .footer__address ul li {
        display: flex !important;
        align-items: flex-start !important;
        padding-left: 0 !important;
        gap: 14px !important;
        margin-bottom: 24px !important;
    }

    .footer__address ul li i {
        position: static !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer__address ul li p {
        color: #ffffff !important;
        opacity: 1 !important;
        margin-bottom: 4px !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
    }

    .footer__address ul li h6 {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
        word-break: break-word;
    }
}

/* ── Scroll Freeze Prevention ───────────────────────────────────────────────── */
html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    min-height: 100vh;
    touch-action: manipulation;
}

body.mobile-nav-open {
    overflow: hidden !important;
}

/* ── Chat Widget Overlay & Responsive Modal ─────────────────────────────────── */
.site-chat__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99990;
    transition: opacity 0.25s ease;
}

.site-chat {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99995;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.site-chat__panel {
    position: fixed;
    bottom: 80px;
    right: 22px;
    width: min(420px, calc(100vw - 24px));
    max-height: min(620px, calc(100vh - 100px));
    background: #0f172a !important;
    color: #f8fafc !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75) !important;
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
}

.site-chat__panel-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
    background: #1e293b !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.site-chat__panel-title strong {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.site-chat__panel-title p {
    margin: 2px 0 0;
    color: rgba(248, 250, 252, 0.7);
    font-size: 12px;
}

.site-chat__close {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #e11d48 !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s, background 0.2s !important;
}

.site-chat__close:hover {
    background: #be123c !important;
    transform: scale(1.08) !important;
}

.site-chat__messages {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    padding: 16px 20px !important;
    min-height: 120px !important;
    max-height: 280px !important;
}

.site-chat__form {
    flex-shrink: 0 !important;
    padding: 16px 20px !important;
    background: #0f172a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 767px) {
    .site-chat {
        right: 12px !important;
        bottom: 12px !important;
        left: auto !important;
    }

    .site-chat__panel {
        position: fixed !important;
        bottom: 12px !important;
        right: 12px !important;
        left: 12px !important;
        top: auto !important;
        width: calc(100vw - 24px) !important;
        max-height: calc(100vh - 30px) !important;
        margin: 0 auto !important;
    }

    .site-chat__messages {
        max-height: calc(100vh - 280px) !important;
    }
}




