:root {
    --pink-500: #f8312a;
    --blue-500: #fccd67;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: rgba(10, 1, 24, 0.9);
    color: white;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/banner/fondo.webp'); /*https://esenvivo.com/fondos/1.jpg*/
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    animation: background-pan 60s linear infinite;
    filter: contrast(1.2);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 80px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.logo svg {
    width: 24px;
    height: 24px;
    fill: var(--pink-500);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--pink-500);
    color: white;
}

.btn-primary:hover {
    background-color: #d53f8c;
}

main {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero-title {
    font-size: clamp(1.8rem, 8vw, 3.5rem);
    font-weight: bold;
    line-height: 1.1;
}

.hero-title span {
    color: var(--pink-500);
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 32rem;
    min-height: 3em;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.1s;
    background-color: rgba(255, 255, 255, 0.05);
}

.store-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.store-button svg {
    width: 32px;
    height: 32px;
}

.store-button .button-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-button .small {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.store-button .large {
    font-size: 1rem;
    font-weight: 600;
}

.app-store svg {
    fill: white;
}

.google-play svg {
    fill: white;
}

.player-container {
    position: relative;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    overflow: hidden;
}

.player-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(59, 130, 246, 0.3));
    filter: blur(100px);
    z-index: -1;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.album-art {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    object-fit: cover;
    animation: album-pulse 3s ease-in-out infinite;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.album-art:hover {
    transform: scale(1.1);
}

@keyframes album-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 12px rgba(236, 72, 153, 0.2);
    }
}

.track-info h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.track-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 1rem 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--pink-500);
    width: 0;
    transition: width 0.1s linear;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.control-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s;
}

.control-button:hover {
    color: white;
}

.play-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pink-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.play-button:hover {
    background-color: #ffcc00;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.social-icon:hover {
    color: white;
    transform: scale(1.2) rotate(360deg);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-percentage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    width: 40px;
    text-align: right;
}

.volume-slider {
    width: 100px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    border-radius: 5px;
    height: 5px;
}

.volume-slider:hover {
    opacity: 1;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--pink-500);
    cursor: pointer;
    border-radius: 50%;
}

.volume-slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: var(--pink-500);
    cursor: pointer;
    border-radius: 50%;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--pink-500);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

button {
    -webkit-appearance: none;
    appearance: none;
}

.btn-share {
    background: none;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: color 0.3s;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
}

.btn-share:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-share svg {
    width: 20px;
    height: 20px;
    stroke: var(--pink-500);
    transition: transform 0.3s;
}

.btn-share:hover svg {
    transform: rotate(45deg);
}

.share-text {
    font-size: 0.875rem;
    display: none;
}

@media (min-width: 768px) {
    .share-text {
        display: inline-block;
    }
}

.stream-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 1rem 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ffcc00;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

.listener-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.listener-count svg {
    width: 16px;
    height: 16px;
    color: var(--pink-500);
}

@keyframes pulse-red {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@media (max-width: 1024px) {
    main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(10, 1, 24, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 1rem 2rem;
        padding-top: calc(env(safe-area-inset-top) + 1rem);
        min-height: 70px;
    }

    body {
        padding-top: 80px; 
    }

    .store-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .store-button {
        padding: 0.4rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .store-button .small {
        font-size: 0.6rem;
    }
    
    .store-button .large {
        font-size: 0.85rem;
    }
    
    .store-button svg {
        width: 24px;
        height: 24px;
    }

    .play-button {
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .controls {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .control-button {
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        transition: color 0.3s;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .control-button svg {
        width: 20px;
        height: 20px;
    }

    .play-button {
        width: 48px;
        height: 48px;
        background: var(--pink-500);
        color: white;
        border-radius: 50%;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }

    .volume-control {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .volume-slider {
        width: 80%;
        max-width: 200px;
    }

    .volume-percentage {
        font-size: 0.75rem;
        width: auto;
    }

    main {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    @media (orientation: landscape) {
        body {
            padding-top: 60px; 
        }

        main {
            padding: 1rem 1rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .hero-content {
            text-align: left;
            align-items: flex-start;
            flex: 1;
        }

        .player-container {
            flex: 1;
            max-width: 400px;
            margin-top: 0; 
        }

        .hero-title {
            font-size: clamp(1.2rem, 6vw, 2.2rem);
            line-height: 1.1;
        }

        .hero-description {
            font-size: 1rem;
        }

        .controls {
            flex-wrap: nowrap;
            justify-content: center;
            gap: 1rem;
        }

        .volume-control {
            order: 0;
            width: auto;
            margin-bottom: 0;
        }
    }

    @keyframes background-pan {
        0% {
            background-position: 0% 0%;
        }
        50% {
            background-position: 100% 100%;
        }
        100% {
            background-position: 0% 0%;
        }
        animation-duration: 120s;
    }
    
    body::before {
        animation: background-pan 120s linear infinite;
    }
}

@media (max-width: 320px) {
    .controls {
        gap: 0.5rem;
    }

    .control-button {
        width: 32px;
        height: 32px;
    }

    .control-button svg {
        width: 18px;
        height: 18px;
    }

    .play-button {
        width: 44px;
        height: 44px;
    }

    .play-button svg {
        width: 22px;
        height: 22px;
    }

    .volume-slider {
        width: 70%;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .controls {
        gap: 1rem;
    }

    .control-button {
        width: 42px;
        height: 42px;
    }

    .control-button svg {
        width: 22px;
        height: 22px;
    }

    .play-button {
        width: 56px;
        height: 56px;
    }

    .play-button svg {
        width: 28px;
        height: 28px;
    }
}

.ios-device {
    -webkit-touch-callout: none; 
    -webkit-tap-highlight-color: transparent; 
    padding-top: env(safe-area-inset-top); 
    padding-bottom: env(safe-area-inset-bottom); 
}

@supports (-webkit-touch-callout: none) {
    .album-art, .social-icon, .play-button, .program-art {
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .footer-social-links .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        -webkit-transform: translateY(-5px) scale(1.1);
    }
}

.pwa-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.pwa-modal-content {
    background-color: rgba(30, 10, 60, 0.9);
    margin: 15% auto;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 500px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: white;
    transform: scale(0.9);
    animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.pwa-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    transition: color 0.3s;
}

.pwa-modal-close:hover {
    color: white;
}

.pwa-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.pwa-modal-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.pwa-install-btn {
    background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pwa-install-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from { 
        opacity: 0; 
        transform: scale(0.6);
    }
    to { 
        opacity: 1; 
        transform: scale(1);
    }
}

.site-footer {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(59, 130, 246, 0.05));
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
    transition: width 0.3s ease;
}

.footer-column:hover h4::after {
    width: 100%;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
    cursor: default;
}

.footer-column ul li svg {
    color: var(--pink-500);
    width: 24px;
    height: 24px;
    min-width: 24px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 3px rgba(236, 72, 153, 0.2));
    position: absolute;
    left: 0;
}

.footer-column ul li:hover svg {
    transform: scale(1.2) rotate(5deg);
    color: var(--blue-500);
    filter: drop-shadow(0 3px 5px rgba(59, 130, 246, 0.3));
}

.footer-column:nth-child(3) ul li {
    padding-left: 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 2rem;
}

.footer-column:nth-child(3) ul li::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-column:nth-child(3) ul li:hover {
    transform: translateX(5px);
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.1), transparent);
}

.footer-column:nth-child(3) ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--pink-500), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-column:nth-child(3) ul li:hover::after {
    opacity: 0.3;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-column ul li a:hover::after {
    transform: translateX(0);
}

.footer-column:nth-child(2) ul li {
    position: relative;
    padding-left: 32px;
    transition: transform 0.3s ease;
}

.footer-column:nth-child(2) ul li:hover {
    transform: translateX(5px);
}

.footer-column:nth-child(2) ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.footer-column:nth-child(2) ul li:hover::before {
    transform: translateY(-50%) scale(1.5);
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-links .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.footer-social-links .social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.footer-social-links .social-icon svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-social-links .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-social-links .social-icon:hover::before {
    opacity: 1;
}

.footer-social-links .social-icon:hover svg {
    color: white;
    transform: scale(1.1);
}

.footer-social-links .social-icon:active {
    transform: translateY(-2px) scale(0.95);
}

.footer-social-links .social-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--pink-500) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(15px);
}

.footer-social-links .social-icon:hover::after {
    opacity: 0.15;
}

@media (max-width: 768px) {
    .footer-social-links {
        justify-content: center;
        gap: 1rem;
    }

    .footer-social-links .social-icon {
        width: 38px;
        height: 38px;
    }

    .footer-social-links .social-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .footer-social-links {
        gap: 0.75rem;
    }

    .footer-social-links .social-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .footer-social-links .social-icon svg {
        width: 18px;
        height: 18px;
    }
}

.footer-column p {
    line-height: 1.6;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

.footer-column:hover p {
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    position: relative;
}

.footer-bottom p {
    position: relative;
    display: inline-block;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-500), transparent);
}

.footer-bottom p::before {
    left: -40px;
}

.footer-bottom p::after {
    right: -40px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-column h4::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-column:last-child {
        border-bottom: none;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}

.program-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    width: 100%;
    height: 80px;
    max-height: 80px;
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.1), transparent);
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.program-art {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 0.5rem;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.program-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    overflow: hidden;
    flex-grow: 1;
}

.program-title {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    background: linear-gradient(135deg, var(--pink-500), var(--blue-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-time {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.program-info:hover .program-art {
    transform: scale(1.1) rotate(2deg);
}

@media (max-width: 480px) {
    .program-info {
        height: 70px;
        max-height: 70px;
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .program-art {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .program-title {
        font-size: 0.85rem;
    }

    .program-time {
        font-size: 0.75rem;
    }
}

@keyframes fadeInOut {
    0%, 85% {
        opacity: 1;
    }
    90%, 100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .program-info {
        padding: 0.5rem;
    }
    
    .program-art {
        width: 50px;
        height: 50px;
    }
    
    .program-title {
        font-size: 0.85rem;
    }
    
    .program-time {
        font-size: 0.75rem;
    }
}

.footer-column:nth-child(3) ul li:first-child {
    transition: opacity 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border-radius: 1rem;
    padding: 0;
    min-height: 80px;
    opacity: 1;
}

.footer-column:nth-child(3) ul li:first-child.fade-out {
    opacity: 0;
}

.footer-column:nth-child(3) ul li:not(:first-child) {
    display: none;
}

@supports (-webkit-touch-callout: none) {
    .album-art, .social-icon, .play-button, .program-art {
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .footer-social-links .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        -webkit-transform: translateY(-5px) scale(1.1);
    }
}

* {
  user-select: none;
}
*::selection {
  background: none;
}
*::-moz-selection {
  background: none;
}