@font-face {
    font-family: 'Parkinsans';
    src: url('font/Parkinsans.ttf') format('truetype');
}

@font-face {
    font-family: 'Poppins';
    src: url('font/Poppins.ttf') format('truetype');
}

:root {
    --bg-gradient: linear-gradient(135deg, #0D2E57 0%, #2B4563 50%, #24303E 100%);
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.12);
    --accent-pink: #ff0077;
    --accent-blue: #00d2ff;
    --text-main: #ffffff;
    --text-muted: #b0b0d0;
    --tempo-color: #00d4ff;
    --party-color: #02b000;
    --m8-color: #ff4500;
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Parkinsans', sans-serif;
    background: var(--bg-gradient) fixed;
    color: var(--text-main);
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
}

.container { 
    max-width: 1200px;
    width: 90%;
    margin: 0 auto; 
    padding: 20px 0; 
}

.espaciador { 
    height: 40px; 
}

header {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 5%;   
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    min-height: 70px;
}

#header, .sidebar { 
    display: none; 
} 

.logo-header { 
    padding: 10px 20px; 
    display: inline-flex; 
    align-items: center; 
    transition: all 0.3s ease; 
}

.logo-top { 
    flex: 1; 
    display: flex; 
    justify-content: flex-start; 
    order: 1; 
}

.logo-top img { 
    max-width: 140px; 
    height: auto; 
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); 
}

.listeners { 
    background: rgba(255, 255, 255, 0.08); 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    padding: 10px 24px; 
    border-radius: 50px; 
    display: inline-flex; 
    align-items: center; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(5px); 
    transition: all 0.3s ease; 
    max-width: 100%; 
}

.listeners span { 
    color: #e0e0e0; 
    font-size: 16px; 
    font-weight: 500; 
    letter-spacing: 0.5px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    white-space: nowrap; 
}

.listeners span::before { 
    display: inline-block; 
}

#nlisten { 
    color: #00ffaa; 
    font-weight: 700; 
    text-shadow: 0 0 10px rgba(0, 255, 170, 0.4); 
    display: inline; 
}

.header-slogan {
    flex: 2; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    order: 2;
    font-family: 'Parkinsans', sans-serif; 
    font-weight: 800; 
    text-transform: uppercase; 
    font-size: 0.8em; 
    letter-spacing: 1px;
    animation: fadeSlogan 15s ease-in-out infinite;
}

.header-slogan span { 
    display: block; 
    background: #00D4D4; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

@keyframes fadeSlogan {
    0%, 100% { opacity: 0; transform: translateY(5px); filter: blur(3px); }
    15%, 85% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.puq-widget { 
    flex: 1; 
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 10px; 
    order: 3; 
}

.puq-time {
    font-weight: 800; 
    font-size: 0.9em; 
    color: #fff; 
    letter-spacing: 1px; 
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 10px;    
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(8px); 
    border: 1px solid var(--glass-border); 
    border-radius: 50px; 
    padding: 8px 15px;
}

.puq-time:hover { 
    border-color: var(--accent-blue); 
    background: rgba(255, 255, 255, 0.1); 
}

.section-title, .subtitulo-destacado {
    font-size: 1.6em; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin: 0 0 20px 0; 
    display: flex; 
    align-items: center; 
    gap: 15px;
}

.subtitulo-destacado { 
    text-align: center; 
    color: #baccd6; 
    font-family: 'Parkinsans', sans-serif; 
}

.section-title::after { 
    content: ''; 
    flex: 1; 
    height: 2px; 
    background: linear-gradient(to right, var(--accent-pink), transparent); 
}

.subtitulo-destacado::after { 
    content: ''; 
    flex: 1; 
    height: 2px; 
    background: linear-gradient(to right, var(--accent-blue), transparent); 
}

.labels-grid-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
    gap: 15px; 
    padding: 10px 0; 
}

.labels-card {
    font-family: 'Parkinsans', sans-serif; 
    display: flex; 
    align-items: center; 
    background: rgba(255, 255, 255, 0.07); 
    border-radius: 8px; 
    padding: 10px;
    transition: all 0.2s; 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.labels-card:hover {
    background: rgba(255, 255, 255, 0.12); 
    transform: translateY(-5px); 
    border-color: var(--accent-blue); 
    box-shadow: 0 10px 25px rgba(0,210,255,0.1);
}

.labels-cover img { 
    width: 60px; 
    height: 60px; 
    border-radius: 4px; 
    margin-right: 12px; 
    object-fit: cover; 
}

.labels-content { 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
}

.labels-name { 
    font-size: 1rem; 
    font-weight: bold; 
    color: #00d4ff; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
    overflow: hidden; 
}

.labels-gen { 
    font-size: .8rem; 
    color: #ccc; 
}

.labels-info { 
    font-size: 0.75rem; 
    margin-top: 5px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.labels-info a {
    color: rgb(1, 255, 149); 
    text-decoration: none; 
    font-family: 'Parkinsans', sans-serif; 
    transition: color 0.3s ease;
    display: inline-block; 
    border: 1px solid rgba(255,255,255,0.1); 
    padding: 2px 8px; 
    border-radius: 3px; 
    background: rgba(255,255,255,0.03);
}

.labels-info a:hover { 
    color: #ffffff; 
    cursor: pointer; 
    border-color: var(--accent-pink); 
    background: rgb(255, 83, 160); 
}

.schedule-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 15px; 
}

.schedule-card { 
    background: var(--glass-bg); 
    backdrop-filter: blur(5px); 
    border: 1px solid var(--glass-border); 
    border-radius: 16px; 
    padding: 20px; 
    transition: 0.4s ease; 
    position: relative; 
}

.schedule-card:hover { 
    background: rgba(255,255,255,0.12); 
    transform: translateY(-5px); 
    border-color: var(--accent-blue); 
    box-shadow: 0 10px 25px rgba(0,210,255,0.1); 
}

.tschedule-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
    gap: 20px; 
}

.tschedule-card {
    position: relative; 
    backdrop-filter: blur(5px); 
    border: 1px solid var(--glass-border); 
    border-radius: 16px; 
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    cursor: pointer;    
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--bg-show); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    z-index: 1; 
}

.tschedule-card:hover:not(.is-expanded) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), var(--bg-show); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); 
    border-color: var(--accent-blue); 
    transform: scale(1.05); 
    z-index: 10; 
}

.tschedule-card.is-expanded {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    margin: auto; 
    width: 100vw; 
    max-width: 400px; 
    height: 80vh;      
    border-radius: 0; 
    z-index: 9999; 
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), var(--bg-show); 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9); 
    transform: none; 
}

.tschedule-card .close-card-btn {
    display: none; 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    width: 35px; 
    height: 35px; 
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff; 
    border-radius: 50%; 
    text-align: center; 
    line-height: 32px; 
    font-size: 24px; 
    font-weight: bold; 
    cursor: pointer; 
    z-index: 10; 
    transition: background-color 0.2s ease;
}

.tschedule-card .close-card-btn:hover { 
    background-color: rgba(255, 0, 0, 0.8); 
}

.tschedule-card.is-expanded .close-card-btn { 
    display: block; 
}

.now-card.if-live, .schedule-card.is-live { 
    background: linear-gradient(145deg, rgba(255,0,119,0.15), rgba(0,210,255,0.05)); 
}

.now-card.if-live { 
    border-color: #C90000; 
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2); 
    border-radius: 15px; 
}

.schedule-card.is-live { 
    border-color: var(--accent-pink); 
    box-shadow: 0 10px 30px rgba(255,0,119,0.2); 
}

.live-now, .live-tag { 
    color: white; 
    font-size: 0.6em; 
    padding: 4px 10px; 
    border-radius: 50px; 
    font-weight: 900; 
    float: right; 
}

.live-now { 
    background: #C90000; 
    animation: pulse-play 2s infinite; 
}

.live-tag { 
    background: var(--accent-pink); 
    animation: pulse-red 2s infinite; 
}

@keyframes pulse-play { 
    0% { box-shadow: 0 0 0 0 rgba(0, 251, 165, 0.7); } 
    70% { box-shadow: 0 0 0 10px rgba(0,251,165,0); } 
    100% { box-shadow: 0 0 0 0 rgba(0,251,165,0); } 
}

@keyframes pulse-red { 
    0% { box-shadow: 0 0 0 0 rgba(255,0,119,0.7); } 
    70% { box-shadow: 0 0 0 10px rgba(255,0,119,0); } 
    100% { box-shadow: 0 0 0 0 rgba(255,0,119,0); } 
}

.time { 
    color: var(--accent-blue); 
    font-weight: 800; 
    font-size: 1.1em; 
    display: block; 
    margin-bottom: 5px; 
}

.show-name, .dj-name, .week-time { 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .8); 
}

.show-name { 
    font-size: 1em; 
    font-weight: bold; 
    color: #fff; 
}

.dj-name { 
    color: var(--text-muted); 
    font-size: 0.85em; 
    margin-top: 4px; 
}

.week-time { 
    color: var(--text-muted); 
    font-size: 0.75em; 
    margin-top: 2px; 
}

.portada { 
    display: flex; 
    width: 100%; 
    justify-content: center; 
    align-items: center; 
    background: transparent; 
}

.portada img { 
    min-width: 150px; 
    max-width: 350px; 
    border-radius: 24px; 
    box-shadow: 1px 1px 3px 3px rgba(0,0,0,0.5); 
    border: 0; 
    object-fit: cover; 
}

.news-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
}

.news-card { 
    background: var(--glass-bg); 
    border-radius: 16px; 
    overflow: hidden; 
    border: 1px solid var(--glass-border); 
    display: flex; 
    flex-direction: column; 
    transition: all 0.4s ease; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}

.news-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--accent-blue); 
    box-shadow: 0 12px 30px rgba(0,210,255,0.15); 
}

.news-image-wrapper { 
    width: 100%; 
    height: 180px; 
    overflow: hidden; 
    position: relative; 
}

.news-image-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

.news-card:hover .news-image-wrapper img { 
    transform: scale(1.08); 
}

.news-content { 
    padding: 20px; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}

.news-title { 
    font-size: 1.2em; 
    font-weight: 800; 
    color: #fff; 
    text-decoration: none; 
    display: block; 
    margin-bottom: 12px; 
    line-height: 1.3; 
    transition: color 0.3s; 
}

.news-title:hover { 
    color: var(--accent-pink); 
}

.news-snippet { 
    color: var(--text-muted); 
    font-size: 0.9em; 
    line-height: 1.5; 
    margin-bottom: 15px; 
    display: -webkit-box; 
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
}

.news-read-more { 
    margin-top: auto; 
    font-size: 0.85em; 
    font-weight: 800; 
    color: var(--accent-blue); 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: inline-flex; 
    align-items: center; 
    gap: 5px; 
    transition: color 0.3s; 
}

.news-read-more:hover { 
    color: #fff; 
}

.single-post-container { 
    background: var(--glass-bg); 
    backdrop-filter: blur(10px); 
    border: 1px solid var(--glass-border); 
    border-radius: 16px; 
    padding: 40px; 
    margin-top: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); 
}

.single-post-title { 
    font-size: 2.2em; 
    font-weight: 900; 
    color: var(--accent-blue); 
    margin-bottom: 10px; 
    line-height: 1.2; 
}

.single-post-date { 
    color: var(--accent-pink); 
    font-size: 0.9em; 
    font-weight: 700; 
    margin-bottom: 30px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.single-post-body { 
    font-size: 1.1em; 
    line-height: 1.8; 
    color: #e0e0e0; 
}

.single-post-body img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px; 
    margin: 20px 0; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}

.single-post-body a { 
    color: var(--accent-blue); 
    text-decoration: none; 
    font-weight: 600; 
}

.single-post-body a:hover { 
    text-decoration: underline; 
    color: var(--accent-pink); 
}

.back-btn { 
    display: inline-block; 
    margin-top: 40px; 
    padding: 12px 24px; 
    background: transparent; 
    border: 2px solid var(--accent-blue); 
    color: #fff; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 700; 
    transition: all 0.3s; 
}

.back-btn:hover { 
    background: var(--accent-blue); 
    color: #000; 
    transform: translateX(-5px); 
}


.player-container { 
    width: 100%; 
    height: 70px; 
    border-radius: 15px; 
    border: none; 
    overflow: hidden; 
}

.now-card { 
    position: relative; 
    overflow: hidden; 
    border-radius: 16px; 
    padding: 20px 10px; 
}

.card-bg-cover { 
    position: absolute; 
    inset: 0; 
    z-index: 1; 
    background: url('img/artwork.png') center / cover no-repeat; 
    filter: blur(40px) saturate(140%); 
    transform: scale(1.3); 
    transition: background-image 0.5s ease; 
}

.card-bg-overlay { 
    position: absolute; 
    inset: 0; 
    z-index: 2; 
    background: linear-gradient(180deg, rgba(8, 10, 15, 0.5) 0%, rgba(8, 10, 15, 0.8) 100%); 
}

.now-card-content { 
    position: relative; 
    z-index: 3; 
    width: 100%; 
}

#channels { 
    display: flex; 
    gap: 10px; 
    justify-content: center; 
    margin-bottom: 20px; 
}

#channels div {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    min-height: 45px; 
    padding: 10px 15px; 
    border-radius: 20px;
    background: var(--glass-bg); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    cursor: pointer; 
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

#channels div:hover { 
    background: rgba(255, 255, 255, 0.15); 
    border-color: var(--accent-blue); 
}

#channels div#btn-tempo.active-channel { 
    background: var(--tempo-color); 
    color: #000; 
    font-weight: 700; 
    box-shadow: 0 0 20px var(--tempo-color); 
    border-color: var(--tempo-color); 
}

#channels div#btn-party.active-channel { 
    background: var(--party-color); 
    color: #000; 
    font-weight: 700; 
    box-shadow: 0 0 20px var(--party-color); 
    border-color: var(--party-color); 
}

#channels div#btn-m8.active-channel { 
    background: var(--m8-color); 
    color: #fff; 
    font-weight: 700; 
    box-shadow: 0 0 20px var(--m8-color); 
    border-color: var(--m8-color); 
}

.schedule-nav { 
    display: flex; 
    justify-content: center; 
    background: rgba(255,255,255,0.12); 
    padding: 12px; 
    border-radius: 50px; 
    margin: 30px auto; 
    gap: 10px; 
    flex-wrap: wrap; 
    max-width: fit-content; 
    border: 1px solid #333; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
}

.nav-item { 
    background: transparent; 
    border: none; 
    color: #baccd6; 
    padding: 12px 25px; 
    cursor: pointer; 
    font-weight: 800; 
    font-size: 13px; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border-radius: 40px; 
    position: relative; 
    overflow: hidden; 
}

.nav-item:hover { 
    color: #ffffff; 
    background: rgba(92, 225, 255, 0.8); 
}

.nav-item.active { 
    color: #000; 
    background: var(--accent-blue); 
    box-shadow: 0 0 20px rgba(114, 198, 214, 0.4); 
    transform: scale(1.05); 
}

.nav-item.active::after { 
    content: ""; 
    position: absolute; 
    bottom: 5px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 4px; 
    height: 4px; 
    background: #000; 
    border-radius: 50%; 
}

.day-content { 
    display: none; 
}

.requirements-container { 
    padding: 20px; 
    max-width: 1000px; 
    margin: auto; 
}

.requirements-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin-bottom: 40px; 
}

.req-card { 
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 16px; 
    padding: 20px; 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    transition: transform 0.3s ease, border-color 0.3s ease; 
}

.req-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent-pink); 
    background: rgba(255, 255, 255, 0.06); 
}

.req-icon { 
    font-size: 1.8rem; 
    background: rgba(0, 212, 255, 0.1); 
    padding: 10px; 
    border-radius: 12px; 
    line-height: 1; 
}

.req-info strong { 
    display: block; 
    font-size: 1.1rem; 
    color: var(--accent-blue); 
    margin-bottom: 5px; 
}

.req-info span { 
    font-size: 0.9rem; 
    color: #ddd; 
    line-height: 1.4; 
}

.freq-tags { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-top: 10px; 
}

.tag { 
    background: rgba(255, 0, 127, 0.15); 
    border: 1px solid rgba(255, 0, 127, 0.3); 
    color: #fff; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: 500; 
}

.contact-box { 
    text-align: center; 
    background: rgba(0, 0, 0, 0.3); 
    padding: 30px; 
    border-radius: 20px; 
    border: 1px dashed rgba(0, 212, 255, 0.3); 
}

.contact-box form { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    text-align: left; 
    margin-top: 20px; 
}

.form-group { 
    display: flex; 
    flex-direction: column; 
}

.form-group label { 
    color: #00d4ff; 
    margin-bottom: 5px; 
    font-weight: bold; 
}

.form-group input, .form-group textarea { 
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid #444; 
    border-radius: 5px; 
    padding: 10px; 
    color: white; 
    font-family: inherit; 
}

.form-group input:focus, .form-group textarea:focus { 
    border-color: #00d4ff; 
    outline: none; 
}

.btn-email { 
    display: inline-block; 
    background: linear-gradient(45deg, #ff007f, #00d4ff); 
    color: white !important; 
    padding: 12px 30px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.3); 
    transition: all 0.3s ease; 
    cursor: pointer; 
    border: none; 
}

.btn-email:hover { 
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4); 
}

.cc-window.cc-floating { 
    position: fixed !important; 
    left: 50% !important; 
    top: 50% !important; 
    transform: translate(-50%, -50%) !important; 
    max-width: 400px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.custom-cookie-banner { 
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 90%; 
    max-width: 400px; 
    background: rgba(0, 0, 0, 0.85); 
    color: #ffffff; 
    padding: 30px; 
    border-radius: 15px; 
    z-index: 9999; 
    display: none; 
    text-align: center; 
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8); 
    border: 1px solid rgba(241, 214, 0, 0.4); 
    backdrop-filter: blur(5px); 
}

.cookie-content p { 
    font-size: 15px; 
    line-height: 1.5; 
    margin-bottom: 20px; 
    font-family: sans-serif; 
}

.cookie-content a { 
    color: #f1d600; 
    text-decoration: none; 
    font-weight: bold; 
}

.cookie-btn { 
    background: transparent; 
    color: #f1d600; 
    border: 2px solid #f1d600; 
    padding: 10px 25px; 
    font-size: 14px; 
    font-weight: bold; 
    text-transform: uppercase; 
    cursor: pointer; 
    border-radius: 5px; 
    transition: all 0.3s ease; 
}

.cookie-btn:hover { 
    background: #f1d600; 
    color: #000; 
}

.custom-pwa-banner { 
    position: fixed; 
    bottom: 90px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: #0f0c29; 
    border: 2px solid #00d4ff; 
    border-radius: 12px; 
    padding: 20px; 
    width: 90%; 
    max-width: 400px; 
    box-shadow: 0 10px 25px rgba(0,0,0,.5); 
    z-index: 99999; 
    font-family: 'Parkinsans', sans-serif; 
    color: #fff; 
    text-align: center; 
}

.pwa-popup-logo { 
    width: 64px; 
    height: 64px; 
    margin-bottom: 10px; 
}

.pwa-content h3 { 
    margin: 5px 0; 
    color: #00d4ff; 
    font-size: 1.2rem; 
}

.pwa-content p { 
    font-size: .9rem; 
    color: #ccc; 
    margin-bottom: 15px; 
    line-height: 1.4; 
}

.pwa-actions { 
    display: flex; 
    justify-content: space-around; 
    gap: 10px; 
}

.pwa-btn-primary, .pwa-btn-secondary { 
    padding: 10px 20px; 
    border-radius: 6px; 
    border: none; 
    cursor: pointer; 
    font-weight: 700; 
    font-size: .9rem; 
    flex: 1; 
}

.pwa-btn-primary { 
    background: #00d4ff; 
    color: #0f0c29; 
}

.pwa-btn-secondary { 
    background: rgba(255, 255, 255, .1); 
    color: #fff; 
}

.error-wrapper { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    min-height: 70vh; 
    padding: 40px 20px; 
}

.error-code-glitch { 
    font-family: 'Parkinsans', 'Inter', sans-serif; 
    font-size: clamp(6rem, 15vw, 10rem); 
    font-weight: 900; 
    line-height: 1; 
    margin: 0; 
    background: linear-gradient(45deg, var(--m8-color), var(--accent-pink)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.3)); 
    position: relative; 
    animation: pulse-glow-503 3s infinite ease-in-out; 
}

.error-visual-pulse { 
    width: 120px; 
    height: 120px; 
    background: rgba(255, 70, 0, 0.1); 
    border: 2px solid var(--m8-color); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 30px; 
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.2); 
    position: relative; 
}

.error-visual-pulse::after { 
    content: ''; 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    border: 1px solid var(--accent-pink); 
    border-radius: 50%; 
    animation: wave-expand 2.5s infinite linear; 
}

.error-visual-pulse svg { 
    width: 50px; 
    height: 50px; 
    fill: var(--m8-color); 
}

.error-message-title { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    font-weight: 800; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #ffffff; 
}

.error-description { 
    color: var(--text-muted); 
    font-size: 1.1rem; 
    max-width: 530px; 
    line-height: 1.6; 
    margin-bottom: 40px; 
}

.error-actions { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.error-wrapper-503 .error-code-glitch { 
    background: linear-gradient(45deg, var(--m8-color), var(--accent-pink)); 
}

.error-wrapper-503 .error-visual-pulse { 
    border-color: var(--m8-color); 
}

.btn-secondary { 
    display: inline-block; 
    padding: 12px 28px; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid var(--glass-border); 
    color: #fff; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 700; 
    transition: all 0.3s ease; 
}

.btn-secondary:hover { 
    background: rgba(255, 255, 255, 0.12); 
    border-color: var(--text-muted); 
    transform: translateY(-2px); 
}

.btn-retry { 
    display: inline-block; 
    padding: 12px 28px; 
    background: linear-gradient(45deg, var(--m8-color), var(--accent-pink)); 
    color: #fff; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 700; 
    transition: all 0.3s ease; 
    border: none; 
    cursor: pointer; 
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3); 
    font-family: inherit; 
}

.btn-retry:hover { 
    transform: scale(1.05); 
    box-shadow: 0 6px 20px rgba(255, 0, 119, 0.4); 
}

@keyframes pulse-glow-503 { 
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.2)); } 
    50% { filter: drop-shadow(0 0 40px rgba(255, 0, 119, 0.4)); } 
}

@keyframes wave-expand { 
    0% { transform: scale(1); opacity: 0.8; } 
    100% { transform: scale(1.5); opacity: 0; } 
}

.main-footer { 
    width: 95%; 
    margin: 60px auto 0 auto; 
    padding-top: 40px;	
	padding-bottom: 10px;
}

.footer-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
    margin-bottom: 40px; 
}

.footer-card { 
    font-family: 'Parkinsans', sans-serif; 
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 20px; 
    border-radius: 8px; 
    transition: all 0.3s ease; 
}

.footer-card:hover { 
    border-color: rgba(2, 176, 0, 0.5); 
    background: rgba(2, 176, 0, 0.05); 
}

.footer-card-title { 
    font-family: 'Parkinsans', sans-serif; 
    color: #fff; 
    font-size: 1.1rem; 
    font-weight: bold; 
    margin-bottom: 12px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.footer-card-content p { 
    font-size: 0.9rem; 
    line-height: 1.5; 
    color: rgba(255, 255, 255, 0.8); 
}

.social-flex { 
    display: flex; 
    gap: 20px; 
}

.social-flex a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 0.9rem; 
    transition: 0.3s; 
}

.social-flex a:hover { 
    color: #02b000; 
}

.footer-copyright { 
    width: 100%; 
    text-align: center; 
    padding: 20px 0; 
    background: rgba(0, 0, 0, 0.3); 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 20px; 
}

.footer-copyright p { 
    font-size: .9rem; 
    color: rgba(209, 209, 209, 0.4); 
    margin: 0; 
    font-family: 'Parkinsans', sans-serif; 
}

.logos-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px; 
    align-items: center; 
    justify-items: center; 
    margin-top: 15px; 
}

.logos-grid img { 
    max-width: 100%; 
    height: auto; 
    object-fit: contain; 
    transition: transform 0.3s ease, filter 0.3s ease; 
}

.logos-grid a:hover img { 
    transform: scale(1.05); 
    filter: brightness(1.2); 
}

/* Estilos responsivos para evento */
.social-link-img { 
    transition: transform 0.3s ease, filter 0.3s ease; 
    width: 80px; 
    height: auto; 
}

.social-link-img:hover { 
    transform: scale(1.1); 
    filter: drop-shadow(0 0 10px #ff007f); 
}

/* Tabla de Horarios y Schedule evento */
.schedule-container { 
    width: 100%; 
    max-width: 900px; 
    margin: 30px auto; 
    overflow-x: auto; 
    border-radius: 12px; 
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2); 
    background: rgba(15, 12, 41, 0.85); 
    backdrop-filter: blur(8px); 
    border: 1px solid rgba(0, 240, 255, 0.3); 
}

.event-table { 
    width: 100%; 
    border-collapse: collapse; 
    font-family: inherit; 
    color: #e0e0e0; 
    text-align: left; 
}

.event-table th, .event-table td { 
    padding: 14px 18px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
}

.event-table thead th { 
    background: linear-gradient(90deg, #1f1c2c, #928dab); 
    color: #00f0ff; 
    text-transform: uppercase; 
    font-size: 0.9rem; 
    letter-spacing: 1.5px; 
    border-bottom: 2px solid #00f0ff; 
}

.event-table .date-header { 
    background: linear-gradient(90deg, #8a2387, #e94057, #f27121); 
    color: #ffffff; 
    font-size: 1.1rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    text-shadow: 0 0 8px rgba(0,0,0,0.6); 
    padding: 12px 18px; 
}

.event-table tbody tr { 
    transition: all 0.3s ease; 
}

.event-table tbody tr:hover { 
    background-color: rgba(0, 240, 255, 0.1); 
}

.artist-name { 
    font-weight: 600; 
    color: #ffffff; 
}

.time-cell { 
    font-family: 'Courier New', Courier, monospace; 
    color: #00f0ff; 
    font-weight: bold; 
    white-space: nowrap; 
}

/* Modales e Imágenes Interactivas evento */
.zoomable-img { 
    cursor: pointer; 
    transition: transform 0.3s ease, filter 0.3s ease; 
}

.zoomable-img:hover { 
    transform: scale(1.01); 
    filter: brightness(1.1); 
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4); 
}

.modal-overlay { 
    display: none; 
    position: fixed; 
    z-index: 9999; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(5px); 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.modal-overlay.active { 
    display: flex; 
    opacity: 1; 
}

.modal-content { 
    max-width: 90%; 
    max-height: 90vh; 
    border-radius: 8px; 
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5); 
    border: 2px solid #00f0ff; 
    object-fit: contain; 
}

.close-btn { 
    position: absolute; 
    top: 20px; 
    right: 35px; 
    color: #fff; 
    font-size: 35px; 
    font-weight: bold; 
    cursor: pointer; 
    background: rgba(0, 0, 0, 0.6); 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    line-height: 1; 
    border: 1px solid #ff007f; 
    box-shadow: 0 0 10px #ff007f; 
    transition: all 0.3s ease; 
    user-select: none; 
}

.close-btn:hover { 
    color: #ff007f; 
    background: #ffffff; 
    transform: scale(1.1); 
}

@media (max-width: 1280px) {
header { min-height: 50px; font-size: 0.8em; padding: 1px 1%; }
.time { font-size: .9em; margin-bottom: 5px; }
.show-name { font-size: .8em; }
.dj-name { font-size: 0.85em; margin-top: 4px; }
.puq-widget, .puq-widget span { font-size: 1em; }
.player-container { width: 100%; height: 40px; border-radius: 10px; border: none; overflow: hidden; }
.player-bar { bottom: 10px; height: 55px; }
#tschedule { font-size: 0.8em; }
.schedule-nav { border-radius: 15px; padding: 8px; gap: 5px; }
.nav-item { padding: 10px 7px; font-size: .7em; }
.tschedule-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
}

@media (max-width: 768px) {
    .container { width: 95%; padding: 10px 0; }
    .single-post-title { font-size: 1.4rem; }
    .labels-grid-container, .logos-grid { grid-template-columns: 1fr; }
    .logos-grid { gap: 25px; }
    .footer-container { display: none; }
    .lutitle-span { font-size: 18px !important; color: white; }
}

@media (max-width: 600px) { 
    .event-table th, .event-table td { 
        padding: 10px 12px; 
        font-size: 0.85rem; 
    } 
}

@media (max-width: 384px) {
    .logo-header { padding: 10px 5px; display: inline-flex; align-items: center; }
    .listeners { padding: 8px 12px; }
    .listeners span { font-size: 13px; gap: 4px; }
    .header-slogan span { display: none; }
    .puq-widget { justify-content: center; padding: 5px; }
    .puq-widget span { display: none; }
    .puq-time { font-weight: bold; font-size: 1.1rem; padding: 6px 12px; }
}