:root {
    --bm-neon-cyan: #22d3ee;
    --bm-neon-blue: #38bdf8;
    --bm-neon-orange: #fb923c;
    --bm-bg-0: #071218;
    --bm-bg-1: #0b1d29;
    --bm-glass: rgba(255, 255, 255, 0.08);
    --bm-glass-strong: rgba(255, 255, 255, 0.14);
    --bm-border: rgba(255, 255, 255, 0.2);
    --bm-text: #ecfeff;
    --bm-muted: #bae6fd;
}

.bm-ai-home {
    --bm-neon-cyan: #f8aa7a;
    --bm-neon-blue: #fa5840;
    --bm-neon-orange: #f8aa7a;
    --bm-glass: rgba(255, 255, 255, 0.92);
    --bm-glass-strong: rgba(255, 255, 255, 0.98);
    --bm-border: rgba(25, 25, 25, 0.12);
    --bm-text: #191919;
    --bm-muted: #707070;
    position: relative;
    padding: 52px 0;
    margin: 0 0 22px;
    background: #fff;
    overflow: hidden;
    font-family: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bm-ai-aurora {
    position: absolute;
    inset: -20% -10%;
    background:
        radial-gradient(circle at 15% 40%, rgba(248, 170, 122, 0.14), transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(250, 88, 64, 0.12), transparent 48%),
        radial-gradient(circle at 50% 85%, rgba(248, 170, 122, 0.1), transparent 56%);
    filter: blur(34px);
    animation: bmAuroraShift 16s linear infinite alternate;
    pointer-events: none;
}

@keyframes bmAuroraShift {
    0% {
        transform: translate3d(-2%, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(2%, -2%, 0) scale(1.03);
    }
    100% {
        transform: translate3d(-1%, 2%, 0) scale(1.02);
    }
}

.bm-ai-shell {
    position: relative;
    z-index: 2;
    border: 1px solid var(--bm-border);
    background: linear-gradient(145deg, var(--bm-glass-strong), var(--bm-glass));
    border-radius: 24px;
    backdrop-filter: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.bm-ai-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.bm-ai-kicker {
    margin: 0;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bm-neon-cyan);
    font-size: 11px;
    font-weight: 700;
}

.bm-ai-header h2 {
    margin: 2px 0 0;
    color: var(--bm-text);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.bm-ai-controls {
    display: grid;
    grid-template-columns: minmax(220px, 1.7fr) minmax(160px, 1fr) auto;
    gap: 10px;
    width: min(100%, 720px);
}

.bm-ai-input,
.bm-ai-select,
.bm-ai-button {
    border-radius: 12px;
    border: 1px solid var(--bm-border);
    background: #fff;
    color: var(--bm-text);
    min-height: 44px;
    padding: 10px 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bm-ai-input::placeholder {
    color: var(--bm-muted);
}

.bm-ai-input:focus,
.bm-ai-select:focus {
    border-color: var(--bm-neon-cyan);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.18);
}

.bm-ai-button {
    cursor: pointer;
    font-weight: 700;
    background: linear-gradient(120deg, var(--bm-neon-blue), var(--bm-neon-orange));
    color: #fff;
}

.bm-ai-feedback {
    color: var(--bm-muted);
    font-size: 13px;
    margin-bottom: 12px;
    min-height: 18px;
}

.bm-ai-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.bm-ai-panel {
    border: 1px solid var(--bm-border);
    border-radius: 18px;
    background: #fff;
    padding: 14px;
    min-height: 300px;
}

.bm-ai-panel.is-loading .bm-ai-cards,
.bm-ai-panel.is-loading .bm-ai-artists {
    opacity: 0.62;
}

.bm-ai-panel-head h3 {
    margin: 0 0 12px;
    color: var(--bm-text);
    font-size: 18px;
    font-weight: 700;
}

.bm-ai-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.bm-ai-card {
    border-radius: 14px;
    border: 1px solid var(--bm-border);
    padding: 10px;
    background: linear-gradient(180deg, #fff, #fafafa);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bm-ai-card:hover {
    transform: translateY(-3px);
    border-color: rgba(248, 170, 122, 0.8);
    box-shadow: 0 10px 24px rgba(248, 170, 122, 0.2);
}

.bm-ai-card.is-active {
    border-color: rgba(250, 88, 64, 0.75);
    box-shadow: 0 12px 28px rgba(250, 88, 64, 0.2);
}

.bm-ai-skeleton {
    border-radius: 12px;
    height: 128px;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.04) 25%,
        rgba(0, 0, 0, 0.08) 50%,
        rgba(0, 0, 0, 0.04) 75%
    );
    background-size: 300% 100%;
    animation: bmSkeleton 1.2s ease-in-out infinite;
}

.bm-ai-skeleton-line {
    height: 42px;
}

@keyframes bmSkeleton {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.bm-ai-cover {
    width: 100%;
    height: 128px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(130deg, rgba(248, 170, 122, 0.2), rgba(250, 88, 64, 0.14));
    margin-bottom: 8px;
}

.bm-ai-title {
    margin: 0;
    color: var(--bm-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bm-ai-subtitle {
    margin: 2px 0 8px;
    color: var(--bm-muted);
    font-size: 12px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bm-ai-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.bm-ai-play {
    border: 1px solid rgba(248, 170, 122, 0.55);
    background: rgba(248, 170, 122, 0.14);
    color: #a5532f;
    border-radius: 999px;
    font-size: 12px;
    padding: 6px 10px;
    cursor: pointer;
}

.bm-ai-stat {
    font-size: 11px;
    color: #b26d45;
}

.bm-ai-artists {
    display: grid;
    gap: 10px;
}

.bm-ai-artist-row {
    border-radius: 12px;
    border: 1px solid var(--bm-border);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.bm-ai-artist-name {
    color: var(--bm-text);
    font-weight: 700;
}

.bm-ai-artist-meta {
    color: var(--bm-muted);
    font-size: 12px;
}

.bm-ai-empty {
    border: 1px dashed rgba(25, 25, 25, 0.2);
    border-radius: 10px;
    padding: 14px;
    font-size: 13px;
    color: var(--bm-muted);
    background: #fafafa;
}

.bm-ai-player {
    position: fixed;
    right: 22px;
    bottom: 22px;
    left: auto;
    top: auto;
    width: min(430px, calc(100vw - 20px));
    z-index: 2200;
    color: #e0f2fe;
    font-family: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
    pointer-events: none;
}

.bm-ai-player * {
    box-sizing: border-box;
}

.bm-ai-player-shell,
.bm-ai-player-launcher {
    pointer-events: auto;
}

.bm-ai-player-shell {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background:
        radial-gradient(circle at 14% 18%, rgba(34, 211, 238, 0.14), transparent 38%),
        radial-gradient(circle at 90% 84%, rgba(251, 146, 60, 0.16), transparent 42%),
        linear-gradient(140deg, rgba(8, 20, 30, 0.9), rgba(8, 20, 30, 0.72));
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transform-origin: right bottom;
    transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.bm-ai-player.is-playing .bm-ai-player-shell {
    border-color: rgba(251, 146, 60, 0.68);
    box-shadow: 0 24px 52px rgba(251, 146, 60, 0.22), 0 22px 44px rgba(0, 0, 0, 0.48);
}

.bm-ai-player-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px 6px;
    cursor: grab;
    user-select: none;
    touch-action: none;
}

.bm-ai-player.is-dragging .bm-ai-player-topbar {
    cursor: grabbing;
}

.bm-ai-player-grip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.bm-ai-player-grip span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(224, 242, 254, 0.8);
}

.bm-ai-player-window-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bm-ai-player-window-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: #e0f2fe;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.bm-ai-player-window-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(34, 211, 238, 0.7);
    background: rgba(34, 211, 238, 0.2);
}

.bm-ai-player-body {
    display: grid;
    grid-template-columns: 76px 1fr 94px;
    align-items: center;
    gap: 14px;
    padding: 0 14px 14px;
}

.bm-ai-player-cover {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(130deg, rgba(56, 189, 248, 0.25), rgba(251, 146, 60, 0.2));
}

.bm-ai-player-main {
    min-width: 0;
    display: grid;
    gap: 8px;
}

.bm-ai-player-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bm-ai-player-text strong,
.bm-ai-player-text span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bm-ai-player-text strong {
    font-size: 20px;
    line-height: 1.15;
}

.bm-ai-player-text span {
    color: #bae6fd;
    font-size: 14px;
}

.bm-ai-player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bm-ai-player-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 6px;
    color: #bae6fd;
    font-size: 12px;
}

.bm-ai-control-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #f0fdff;
    font-size: 15px;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.bm-ai-control-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(34, 211, 238, 0.65);
    background: rgba(34, 211, 238, 0.22);
}

.bm-ai-control-main {
    width: 48px;
    height: 48px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.bm-ai-control-main.is-playing {
    background: rgba(251, 146, 60, 0.34);
    border-color: rgba(251, 146, 60, 0.74);
    box-shadow: 0 0 0 7px rgba(251, 146, 60, 0.15);
}

.bm-ai-control-like {
    border-color: rgba(251, 146, 60, 0.55);
}

.bm-ai-control-like.is-active {
    background: rgba(251, 146, 60, 0.28);
    border-color: rgba(251, 146, 60, 0.72);
}

#bmAiProgress,
#bmAiVolume {
    width: 100%;
    accent-color: var(--bm-neon-cyan);
}

#bmAiProgress {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

#bmAiProgress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #fb923c;
    border: 2px solid #fff;
    cursor: pointer;
}

.bm-ai-player-side {
    width: 94px;
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: #bae6fd;
    justify-items: start;
}

.bm-ai-player-launcher {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(145deg, rgba(8, 20, 30, 0.92), rgba(8, 20, 30, 0.78));
    color: #ecfeff;
    padding: 11px 14px;
    display: none;
    align-items: center;
    gap: 10px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
    cursor: pointer;
}

.bm-ai-player-launcher-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22d3ee;
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.48);
}

.bm-ai-player.is-playing .bm-ai-player-launcher-dot {
    animation: bmPlayerPulse 1.4s ease infinite;
}

.bm-ai-player.is-collapsed .bm-ai-player-launcher {
    display: inline-flex;
}

.bm-ai-player.is-collapsed .bm-ai-player-shell {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    pointer-events: none;
}

.bm-ai-player.is-dragging .bm-ai-player-shell {
    transition: none;
}

@keyframes bmPlayerPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.48);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
    }
}

/* Home Legacy Visual Upgrade (sem alterar estrutura) */
.m24_main_wrapper {
    background:
        radial-gradient(circle at 8% 6%, rgba(34, 211, 238, 0.08), transparent 35%),
        radial-gradient(circle at 92% 14%, rgba(251, 146, 60, 0.08), transparent 32%),
        linear-gradient(180deg, #041017 0%, #071520 32%, #0a1d2a 100%);
}

.modern-hero-slider {
    margin-bottom: 24px;
    border-radius: 0 0 26px 26px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38);
}

.modern-hero-slider .slide-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(4, 16, 23, 0.48), transparent 42%);
}

.modern-hero-slider .slide-info {
    background: linear-gradient(140deg, rgba(8, 24, 34, 0.46), rgba(8, 24, 34, 0.18));
    border: 1px solid rgba(186, 230, 253, 0.24);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.modern-hero-slider .slide-actions .play-btn,
.modern-hero-slider .slide-actions .info-btn {
    letter-spacing: 0.01em;
    border-color: rgba(255, 255, 255, 0.28);
}

.main_slider_wrapper.slider-area {
    margin-top: 12px;
    margin-bottom: 26px;
}

.mySwiper .swiper-slide {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(186, 230, 253, 0.18);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.mySwiper .slide-bg-img {
    transition: transform 0.45s ease;
}

.mySwiper .swiper-slide:hover .slide-bg-img {
    transform: scale(1.05);
}

.mySwiper .swiper-slide .slide-overlay {
    background: linear-gradient(180deg, rgba(2, 8, 11, 0.15), rgba(2, 8, 11, 0.72));
}

.treanding_songs_wrapper,
.add_banner_wrapper,
.partners_Section {
    position: relative;
}

.treanding_songs_wrapper {
    margin-bottom: 14px;
}

.treanding_songs_wrapper .container,
.add_banner_wrapper .container,
.partners_Section .container {
    position: relative;
    z-index: 1;
}

.m24_heading_wrapper h1 {
    color: #f0fdff;
    font-weight: 800;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 14px;
    text-shadow: 0 6px 18px rgba(2, 8, 11, 0.38);
}

.m24_heading_wrapper h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--bm-neon-cyan), var(--bm-neon-orange));
}

.m24_heading_wrapper h1::after {
    content: "";
    display: block;
    width: 96px;
    height: 2px;
    margin-top: 8px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.9), rgba(251, 146, 60, 0.4));
}

.treanding_slider_main_box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(186, 230, 253, 0.14);
    background: linear-gradient(160deg, rgba(8, 24, 34, 0.74), rgba(8, 24, 34, 0.4));
    box-shadow: 0 12px 30px rgba(2, 8, 11, 0.26);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.treanding_slider_main_box:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.42);
    box-shadow: 0 18px 34px rgba(34, 211, 238, 0.16);
}

.treanding_slider_main_box > img {
    transition: transform 0.45s ease, filter 0.45s ease;
}

.treanding_slider_main_box:hover > img {
    transform: scale(1.05);
    filter: saturate(1.05) contrast(1.02);
}

.release_box_main_content .release_content_artist,
.various_song_playlist {
    background: linear-gradient(180deg, rgba(8, 24, 34, 0.94), rgba(8, 24, 34, 0.72));
    border-top: 1px solid rgba(186, 230, 253, 0.14);
}

.release_content_artist p a,
.various_song_playlist p a,
.release_content_artist .various_artist_text a {
    color: #e0f2fe;
}

.release_content_artist p a:hover,
.various_song_playlist p a:hover,
.release_content_artist .various_artist_text a:hover {
    color: #fff7ed;
}

.m24_treanding_box_overlay .m24_tranding_box_overlay {
    background: linear-gradient(180deg, rgba(2, 8, 11, 0.12), rgba(2, 8, 11, 0.62));
}

.tranding_play_icon a {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tranding_play_icon a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.16);
}

.bm-legacy-track {
    position: relative;
}

.treanding_slider_main_box.bm-legacy-track.is-active {
    border-color: rgba(251, 146, 60, 0.78);
    box-shadow: 0 18px 34px rgba(251, 146, 60, 0.22);
}

.slide-item.bm-legacy-track.is-active .slide-info {
    border-color: rgba(251, 146, 60, 0.74);
    box-shadow: 0 24px 48px rgba(251, 146, 60, 0.24);
}

.bm-unified-play {
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
}

.bm-unified-play.is-playing {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(251, 146, 60, 0.16);
}

.bm-unified-play.is-disabled {
    opacity: 0.62;
    filter: grayscale(0.25);
}

.release_tabs_wrapper .nav-tabs {
    border: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.release_tabs_wrapper .nav-tabs .nav-link {
    border-radius: 999px;
    border: 1px solid rgba(186, 230, 253, 0.28);
    background: rgba(8, 24, 34, 0.46);
    color: #bae6fd;
    transition: all 0.22s ease;
}

.release_tabs_wrapper .nav-tabs .nav-link:hover,
.release_tabs_wrapper .nav-tabs .nav-link.active {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.68);
    background: linear-gradient(120deg, rgba(34, 211, 238, 0.22), rgba(251, 146, 60, 0.22));
    box-shadow: 0 8px 20px rgba(2, 8, 11, 0.24);
}

.relaese_viewall_wrapper a {
    border: 1px solid rgba(34, 211, 238, 0.46);
    color: #dcf5ff;
    border-radius: 999px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 24, 34, 0.48);
    transition: all 0.22s ease;
}

.relaese_viewall_wrapper a:hover {
    color: #fff7ed;
    border-color: rgba(251, 146, 60, 0.74);
    box-shadow: 0 10px 22px rgba(251, 146, 60, 0.2);
}

.pagination-wrapper .pagination .page-link {
    border: 1px solid rgba(186, 230, 253, 0.24);
    background: rgba(8, 24, 34, 0.54);
    color: #bae6fd;
    border-radius: 10px;
    margin: 0 4px;
}

.pagination-wrapper .pagination .page-item.active .page-link,
.pagination-wrapper .pagination .page-link:hover {
    background: linear-gradient(120deg, rgba(34, 211, 238, 0.26), rgba(251, 146, 60, 0.22));
    color: #fff;
    border-color: rgba(34, 211, 238, 0.62);
}

.add_banner_img_wrapper img {
    border-radius: 18px;
    border: 1px solid rgba(186, 230, 253, 0.24);
    box-shadow: 0 18px 34px rgba(2, 8, 11, 0.34);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.add_banner_img_wrapper img:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(34, 211, 238, 0.16);
}

.partner_slider_wraper .lr_prt_img_wrapper {
    border-radius: 14px;
    border: 1px solid rgba(186, 230, 253, 0.2);
    background: rgba(8, 24, 34, 0.56);
    padding: 16px;
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.partner_slider_wraper .lr_prt_img_wrapper:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.54);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .bm-ai-sections,
    .bm-ai-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bm-ai-home {
        padding-top: 36px;
    }

    .bm-ai-shell {
        padding: 14px;
    }

    .bm-ai-header h2 {
        font-size: 22px;
    }

    .bm-ai-controls {
        grid-template-columns: 1fr;
    }

    .bm-ai-player {
        width: min(400px, calc(100vw - 14px));
        right: 7px;
        bottom: 7px;
    }

    .bm-ai-player-body {
        grid-template-columns: 60px 1fr;
        gap: 10px;
        padding: 0 10px 10px;
    }

    .bm-ai-player-cover {
        width: 60px;
        height: 60px;
    }

    .bm-ai-player-text strong {
        font-size: 17px;
    }

    .bm-ai-player-side {
        grid-column: 1 / -1;
        width: 100%;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px;
    }

    .bm-ai-player-controls {
        gap: 8px;
    }

    .bm-ai-control-btn {
        width: 34px;
        height: 34px;
    }

    .bm-ai-control-main {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .modern-hero-slider {
        border-radius: 0 0 18px 18px;
    }

    .modern-hero-slider .slide-info {
        padding: 18px !important;
        border-radius: 18px;
    }

    .m24_heading_wrapper h1 {
        font-size: 22px;
    }

    .m24_heading_wrapper h1::after {
        width: 72px;
    }

    .release_tabs_wrapper .nav-tabs .nav-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .relaese_viewall_wrapper a {
        padding: 7px 12px;
    }
}

@media (max-width: 575.98px) {
    .bm-ai-player {
        width: calc(100vw - 12px);
        right: 6px;
        bottom: 6px;
    }

    .bm-ai-player-topbar {
        padding: 8px 10px 5px;
    }

    .bm-ai-player-body {
        padding: 0 8px 9px;
        gap: 8px;
    }

    .bm-ai-player-text strong {
        font-size: 16px;
    }

    .bm-ai-player-time {
        font-size: 11px;
    }

    .bm-ai-player-window-btn {
        width: 26px;
        height: 26px;
    }
}
