.text-white {
    color: white !important;
}

.text-black {
    color: black;
}

.bg-white {
    background: #fff;
}

.radio-dock {
    position: fixed;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: auto;
    max-width: calc(100% - 32px);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    padding: 10px 20px 10px 14px;
    border-radius: 12px;
    pointer-events: auto;
}

.radio-dock-content {
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.5vw, 28px);
}

/* Left: Now Playing */
.radio-now {
    flex: 0 1 360px;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.radio-art {
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef0ff;
    box-shadow: 0 4px 14px rgba(35, 41, 139, 0.16);
    border: 2px solid #fff;
}

.radio-art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    animation: rotateDisc 10s linear infinite;
}

@keyframes rotateDisc {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.radio-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.radio-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.radio-program {
    margin-top: 2px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.3;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Center: Actions */
.radio-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-play {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    background: #23298b;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(35, 41, 139, 0.32);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.radio-play:hover {
    transform: scale(1.06);
    background: #1e2270;
    box-shadow: 0 8px 24px rgba(35, 41, 139, 0.42);
}

.radio-play:active {
    transform: scale(0.95);
}

/* Right: Tools (Status + Volume) */
.radio-tools {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.radio-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #fee2e2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    border: 1px solid rgba(239, 68, 68, 0.2);
    flex-shrink: 0;
}

.radio-status-tag .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: radioPulse 1.6s infinite;
}

.radio-volume {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    flex-shrink: 0;
}

.radio-volume i {
    font-size: 18px;
    color: #64748b;
}

.radio-volume input {
    appearance: none;
    -webkit-appearance: none;
    width: 84px;
    height: 5px;
    border-radius: 999px;
    cursor: pointer;
    background: #e2e8f0;
    outline: none;
    transition: background 0.2s ease;
}

.radio-volume input:hover {
    background: #cbd5e1;
}

.radio-volume input::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #23298b;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.radio-volume input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.radio-volume input::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #23298b;
    cursor: pointer;
}

@keyframes radioPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@media (max-width: 860px) {
    .radio-tools {
        display: none;
    }
}

@media (max-width: 560px) {
    .radio-dock {
        bottom: 12px;
        padding: 6px 14px 6px 8px;
        max-width: calc(100% - 24px);
    }

    .radio-dock-content {
        gap: 12px;
    }

    .radio-art {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .radio-name {
        font-size: 13px;
    }

    .radio-program {
        font-size: 10px;
    }

    .radio-play {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .radio-control {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
}

/* Hide & Show Toggle Controls */
.radio-dock {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.radio-dock.is-hidden {
    transform: translate(-50%, calc(100% + 40px)) scale(0.92);
    opacity: 0;
    pointer-events: none;
}

/* Minimize / Close button inside dock */
.radio-toggle-btn {
    border: 0;
    background: rgba(15, 23, 42, 0.05);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #64748b;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.radio-toggle-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: scale(1.1);
}

/* Re-open Launcher Floating Capsule */
.radio-open-launcher {
    position: fixed;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    border: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, box-shadow 0.25s ease;
}

.radio-open-launcher:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.04);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
}

.radio-open-launcher.is-hidden {
    transform: translateX(-50%) translateY(30px) scale(0.85);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.radio-open-art {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.radio-open-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: rotateDisc 10s linear infinite;
}

.radio-open-launcher .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
    animation: radioPulse 1.6s infinite;
}

.radio-open-label {
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.04em;
    color: #0f172a;
    text-transform: uppercase;
}

.radio-open-launcher i {
    font-size: 16px;
    color: #64748b;
}

/* Header Download App Button */
.btn-download-app {
    padding: 0.6rem 1.25rem;
    font-size: var(--fs-xs);
    letter-spacing: 0.05em;
}

.btn-download-app i {
    font-size: 1.1em;
    margin-right: 2px;
}

@media (max-width: 576px) {
    .btn-download-app {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }
}




.app-download-section {
    padding: 100px 0;
    background: #f1f1f1;
    position: relative;
    overflow: hidden;
}

.container-echora {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.app-download-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
    overflow: hidden;
}

.app-card-glow {
    position: absolute;
    top: 50px;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

.app-download-content {
    max-width: 540px;
    z-index: 1;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #23298b;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.app-download-title {
    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: 700;
    color: #000;
    margin: 0 0 18px;
}

.app-download-title em {
    font-style: normal;
    background: linear-gradient(135deg, #23298b, #23298b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-download-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #222222;
    margin-bottom: 30px;
}

/* Fitur Highlight */
.app-download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.15);
    color: #23298b;
}

.app-download-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 14px;
    background: #23298b;
    color: #0f172a;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.2);
}

.app-store-btn--alt {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.app-store-btn--alt:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.store-icon {
    font-size: 1.75rem;
}

.app-store-btn__text small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.app-store-btn__text strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.1;
}

.app-download-mockup {
    position: relative;
    z-index: 1;
}

.phone-wrapper {
    position: relative;
    width: 290px;
    height: 560px;
    background: #020617;
    border-radius: 46px;
    border: 4px solid #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 12px;
}

.phone-speaker {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 14px;
    background: #000;
    border-radius: 12px;
    z-index: 5;
}

.phone-screen {
    background: #0f172a;
    height: 100%;
    width: 100%;
    border-radius: 36px;
    padding: 30px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.app-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.app-screen-logo {
    font-weight: 700;
    color: #f1f5f9;
}

.app-screen-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 6px;
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 700;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 6px #ef4444;
    animation: liveBlink 1.4s infinite;
}

.app-screen-disc {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.app-screen-disc img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.app-screen-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-screen-info p {
    margin: 4px 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

/* Audio Wave Visualizer */
.audio-waves {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 20px;
}

.audio-waves span {
    width: 3px;
    background: #6366f1;
    border-radius: 4px;
    animation: waveMotion 1.2s infinite ease-in-out;
}

.audio-waves span:nth-child(2) {
    animation-delay: 0.2s;
}

.audio-waves span:nth-child(3) {
    animation-delay: 0.4s;
}

.audio-waves span:nth-child(4) {
    animation-delay: 0.1s;
}

.audio-waves span:nth-child(5) {
    animation-delay: 0.3s;
}

/* Control Buttons */
.app-screen-controls {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.ctrl-btn {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.3rem;
    cursor: pointer;
}

.ctrl-btn--play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #6366f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

/* Animations */
@keyframes liveBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

@keyframes waveMotion {

    0%,
    100% {
        height: 4px;
    }

    50% {
        height: 18px;
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .app-download-card {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
    }

    .app-download-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-download-features {
        justify-content: center;
    }

    .app-download-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .app-download-title {
        font-size: 1.85rem;
    }

    .phone-wrapper {
        width: 260px;
        height: 500px;
    }
}