/* ==========================================================
   RAISO ISOLATED PREMIUM STYLES (WordPress Component)
   Project: La Radio Cristiana Manizales
   Isolation Prefix: rc-
   Root Wrapper: .rc-isolate
   ========================================================== */

/* 1. ISOLATION ROOT & RESET */
.rc-isolate {
    /* Break WordPress inheritance */
    display: block;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    color: #f8fafc;
    line-height: 1.8;
    background: #020617;
    position: relative;
    width: 100% !important;
    min-height: 100vh;
    overflow-x: hidden;
    cursor: default;
    user-select: none;
    text-align: left;
    /* WordPress might have centered it */

    /* Global Variables - Scoped to .rc-isolate */
    --rc-primary-bg: #050a15;
    --rc-secondary-bg: rgba(30, 41, 59, 0.5);
    --rc-accent-blue: #3b82f6;
    --rc-accent-glow: rgba(59, 130, 246, 0.4);
    --rc-accent-blue-soft: rgba(59, 130, 246, 0.1);
    --rc-text-primary: #f8fafc;
    --rc-text-secondary: #94a3b8;
    --rc-border-color: rgba(255, 255, 255, 0.08);
    --rc-glass-blur: blur(16px);
    --rc-transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Scoped Reset to prevent WordPress bleed-in */
.rc-isolate *,
.rc-isolate *::before,
.rc-isolate *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* Wrapper handles background */
}

.rc-isolate img,
.rc-isolate video,
.rc-isolate canvas,
.rc-isolate svg {
    max-width: 100%;
    height: auto;
}

.rc-isolate a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.rc-isolate button {
    cursor: pointer;
    font-family: inherit;
}

/* 2. BACKGROUND LAYERS (Shaders) */

/* Nebula Shader */
#rc-_0xns6,
.rc-_0xns {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(30, 41, 59, 0.2) 0%, transparent 60%);
    filter: blur(60px);
    animation: rc-nebulaFloat 30s ease-in-out infinite alternate;
}

@keyframes rc-nebulaFloat {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(2%, 2%);
    }
}

/* Cyber Grid */
#rc-_0xcg7,
.rc-_0xcg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at var(--rc-mouse-x, 50%) var(--rc-mouse-y, 50%), black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at var(--rc-mouse-x, 50%) var(--rc-mouse-y, 50%), black 0%, transparent 60%);
    pointer-events: none;
}

/* Interactive Glow */
.rc-_0xmg {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    filter: blur(50px);
}

/* Particles Canvas */
#rc-_0xbp9 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 3. LAYOUT UTILITIES */
.rc-_0xc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.rc-_0n {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 768px) {
    .rc-_0xc {
        padding: 0 20px;
    }
}

/* 4. HEADER & NAVIGATION */
.rc-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10001;
    padding: 18px 0;
    background: transparent;
    transition: var(--rc-transition-smooth);
    animation: rc-slideDownHeader 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes rc-slideDownHeader {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.rc-header.rc-scrolled {
    background: rgba(5, 10, 21, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Desktop Header Grid */
@media (min-width: 769px) {
    .rc-header .rc-_0n {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
}

.rc-logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.rc-logo img {
    height: 50px !important;
    width: auto !important;
    transform: scale(1.8);
    transform-origin: left center;
    transition: var(--rc-transition-smooth);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.3));
    object-fit: contain !important;
}

@media (min-width: 769px) {
    .rc-logo img {
        height: 70px !important;
    }
}

.rc-header.rc-scrolled .rc-logo img {
    transform: scale(1.5);
}

.rc-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.rc-nav-links a {
    color: var(--rc-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--rc-transition-smooth);
}

.rc-nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rc-accent-blue);
    transition: var(--rc-transition-smooth);
}

.rc-nav-links a:hover {
    color: var(--rc-text-primary);
}

.rc-nav-links a:hover::after {
    width: 100%;
}

.rc-header-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.rc-header-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--rc-border-color);
    color: var(--rc-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rc-transition-smooth);
}

.rc-header-social-btn:hover {
    background: var(--rc-accent-blue-soft);
    border-color: var(--rc-accent-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.rc-mobile-menu-btn {
    display: none;
}

/* 5. HERO SECTION */
.rc-hero {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: 180px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.rc-hero h1 {
    font-weight: 700;
    font-size: clamp(2.8rem, 7vw, 4.2rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--rc-accent-blue) 25%, #fff 50%, var(--rc-accent-blue) 75%, #fff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rc-textShimmer 5s linear infinite;
}

@keyframes rc-textShimmer {
    to {
        background-position: 200% center;
    }
}

.rc-hero h2 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: linear-gradient(90deg, #fff, var(--rc-accent-blue), #fff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rc-textShimmer 8s linear infinite;
    position: relative;
    display: inline-block;
}

.rc-hero h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--rc-accent-blue);
    box-shadow: 0 0 15px var(--rc-accent-glow);
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

[rc-data-reveal].rc-active h2::after {
    width: 60px;
}

.rc-_0ht {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--rc-accent-blue);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.rc-_0hs {
    font-size: 1.1rem;
    color: var(--rc-text-secondary);
    max-width: 650px;
    margin: 0 auto 32px;
}

/* 6. CONTENT SECTIONS */
.rc-isolate section {
    padding: 100px 0;
}

.rc-_0st {
    text-align: center;
    margin-bottom: 50px;
}

.rc-bg-dark-shader {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 41, 59, 0.2) 50%, transparent 100%);
    border-top: 1px solid var(--rc-border-color);
    border-bottom: 1px solid var(--rc-border-color);
}

/* Cards System */
.rc-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 48px;
}

.rc-info-card {
    padding: 54px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(25px);
    border: 1px solid transparent;
    border-radius: 32px;
    transition: var(--rc-transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

@property --rc-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes rc-rotateAngle {
    to {
        --rc-angle: 360deg;
    }
}

.rc-info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 32px;
    background: conic-gradient(from var(--rc-angle), #3b82f6, #9333ea, #3b82f6, #60a5fa, #3b82f6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rc-rotateAngle 6s linear infinite;
    opacity: 0.3;
}

.rc-info-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.rc-info-card:hover::after {
    opacity: 1;
}

.rc-info-card i {
    font-size: 32px;
    color: var(--rc-accent-blue);
    margin-bottom: 32px;
    display: block;
    filter: drop-shadow(0 0 10px var(--rc-accent-glow));
}

/* 7. DIARIO DE LA ESPERANZA (Video) */
.rc-esperanza-grid {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.rc-video-card {
    max-width: 950px;
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--rc-transition-smooth);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 768px) {
    .rc-video-card {
        grid-template-columns: 1fr;
    }
}

.rc-video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.rc-youtube-facade {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.rc-youtube-facade img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rc-youtube-facade:hover img {
    transform: scale(1.05);
}

.rc-play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.rc-play-button-overlay i {
    font-size: 4rem;
    color: white;
    filter: drop-shadow(0 0 20px var(--rc-accent-blue));
}

.rc-video-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.3) 100%);
}

.rc-video-info h3 {
    font-size: 2rem;
    background: linear-gradient(90deg, #fff, var(--rc-accent-blue), #fff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rc-textShimmer 5s linear infinite;
}

.rc-btn-text {
    color: var(--rc-accent-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid transparent;
    transition: var(--rc-transition-smooth);
}

.rc-btn-text:hover {
    color: #fff;
    border-color: var(--rc-accent-blue);
}

/* 8. WHATSAPP PREMIUM BUTTON */
.rc-whatsapp-wrap {
    display: flex !important;
    justify-content: center !important;
    padding: 40px 0;
}

.rc-whatsapp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    overflow: hidden;
    z-index: 1;
}

.rc-whatsapp-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: conic-gradient(from var(--rc-angle), #22c55e, #16a34a, #4ade80, #22c55e);
    border-radius: 50px;
    z-index: -1;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rc-rotateAngle 4s linear infinite;
}

.rc-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
}

.rc-whatsapp-btn i {
    color: #22c55e;
    transition: transform 0.4s ease;
}

.rc-whatsapp-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* 9. FOOTER */
.rc-footer {
    padding: 80px 0 140px;
    text-align: center;
    background: rgba(2, 6, 23, 0.8);
    border-top: 1px solid var(--rc-border-color);
}

.rc-footer-logo {
    width: 130px !important;
    height: auto !important;
    margin-bottom: 24px;
    display: inline-block !important;
}

/* 10. PREMIUM RADIO PLAYER */
.rc-player-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 820px;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10002;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(30px);
    border-radius: 100px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
    animation: rc-slideUpPlayer 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s backwards;
}

@keyframes rc-slideUpPlayer {
    0% {
        transform: translateX(-50%) translateY(150px);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Player Glow Border */
.rc-player-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: conic-gradient(from var(--rc-angle), transparent 60%, var(--rc-accent-blue) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: rc-rotateAngle 4s linear infinite;
}

.rc-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--rc-accent-blue);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px var(--rc-accent-glow);
    transition: var(--rc-transition-smooth);
    position: relative;
    z-index: 2;
}

.rc-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
}

.rc-playing .rc-play-btn {
    animation: rc-playPulse 2s ease-in-out infinite;
}

@keyframes rc-playPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--rc-accent-glow);
    }

    50% {
        box-shadow: 0 4px 30px rgba(59, 130, 246, 0.8), 0 0 0 4px rgba(59, 130, 246, 0.2);
    }
}

.rc-visualizer-container {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}

.rc-wave-bar {
    width: 4px;
    height: 15px;
    background: var(--rc-accent-blue);
    border-radius: 10px;
    opacity: 0.5;
}

.rc-playing .rc-wave-bar {
    animation: rc-waveAnim 1s ease-in-out infinite alternate;
    opacity: 1;
}

@keyframes rc-waveAnim {
    0% {
        height: 10px;
        transform: scaleY(1);
    }

    100% {
        height: 30px;
        transform: scaleY(1.5);
    }
}

.rc-_0xsi {
    flex-grow: 1;
    margin-left: 10px;
}

.rc-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rc-pulsing-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
    animation: rc-dotPulse 1.5s infinite;
}

@keyframes rc-dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.rc-live-text {
    font-size: 0.7rem;
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
}

.rc-song-title {
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(90deg, #fff, var(--rc-accent-blue), #fff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rc-textShimmer 5s linear infinite;
}

.rc-station-name {
    font-size: 0.85rem;
    color: var(--rc-text-secondary);
    opacity: 0.8;
}

.rc-volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rc-volume-btn {
    background: none;
    border: none;
    color: var(--rc-text-secondary);
    font-size: 1.1rem;
}

.rc-volume-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.rc-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.rc-volume-slider-wrapper {
    display: flex;
    align-items: center;
}

.rc-isolate input[type="range"] {
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 10px;
    width: 100px;
    outline: none;
}

.rc-isolate input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(to right, var(--rc-accent-blue) 0%, var(--rc-accent-blue) var(--value, 100%), rgba(255, 255, 255, 0.1) var(--value, 100%));
    height: 4px;
    border-radius: 10px;
}

.rc-isolate input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 14px;
    width: 14px;
    background: #fff;
    border: 3px solid var(--rc-accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--rc-accent-glow);
    margin-top: -5px;
    transition: var(--rc-transition-smooth);
}

/* 11. REVEAL SYSTEM */
[rc-data-reveal] {
    opacity: 0;
    will-change: opacity, transform, filter;
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[rc-data-reveal="up"] {
    transform: translateY(50px);
}

[rc-data-reveal="down"] {
    transform: translateY(-50px);
}

[rc-data-reveal="left"] {
    transform: translateX(-60px);
}

[rc-data-reveal="right"] {
    transform: translateX(60px);
}

[rc-data-reveal="zoom"] {
    transform: scale(0.85);
}

[rc-data-reveal="blur"] {
    filter: blur(20px);
}

[rc-data-reveal].rc-active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

/* UTILITY CLASSES */
.rc-desktop-only {
    display: flex !important;
}

.rc-mobile-only {
    display: none !important;
}

/* 12. MOBILE OVERRIDES */
@media (max-width: 768px) {
    .rc-desktop-only {
        display: none !important;
    }

    .rc-mobile-only {
        display: flex !important;
    }

    .rc-header {
        padding: 10px 0;
    }

    .rc-logo img {
        height: 45px !important;
    }

    .rc-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(5, 10, 21, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1002;
        padding: 60px 20px;
    }

    .rc-nav-links.rc-active {
        right: 0;
    }

    .rc-mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: none;
        border: none;
        z-index: 1003;
    }

    .rc-mobile-menu-btn span {
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 10px;
        transition: var(--rc-transition-smooth);
    }

    .rc-mobile-menu-btn.rc-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .rc-mobile-menu-btn.rc-active span:nth-child(2) {
        opacity: 0;
    }

    .rc-mobile-menu-btn.rc-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .rc-player-container {
        padding: 14px 20px;
        bottom: 40px;
        border-radius: 100px;
        gap: 12px;
        justify-content: space-between;
    }

    .rc-play-btn {
        width: 55px;
        height: 55px;
    }

    .rc-station-name {
        display: none;
    }

    .rc-volume-control {
        position: relative;
        padding: 0;
        background: none;
        border: none;
    }

    .rc-volume-btn {
        width: 40px;
        height: 40px;
        background: rgba(30, 41, 59, 0.8);
        border: 1px solid var(--rc-border-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rc-volume-slider-wrapper {
        position: absolute;
        bottom: 65px;
        left: 50%;
        transform: translateX(-50%) translateY(20px) scale(0.8);
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(30px);
        padding: 25px 0;
        width: 45px;
        border-radius: 40px;
        border: 1px solid rgba(59, 130, 246, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .rc-volume-slider-wrapper.rc-active {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
        pointer-events: all;
    }

    .rc-isolate input[type="range"] {
        transform: rotate(-90deg);
        width: 100px;
    }

    /* Mobile Menu Socials */
    .rc-menu-socials {
        margin-top: 35px;
        list-style: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .rc-menu-socials-wrapper {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .rc-menu-social-btn {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--rc-border-color);
        color: var(--rc-text-secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: var(--rc-transition-smooth);
    }

    .rc-menu-social-btn:hover,
    .rc-menu-social-btn:active {
        background: var(--rc-accent-blue-soft);
        border-color: var(--rc-accent-blue);
        color: #fff;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    }
}

/* PERFORMANCE MODES */
.rc-low-performance #rc-_0xns6,
.rc-low-performance #rc-_0xcg7,
.rc-low-performance #rc-_0xbp9,
.rc-low-performance .rc-_0xmg {
    display: none !important;
}

.rc-low-performance .rc-info-card::after,
.rc-low-performance .rc-player-container::after,
.rc-low-performance .rc-whatsapp-btn::before {
    display: none !important;
}