@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap);

:root {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --card-hover: #f1f5f9;
    --primary-color: #fe5000;
    --accent-color: #fe5000;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --gradient-bg: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --font-main: "Outfit", sans-serif;
    --font-alt: "Titillium Web", sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-md: 12px;
    --radius-lg: 24px;
    --card-bg-rgb: 255, 255, 255
}

body.dark {
    --bg-color: #020617;
    --card-bg: #0f172a;
    --card-bg-rgb: 15, 23, 42;
    --card-hover: #1e293b;
    --primary-color: #fe5000;
    --accent-color: #fe5000;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
    --gradient-bg: linear-gradient(145deg, #0f172a 0%, #020617 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 30px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px -12px rgba(0, 0, 0, 0.5)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

img {
    max-width: 100%;
    height: auto
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s ease
}

ul {
    list-style: none
}

my-header header.glass-header {
    background: rgba(var(--card-bg-rgb, 29, 36, 46), .7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(128, 128, 128, .2);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: var(--shadow-md);
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275)
}

.headerne {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 55px;
    position: relative;
    height: 60px
}

.logomenu {
    display: flex;
    align-items: center
}

.logo {
    font-family: Outfit, sans-serif;
    font-weight: 700;
    font-size: 26px;
    display: flex;
    align-items: center;
    color: var(--accent-color);
    letter-spacing: -.5px
}

body.dark .logo {
    color: #fff
}

.logo img.tvlogo {
    height: 28px;
    margin-right: 12px;
    filter: drop-shadow(0 0 8px rgba(88, 166, 255, .4));
    transition: transform .4s ease
}

.logo:hover img.tvlogo {
    transform: rotate(15deg) scale(1.1)
}

nav.nav-menu {
    display: none
}

@media (min-width:1080px) {
    nav.nav-menu {
        display: block
    }

    nav.nav-menu ul {
        display: flex;
        gap: 10px;
        background: 0 0;
        border: none;
        box-shadow: none;
        padding: 0
    }

    nav.nav-menu ul li a {
        font-size: 19px;
        font-weight: 600;
        color: var(--text-muted);
        padding: 8px 12px;
        position: relative;
        transition: color .3s ease;
        white-space: nowrap;
    }

    nav.nav-menu ul li a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all .3s ease;
        transform: translateX(-50%);
        border-radius: 2px
    }

    nav.nav-menu ul li a:hover {
        color: var(--primary-color);
        background: 0 0
    }

    nav.nav-menu ul li a:hover::after {
        width: 80%
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px
}

.menu-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 15px
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
    perspective: 1000px
}

.checkbox {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0
}

.checkbox-label {
    background: rgba(15, 20, 30, .6);
    backdrop-filter: blur(8px);
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, .4), 0 5px 15px rgba(0, 0, 0, .2);
    transition: all .5s cubic-bezier(.175, .885, .32, 1.275);
    overflow: hidden
}

.checkbox-label::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2980, #26d0ce);
    opacity: 0;
    transition: opacity .5s ease;
    z-index: 0
}

body.dark .checkbox-label {
    border-color: rgba(88, 166, 255, .3)
}

.checkbox-label .fa-moon,
.checkbox-label .fa-sun {
    font-size: 12px;
    z-index: 2;
    transition: all .5s cubic-bezier(.68, -.55, .265, 1.55)
}

.checkbox-label .fa-moon {
    color: #f1c40f;
    margin-left: 4px;
    text-shadow: 0 0 10px rgba(241, 196, 15, .5);
    transform: rotate(0) scale(1)
}

.checkbox-label .fa-sun {
    color: #ff9800;
    margin-right: 4px;
    text-shadow: 0 0 10px rgba(255, 152, 0, .5);
    transform: rotate(0) scale(.5);
    opacity: 0
}

.checkbox-label .ball {
    background: #fff;
    background: radial-gradient(circle at 30% 30%, #fff 0, #e0e0e0 100%);
    width: 20px;
    height: 20px;
    position: absolute;
    left: 3px;
    top: 2px;
    border-radius: 50%;
    z-index: 3;
    transition: transform .6s cubic-bezier(.68, -.55, .265, 1.55), background .5s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3), inset 0 -2px 5px rgba(0, 0, 0, .1)
}

.checkbox:checked+.checkbox-label .ball {
    transform: translateX(24px);
    background: radial-gradient(circle at 30% 30%, #fff 0, #f1c40f 100%);
    box-shadow: 0 0 15px rgba(241, 196, 15, .4)
}

.checkbox:checked+.checkbox-label .fa-moon {
    transform: rotate(360deg) scale(1.1)
}

.checkbox:not(:checked)+.checkbox-label .fa-sun {
    transform: rotate(-360deg) scale(1.1);
    opacity: 1
}

.checkbox:checked+.checkbox-label .fa-sun {
    opacity: 0;
    transform: scale(.5)
}

.checkbox:not(:checked)+.checkbox-label .fa-moon {
    opacity: 0;
    transform: scale(.5)
}

body:not(.dark) .checkbox-label {
    background: rgba(135, 206, 235, .3);
    border-color: rgba(255, 255, 255, .5)
}

body:not(.dark) .checkbox-label .ball {
    background: radial-gradient(circle at 30% 30%, #fff 0, #ff9800 100%);
    box-shadow: 0 0 15px rgba(255, 152, 0, .4)
}

.checkbox-label:hover {
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, .4), 0 0 20px rgba(88, 166, 255, .2);
    transform: scale(1.05)
}

.header-actions i {
    font-size: 1.3rem;
    color: var(--text-main);
    transition: all .3s ease
}

.header-actions i:hover {
    color: var(--primary-color);
    transform: translateY(-2px)
}

@media (max-width:600px) {
    my-header header.glass-header {
        margin: 0;
        top: 0
    }

    .headerne {
        padding: 0 15px;
        height: 55px
    }

    .logo {
        font-size: 25px
    }

    .logo img.tvlogo {
        height: 30px;
        margin-right: 8px
    }

    .header-actions {
        gap: 12px
    }

    .menu-icon-wrapper {
        gap: 10px
    }

    .checkbox-label {
        width: 44px;
        height: 24px
    }

    .checkbox-label .ball {
        width: 18px;
        height: 18px
    }

    .checkbox:checked+.checkbox-label .ball {
        transform: translateX(20px)
    }
}

.nav-toggle-btn {
    background: 0 0;
    border: none;
    cursor: pointer;
    display: block
}

@media (min-width:1080px) {
    .nav-toggle-btn {
        display: none
    }
}

@media (max-width:1079px) {
    nav.nav-menu.active {
        position: fixed;
        top: 90px;
        left: 20px;
        right: 20px;
        background: rgba(var(--card-bg-rgb), .95);
        backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 20px;
        z-index: 1500;
        display: block;
        box-shadow: var(--shadow-md);
        animation: slideDown .4s ease forwards
    }

    nav.nav-menu ul {
        flex-direction: column;
        border: none;
        background: 0 0;
        box-shadow: none
    }

    nav.nav-menu ul li a {
        font-size: 1.2rem;
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, .05)
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.centercontainer {
    max-width: 1280px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
    padding: 0 20px;
    width: 100%
}

.radiostationcenterpage {
    display: flex;
    flex-direction: column;
    gap: 30px
}

.radiostationcenter,
.radiostationcenter_n,
.radiostationcenterpage_n {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md)
}

.radiostation {
    margin-bottom: 30px
}

.content-description-home .page-title,
.page-content h2,
.radiostation-title h1,
.radiostation-title h2 {
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin-bottom: 25px;
    color: var(--text-main);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2
}

.page-content {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-top: 40px;
    line-height: 1.8
}

.page-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    padding: 0;
    border: none;
    box-shadow: none
}

.Radio_container,
.favorites-list,
.group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 15px
}

@media (max-width:480px) {

    .Radio_container,
    .favorites-list,
    .group {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px
    }
}

search-bar {
    display: block;
    position: relative
}

.search-container {
    margin-bottom: 20px;
    position: relative;
    z-index: 50
}

.searchform {
    position: relative;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: var(--shadow-sm)
}

.searchform:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(var(--primary-color-rgb, 88, 116, 255), .2);
    transform: translateY(-2px);
    background: var(--card-bg)
}

.searchform input {
    background: 0 0;
    border: none;
    color: var(--text-main);
    width: 100%;
    margin-left: 15px;
    outline: 0;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-main)
}

.searchform input::placeholder {
    color: var(--text-muted);
    opacity: .7
}

.searchform i {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 100;
    transition: all .3s ease
}

.searchform:focus-within i#search-icon {
    color: var(--primary-color);
    transform: scale(1.1)
}

#results_container {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 0;
    width: 100%;
    max-height: 450px;
    background: rgba(var(--card-bg-rgb, 255, 255, 255), .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: var(--shadow-md);
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    animation: slideDown .3s ease-out
}

#results_container.active {
    display: grid
}

#results_container::-webkit-scrollbar {
    width: 6px
}

#results_container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px
}

#results_container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color)
}

h1.meta-title {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 10px !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    display: inline-block
}

.Radio_container_main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--card-bg);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.main_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 30px 20px;
    border-right: 1px solid var(--border-color);
    background: rgba(var(--card-bg-rgb), 0.5);
    backdrop-filter: blur(10px);
}

.player-sec-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center
}

.player-seo-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px
}

.player-seo-title img.station-artwork,
.station-artwork-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid rgba(var(--card-bg-rgb), 0.8);
}

.station-artwork-placeholder {
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
}


.station-region-tag,
.station-playlist-tag {
    display: inline-flex !important;
    align-items: center !important;
    font-size: .85rem !important;
    color: #8b949e !important;
    font-weight: 500 !important;
    margin: 0 !important;
    gap: 6px !important
}

.station-region-tag i {
    color: var(--primary-color);
    font-size: .8rem;
    opacity: .8
}

.playlist-tag {
    font-size: .75rem;
    padding: 2px 10px;
    background: rgba(254, 80, 0, .1);
    color: var(--primary-color);
    border-radius: 50px;
    border: 1px solid rgba(254, 80, 0, .15);
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.playlist-tag:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 80, 0, 0.3);
}

.player-seo-title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px
}

.player-language {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.player-language>p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: .95rem;
    color: #8b949e;
    font-weight: 500
}

.player-language>p a {
    color: var(--text-main);
    font-weight: 600;
    transition: all 0.3s ease;
}

.player-language>p a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.station-region-tag a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    text-decoration: none;
}

.station-region-tag a:hover {
    color: var(--primary-color);
}

.radio_rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    width: 100%
}

.radio_rating p {
    margin: 0;
    font-size: .95rem;
    color: #8b949e
}

.star_rating {
    margin: 0;
    display: flex;
    gap: 2px
}

.star_rating li i {
    color: #ff9800;
    font-size: .9rem
}

.main_left .share-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px
}

.main_left .share-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 1rem;
    text-decoration: none;
    transition: transform .2s ease
}

.main_left .share-icons a.facebook {
    background-color: #1877f2
}

.main_left .share-icons a.twitter {
    background-color: #1da1f2
}

.main_left .share-icons a.linkedin {
    background-color: #0077b5
}

.main_left .share-icons a.whatsapp {
    background-color: #25d366
}

.main {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.audio-player-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: 100%
}

.player-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px
}

#favorites {
    font-size: 1.2rem;
    color: #8b949e;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    gap: 3px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--card-bg-rgb, 29, 36, 46), .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 128, 128, .2);
    border-radius: 50%;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: var(--shadow-sm);
    z-index: 10
}

#favorites:hover {
    transform: scale(1.1) rotate(10deg);
    background: rgba(var(--card-bg-rgb, 29, 36, 46), .8);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 80, 0, .2)
}

#favorites[style*="rgb(254, 80, 0)"],
#favorites[style*="rgb(254,80,0)"] {
    background: rgba(255, 80, 0, .08);
    border-color: rgba(255, 80, 0, .3);
    filter: drop-shadow(0 0 8px rgba(254, 80, 0, .4))
}



@media (min-width:1081px) {

    #favorites {
        top: 20px;
        right: 20px;
        margin: 0;
        position: absolute
    }

    .player-header {
        position: static
    }
}

.station-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.now-playing {
    color: #4caf50;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    order: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.now-playing.playing {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.now-playing img {
    display: inline-block;
    height: 20px
}

.station-genre {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #58a6ff, #88c0fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    order: 2;
    margin-top: 5px;
    text-align: center;
    line-height: 1.3
}

@media (max-width:480px) {
    .station-genre {
        font-size: 1rem;
        padding: 0 10px
    }
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(254, 80, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin: 15px 0;
    z-index: 5;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(254, 80, 0, 0.5);
}

.play-btn:active {
    transform: scale(0.95);
}

/* Pulse animation when playing */
.status-indicator.playing+.station-info+.player-controls .play-btn,
body.playing .play-btn {
    animation: premiumPulse 2s infinite;
}

@keyframes premiumPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 80, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(254, 80, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 80, 0, 0);
    }
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 10px 0
}

.control-btn {
    background: 0 0;
    border: none;
    font-size: 1.4rem;
    color: #6b7280;
    cursor: pointer;
    transition: color .3s;
    padding: 10px
}

.control-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1)
}

.progress-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #8b949e;
    font-size: .8rem
}

.progress-bar {
    flex-grow: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease;
}

.progress-bar:hover {
    height: 10px;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    border-radius: 3px;
    position: relative
}

.progress::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    display: none
}

.volume-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 80%;
    margin-top: 10px;
    color: #8b949e
}

.volume-slider {
    flex-grow: 1;
    appearance: none;
    -webkit-appearance: none;
    height: 6px;
    background: #fff;
    background: #2a303c;
    border-radius: 3px;
    outline: 0;
    position: relative
}

.volume-slider::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary-color) 0, var(--primary-color) var(--volume-percent, 90%), #2a303c var(--volume-percent, 90%), #2a303c 100%)
}

.volume-slider {
    background: linear-gradient(to right, var(--primary-color) 90%, #eee 90%);
    background: var(--primary-color)
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    margin-top: -5px
}

#errorMsg {
    color: #ff5000;
    font-size: .85rem;
    margin-top: 10px;
    display: none;
    background: rgba(255, 80, 0, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 80, 0, 0.2);
    text-align: center;
    width: 100%;
    animation: fadeIn .3s ease
}

#errorMsg.show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-description {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color)
}

.content-description h2 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 5px
}

.h3title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-weight: 700
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 15px 0
}

.seo-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted)
}

.seo-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color)
}

.radio_rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px
}

.star_rating {
    display: flex;
    color: gold
}

.radiostation-more .more-title h3,
.radiostation-more .more-title h4 {
    background: linear-gradient(90deg, var(--card-bg), transparent);
    border-left: 5px solid var(--accent-color);
    padding: 12px 20px;
    margin-bottom: 25px;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center
}

#related-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px
}

@media (max-width:480px) {
    #related-posts {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr))
    }
}

.fm_radio,
.fmm_radio {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .3s, border-color .3s;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.fm_radio a {
    display: block;
    text-decoration: none;
}

.recent-played-item {
    animation: fadeInRecents .6s ease-out forwards
}

.recently-played-section {
    margin-bottom: 20px !important
}

.recently-played-section .radiostation-title {
    height: auto !important;
    margin-bottom: 10px !important
}

.recently-played-section .radiostation-title h2 {
    font-size: 1.1rem !important;
    border-left-width: 3px !important;
    padding-left: 10px !important;
    margin-bottom: 0 !important
}

.recently-played-section .group {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr)) !important;
    gap: 10px !important
}

.recently-played-section .radio_description {
    font-size: .8rem !important;
    font-weight: 500 !important
}

@keyframes fadeInRecents {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.fm_radio:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color)
}

.radio_img,
.radio-img-placeholder {
    width: 100%;
    display: block;
    border-radius: 8px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.radio-img-placeholder {
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
}

.radio_content {
    padding: 1px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 36px;
}

.radio_content .radio_description {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    padding: 0;
}

/* Premium Floating Resume Card */
.floating-resume-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(var(--card-bg-rgb, 15, 23, 42), 0.85);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 20px 12px 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transform: translateY(120%);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 320px;
    cursor: pointer;
}

.floating-resume-card.show {
    transform: translateY(0);
}

.floating-resume-card:hover {
    background: rgba(var(--card-bg-rgb, 15, 23, 42), 0.95);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(254, 80, 0, 0.3);
}

.floating-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.floating-info {
    flex-grow: 1;
    min-width: 0;
}

.floating-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.floating-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-play-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(254, 80, 0, 0.4);
    flex-shrink: 0;
}



.player-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.header-action-btn:hover {
    color: var(--primary-color);
    transform: scale(1.15);
}

.timer-modal {
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(var(--card-bg-rgb, 15, 23, 42), 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    animation: fadeIn 0.3s ease;
}

.timer-modal.active {
    display: flex;
}

.timer-modal p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.timer-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.timer-options button {
    background: rgba(var(--card-bg-rgb, 15, 23, 42), 0.5);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.timer-options button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}



/* Mesh Background Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(at 0% 0%, rgba(254, 80, 0, 0.05) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(99, 102, 241, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(254, 80, 0, 0.05) 0, transparent 50%);
    pointer-events: none;
}

.radiostatioside {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.list-trending,
.recent-posts-container h4 {
    background: linear-gradient(90deg, var(--card-bg), transparent);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center
}

.recent-posts-list {
    background: var(--card-bg);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 5px
}

.side-col ul {
    background: var(--card-bg);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 15px
}

.recent-post-item {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-radius: 12px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    border-bottom: 1px solid var(--border-color);
    background: 0 0;
    min-width: 0
}

.recent-post-item:hover {
    background: var(--card-hover);
    transform: translateX(8px);
    border-bottom-color: transparent;
    box-shadow: var(--shadow-sm)
}

.recent-post-link {
    color: var(--text-main);
    font-weight: 600;
    font-size: .95rem;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.recent-post-item:hover .recent-post-link {
    color: var(--primary-color)
}

.side-col ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 12px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color)
}

.side-col ul li:last-child {
    border-bottom: none;
    margin-bottom: 0
}

.side-col ul li:hover {
    background: var(--card-hover);
    transform: translateX(8px);
    border-bottom-color: transparent;
    box-shadow: var(--shadow-sm)
}

.side-col ul li img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2)
}

.taxonomies {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.taxonomies a {
    font-size: .75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
    transition: color .2s
}

.taxonomies a:hover {
    color: var(--primary-color)
}

.taxonomies .taxonomiesstyle {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal
}

.download-banner {
    background: var(--gradient-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-main);
    padding: 25px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-left: 6px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden
}

/* Premium Equalizer Animation */
.premium-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    width: 25px;
    margin-right: 10px;
}

.premium-equalizer span {
    display: block;
    width: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    height: 3px;
    transition: height 0.3s ease;
}




.premium-equalizer.animating span {
    animation: eq-bounce 1s ease-in-out infinite;
}

.premium-equalizer span:nth-child(1) {
    animation-delay: 0.1s;
}

.premium-equalizer span:nth-child(2) {
    animation-delay: 0.3s;
}

.premium-equalizer span:nth-child(3) {
    animation-delay: 0.2s;
}

.premium-equalizer span:nth-child(4) {
    animation-delay: 0.4s;
}

.premium-equalizer span:nth-child(5) {
    animation-delay: 0.1s;
}

@keyframes eq-bounce {

    0%,
    100% {
        height: 4px;
    }

    50% {
        height: 18px;
    }
}

.download-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb, 88, 166, 255), .05) 0, transparent 70%);
    pointer-events: none
}

.banner-text h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.5px
}

.banner-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500
}

.banner-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 1
}

.download-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: 0 8px 20px rgba(255, 80, 0, .3);
    text-transform: uppercase;
    letter-spacing: 1px
}

.download-btn:hover {
    background: #ff6a26;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(255, 80, 0, .4)
}

.qr-code img {
    height: 100px;
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease
}

.qr-code:hover img {
    transform: scale(1.1) rotate(2deg)
}

my-footer .footer {
    background: var(--card-bg);
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center
}

.footer img {
    margin-bottom: 10px
}

.footer-cont ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0
}

.allright {
    font-size: .85rem;
    color: var(--text-muted)
}

.share-icons a {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color .3s
}

.share-icons a:hover {
    color: var(--primary-color)
}

@media (max-width:1080px) {
    .centercontainer {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        padding: 0 10px;
        width: 100%;
        max-width: 100vw
    }

    .radiostationcenter,
    .radiostationcenter_n,
    .radiostationcenterpage_n {
        padding: 15px
    }

    .Radio_container_main {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 20px
    }

    .main_left {
        justify-content: center;
        width: 100%;
        border-right: none;
        border-top: 1px solid #2a303c;
        padding-top: 20px
    }

    .main {
        width: 100%
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem
    }

    .download-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px
    }

    .banner-buttons {
        flex-direction: column
    }
}

@media (max-width:480px) {
    .download-banner {
        padding: 12px 10px
    }

    .banner-text h4 {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 3px
    }

    .banner-text p {
        font-size: .85rem;
        line-height: 1.4
    }
}

.see-all-result {
    display: flex;
    justify-content: center;
    margin-top: 30px
}

.see-all-result a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(254, 80, 0, .1), rgba(254, 80, 0, .05));
    border: 1px solid rgba(254, 80, 0, .2);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    text-decoration: none
}

.see-all-result a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(254, 80, 0, .3);
    border-color: var(--primary-color)
}

.see-all-result a i {
    transition: transform .3s ease
}

.see-all-result a:hover i {
    transform: translateX(5px)
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, .85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s cubic-bezier(.4, 0, .2, 1), visibility .4s
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible
}

.popup {
    background: rgba(var(--card-bg-rgb, 255, 255, 255), .9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 420px;
    padding: 50px 30px 40px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, .4);
    transform: translateY(20px) scale(.95);
    opacity: 0;
    transition: all .5s cubic-bezier(.34, 1.56, .64, 1)
}

.popup-overlay.active .popup {
    transform: translateY(0) scale(1);
    opacity: 1
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(128, 128, 128, .1);
    border: 1px solid rgba(128, 128, 128, .1);
    color: var(--text-main);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 10
}

.close-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    border-color: var(--accent-color)
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center
}

.app-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-bg);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color)
}

.app-icon img {
    width: 65%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .2))
}

.popup h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    font-family: var(--font-main);
    letter-spacing: -.5px
}

.popup-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 320px;
    font-weight: 500
}

.download-btn-app {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 80, 0, .25);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px
}

.download-btn-app:hover {
    background: #ff6a26;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 80, 0, .35)
}

.download-btn-app:active {
    transform: translateY(-1px)
}

.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(31, 41, 55, .95);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    z-index: 3000;
    opacity: 0;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    white-space: nowrap
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1
}

.toast-notification i {
    color: var(--accent-color)
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(254, 80, 0, .1), rgba(254, 80, 0, .05));
    border: 1px solid rgba(254, 80, 0, .2);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: .95rem;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    text-decoration: none
}

.pagination-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(254, 80, 0, .3);
    border-color: var(--primary-color)
}

.pagination-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(254, 80, 0, 0.2);
}

.page-number {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Pagination Mobile Fix */
@media (max-width: 600px) {
    .pagination {
        gap: 8px;
        padding: 15px 10px;
    }

    .pagination-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .page-number {
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        order: 10;
        /* Move page number to bottom on mobile */
        margin-top: 10px;
    }
}

.player-language {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    padding: 8px 12px !important;
    background: rgba(var(--card-bg-rgb, 255, 255, 255), .05);
    border-radius: 50px;
    border: 1px solid rgba(128, 128, 128, .1);
    margin-top: 5px
}

.player-language>p,
.radio_rating {
    width: auto !important;
    margin: 0 !important;
    gap: 8px !important;
    justify-content: center !important;
    display: inline-flex !important;
    align-items: center !important
}

.player-language>p,
.radio_rating p {
    font-size: .85rem !important;
    color: var(--text-muted) !important;
}

.player-language>p a {
    color: var(--text-main) !important;
    font-weight: 600;
}

.player-language>p a:hover {
    text-decoration: underline;
}

.star_rating li i {
    font-size: .8rem !important
}

.main_left .share-icons {
    margin-top: 0 !important;
    gap: 8px !important
}

.main_left .share-icons a {
    width: 28px !important;
    height: 28px !important;
    font-size: .8rem !important;
    opacity: .8
}

.main_left .share-icons a:hover {
    opacity: 1;
    transform: scale(1.1)
}

.player-sec-title {
    gap: 12px !important
}

/* Premium White Spinner */
.premium-spinner {
    width: 28px;
    height: 28px;
    border: 3.5px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: premium-spin 0.8s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
    display: inline-block;
}

@keyframes premium-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Glassmorphism Design System */
.glass-effect {
    background: rgba(var(--card-bg-rgb), 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-card-premium {
    position: relative;
    border-radius: 20px;
    padding: 2rem;
    background: rgba(var(--card-bg-rgb), 0.5);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.6s ease;
}

.glass-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(var(--card-bg-rgb), 0.65);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.glass-card-premium:hover::before {
    top: -30%;
    left: -30%;
}

/* Glow Indicators */
.glass-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 128, 128, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    font-weight: 600;
    color: white;
}

.glass-indicator::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: pulse-glass 3s infinite;
}

@keyframes pulse-glass {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

.glass-background-demo {
    background: radial-gradient(circle at top left, #1e293b, #020617);
    min-height: 80vh;
    padding: 60px 20px;
    border-radius: 24px;
    margin: 40px 0;
}

/* Player Header Buttons */
.header-btns {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 20px;
    z-index: 5;
}

.player-action-btn {
    background: rgba(var(--card-bg-rgb, 29, 36, 46), .6);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
}

.player-action-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Song History List Styles */
.song-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.2s;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.history-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.history-item-info {
    display: flex;
    flex-direction: column;
}

.history-song-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.history-song-time {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.empty-history {
    text-align: center;
    color: var(--text-muted);
    padding: 20px;
    font-style: italic;
}