/* Streametx - Deportes - ESPN Events with VE Time */

/* Category group headers */
.category-group-header {
    font-size: 15px; font-weight: 800; color: var(--texto);
    margin: 18px 0 10px; padding: 8px 0;
    border-bottom: 2px solid var(--accent);
    display: flex; align-items: center; gap: 8px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.category-group-header svg { color: var(--accent); }

/* Tabs */
.deportes-tabs {
    display: flex; gap: 6px; overflow-x: auto;
    padding-bottom: 4px; margin-bottom: 16px; scrollbar-width: none;
}
.deportes-tabs::-webkit-scrollbar { display: none; }
.deportes-tab {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: var(--radius-pill);
    font-size: 12px; font-weight: 700; cursor: pointer;
    border: 1px solid var(--borde); background: transparent;
    color: var(--texto-secondary); transition: all var(--transition);
    white-space: nowrap; flex-shrink: 0; font-family: var(--font);
}
.deportes-tab:hover { color: var(--texto); border-color: var(--borde-hover); }
.deportes-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 800; }

/* Section headers */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-title { font-size: 14px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.section-title svg { width: 16px; height: 16px; fill: var(--accent); }
.section-title-sub { font-size: 11px; color: var(--texto-dim); font-weight: 500; }
.section-expand { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--accent); cursor: pointer; background: none; border: none; font-family: var(--font); }
.section-expand:hover { filter: brightness(1.2); }
.section-divider { width: 100%; height: 1px; background: var(--borde); margin: 20px 0; }

/* Date header */
.date-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding: 10px 14px; background: rgba(229, 9, 20, 0.08); border-radius: var(--radius-sm); border-left: 3px solid var(--accent); }
.date-header-day { font-size: 14px; font-weight: 800; color: var(--accent); text-transform: uppercase; }
.date-header-date { font-size: 12px; color: var(--texto-muted); font-weight: 500; }

/* ── EVENT CARDS ── */
.ev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }

.ev-card {
    background: var(--bg-card); border: 1px solid var(--borde);
    border-radius: var(--radius-sm); padding: 10px 12px;
    transition: all var(--transition); cursor: pointer;
}
.ev-card:hover { border-color: var(--borde-hover); }
.ev-card:active { transform: scale(0.98); }
.ev-card.ev-live { border-color: rgba(229,9,20,0.4); background: linear-gradient(135deg, rgba(229,9,20,0.06) 0%, var(--bg-card) 100%); }
.ev-card.ev-finished { opacity: 0.6; }

.ev-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.ev-liga { font-size: 10px; font-weight: 600; color: var(--texto-muted); display: flex; align-items: center; gap: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 55%; }
.ev-liga svg { width: 10px; height: 10px; flex-shrink: 0; }
.ev-status { font-size: 10px; font-weight: 700; }

/* Matchup layout */
.ev-matchup { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 4px 0; }
.ev-team { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; min-width: 0; }
.ev-team-logo { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.ev-team-name { font-size: 10px; font-weight: 700; color: var(--texto); text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }
.ev-center { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 4px; flex-shrink: 0; }
.ev-title-only { font-size: 12px; font-weight: 700; padding: 4px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Team logo */
.team-logo-img { object-fit: contain; border-radius: 50%; background: rgba(255,255,255,0.06); padding: 2px; }
.team-logo-ph { border-radius: 50%; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: var(--texto-dim); font-size: 10px; font-weight: 800; }

/* Score */
.vs-text { font-size: 13px; font-weight: 900; color: var(--texto-dim); }
.score-text { font-size: 16px; font-weight: 900; color: var(--texto); letter-spacing: 1px; }
.score-text.score-live { color: var(--accent); }

/* Status badges */
.status-finished { color: var(--texto-dim); font-size: 11px; display: flex; align-items: center; gap: 4px; }
.status-upcoming { color: var(--accent); font-weight: 700; font-size: 13px; display: flex; align-items: center; gap: 4px; }
.status-starting { color: #fbbf24; font-weight: 700; font-size: 12px; display: flex; align-items: center; gap: 4px; animation: pulse-glow 1.5s infinite; }

/* Countdown block */
.countdown-block {
    margin-top: 10px; padding: 10px 14px;
    background: rgba(229,9,20,0.06); border: 1px solid rgba(229,9,20,0.15);
    border-radius: var(--radius-sm); font-size: 12px; color: var(--texto-secondary);
}
.countdown-block.starting { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.2); }
.countdown-label { margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.countdown-label svg { width: 14px; height: 14px; }
.countdown-timer { font-size: 13px; font-weight: 700; color: var(--accent); }
.countdown-timer strong { font-family: 'JetBrains Mono', 'Courier New', monospace; letter-spacing: 1px; }

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Channel badges */
.ev-channels { display: flex; gap: 3px; margin-top: 6px; flex-wrap: wrap; padding-top: 6px; border-top: 1px solid var(--borde); }
.ch-badge {
    display: inline-flex; align-items: center; gap: 3px;
    padding: 3px 8px; border-radius: 4px;
    font-size: 9px; font-weight: 700; cursor: default;
    transition: all var(--transition); font-family: var(--font); border: none;
    line-height: 1.3;
}
.ch-badge.ch-playable {
    background: rgba(229,9,20,0.12); border: 1px solid rgba(229,9,20,0.25);
    color: var(--accent); cursor: pointer;
}
.ch-badge.ch-playable:hover { background: var(--accent); color: #fff; }
.ch-badge.ch-broadcast { background: rgba(255,255,255,0.06); border: 1px solid var(--borde); color: var(--texto-muted); }
.ch-badge.ch-disabled {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.25); cursor: not-allowed; opacity: 0.5;
    pointer-events: none; user-select: none;
}

/* Compact card for horizontal scroll */
.ev-card-compact {
    min-width: 220px; flex-shrink: 0;
    background: var(--bg-card); border: 1px solid var(--borde);
    border-radius: var(--radius-md); padding: 14px;
    cursor: pointer; transition: all var(--transition);
}
.ev-card-compact:hover { border-color: var(--accent); }
.ev-compact-time { margin-bottom: 6px; }
.ev-compact-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--texto); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ev-compact-liga { font-size: 11px; color: var(--texto-dim); }

/* Sports channels grid */
.sports-channels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-bottom: 20px; }
.sport-channel-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 10px; background: var(--bg-card); border: 1px solid var(--borde); border-radius: var(--radius-md); cursor: pointer; transition: all var(--transition); text-align: center; }
.sport-channel-card:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.sport-channel-card:active { transform: scale(0.97); }
.sport-channel-logo { width: 48px; height: 48px; border-radius: var(--radius-sm); object-fit: contain; background: rgba(255,255,255,0.04); padding: 4px; }
.sport-channel-logo-placeholder { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; }
.sport-channel-name { font-size: 11px; font-weight: 700; color: var(--texto-secondary); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Results */
.results-league-header { font-size: 16px; font-weight: 800; color: var(--texto); margin: 16px 0 10px; display: flex; align-items: center; gap: 8px; }

/* Search & filter pills (shared) */
.search-bar { position: relative; margin-bottom: 12px; }
.search-bar input { width: 100%; padding: 10px 10px 10px 38px; background: var(--bg-card); border: 1px solid var(--borde); border-radius: var(--radius-sm); color: var(--texto); font-size: 13px; font-family: var(--font); outline: none; box-sizing: border-box; }
.search-bar input:focus { border-color: var(--accent); }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--texto-dim); }
.filter-pills { display: flex; gap: 6px; overflow-x: auto; margin-bottom: 14px; scrollbar-width: none; padding-bottom: 2px; }
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pill { padding: 6px 14px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; border: 1px solid var(--borde); background: transparent; color: var(--texto-secondary); cursor: pointer; white-space: nowrap; font-family: var(--font); transition: all var(--transition); display: flex; align-items: center; gap: 4px; }
.filter-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Offline */
.offline-screen { position: fixed; inset: 0; z-index: 99999; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.offline-inner { text-align: center; padding: 40px; }

/* Responsive */
@media (max-width: 480px) {
    .ev-grid { grid-template-columns: 1fr; gap: 6px; }
    .sports-channels-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .ev-team-logo { width: 26px; height: 26px; }
    .ev-team-name { font-size: 9px; }
    .score-text { font-size: 14px; }
    .ev-card { padding: 8px 10px; }
    .ev-liga { font-size: 9px; }
    .ev-status { font-size: 9px; }
}
@media (min-width: 481px) and (max-width: 768px) {
    .ev-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (min-width: 769px) {
    .sports-channels-grid { grid-template-columns: repeat(5, 1fr); }
    .ev-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ── HERO SECTION ── */
.hero-section {
    position: relative; border-radius: var(--radius); overflow: hidden;
    margin-bottom: 20px; min-height: 260px;
    background: linear-gradient(180deg, rgba(229,9,20,0.15) 0%, var(--bg) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 32px 20px;
}
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(229,9,20,0.12) 0%, rgba(11,17,24,0.95) 60%); z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center 30%, rgba(229,9,20,0.1), transparent 70%); }
.hero-content { position: relative; z-index: 1; }
.hero-vs { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 16px; }
.hero-team { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-team-logo { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,0.12); overflow: hidden; }
.hero-team-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.hero-team-name { font-size: 11px; font-weight: 700; color: var(--texto-secondary); text-transform: uppercase; max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-vs-text { font-size: 18px; font-weight: 900; color: var(--texto-dim); }
.hero-label { display: inline-flex; align-items: center; gap: 6px; padding: 6px 18px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); font-size: 12px; font-weight: 600; color: var(--texto); margin-bottom: 10px; }
.hero-title { font-size: 20px; font-weight: 900; line-height: 1.25; margin-bottom: 6px; }
.hero-subtitle { font-size: 13px; color: var(--texto-muted); margin-bottom: 20px; max-width: 320px; }
.hero-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 36px; border-radius: var(--radius-pill); background: var(--accent); border: none; color: #fff; font-size: 14px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: all var(--transition); gap: 6px; }
.hero-btn:hover { filter: brightness(1.15); transform: scale(1.02); }
.hero-countdown { font-size: 14px; font-weight: 700; color: var(--accent); }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 4px; }
.hero-slide { display: none; animation: fadeIn 0.5s ease; }
.hero-slide.active { display: block; }
.hero-slide .hero-section { margin-bottom: 0; }
.hero-dots { display: flex; justify-content: center; gap: 6px; padding: 8px 0 12px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s ease; }
.hero-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

/* ── H-SCROLL ── */
.h-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.h-scroll::-webkit-scrollbar { display: none; }

/* ── OFFLINE ── */
.offline-screen { position: fixed; inset: 0; z-index: 99999; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.offline-inner { text-align: center; padding: 40px; }

/* ── LIVE BADGE ── */
.live-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--radius-pill); background: rgba(229,9,20,0.15); color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.8);} }
.minute-badge { font-size: 11px; font-weight: 700; color: var(--accent); }

/* ── STATUS BADGES ── */
.status-finished { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--texto-dim); font-weight: 600; }
.status-upcoming { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--accent); font-weight: 700; }
.status-starting { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: #f59e0b; font-weight: 700; animation: pulse-glow 2s infinite; }
@keyframes pulse-glow { 0%,100%{opacity:1;} 50%{opacity:0.6;} }

/* ── SPORT CHANNELS WITH EPG ── */
.sport-ch-row {
    display: flex; align-items: stretch; gap: 14px;
    background: var(--bg-card); border: 1px solid var(--borde); border-radius: var(--radius-md);
    padding: 12px 14px; margin-bottom: 8px; cursor: pointer;
    transition: all var(--transition);
}
.sport-ch-row:hover { border-color: var(--accent); background: rgba(229,9,20,0.04); transform: translateY(-1px); }
.sport-ch-left { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 70px; flex-shrink: 0; }
.sport-ch-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 10px; }
.sport-ch-logo-ph { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: var(--texto-dim); }
.sport-ch-name { font-size: 10px; font-weight: 700; color: var(--texto); text-align: center; max-width: 75px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sport-ch-epg { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.sport-ch-current { padding: 6px 10px; background: rgba(229,9,20,0.08); border-radius: 8px; border-left: 3px solid var(--accent); }
.sport-ch-prog-title { font-size: 13px; font-weight: 700; color: var(--texto); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sport-ch-prog-time { font-size: 10px; color: var(--texto-dim); margin-top: 2px; }
.sport-ch-next { font-size: 11px; color: var(--texto-dim); padding: 3px 10px; display: flex; gap: 8px; }
.sport-ch-next-time { color: var(--accent); font-weight: 700; min-width: 40px; }
.sport-ch-no-epg { font-size: 12px; color: var(--texto-dim); display: flex; align-items: center; }

/* ── ADMIN EVENT ROW ── */
.admin-event-row {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px;
    background: var(--bg-card); border: 1px solid var(--borde); border-radius: var(--radius-md);
    margin-bottom: 6px; transition: all 0.2s;
}
.admin-event-row:hover { border-color: rgba(255,255,255,0.15); }
.opacity-dim { opacity: 0.45; }

/* ── SECTION HELPERS ── */
.section-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 0 8px; }
.section-title { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; }
.section-title-sub { font-size: 12px; color: var(--texto-dim); margin-top: 2px; }
.section-expand { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--accent); font-weight: 700; background: none; border: none; cursor: pointer; font-family: var(--font); }
.section-divider { height: 1px; background: var(--borde); margin: 8px 0 4px; }

/* ── COMPACT EVENT GRID (Home page — 2-column, high density) ── */
.ev-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
@media (max-width: 360px) {
    .ev-grid-compact { grid-template-columns: 1fr; }
}

.home-ev-card {
    background: var(--bg-card);
    border: 1px solid rgba(229,9,20,0.25);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.home-ev-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    opacity: 0.6;
}
.home-ev-card:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229,9,20,0.15);
}
.home-ev-card:active { transform: scale(0.98); }

.home-ev-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.home-ev-liga {
    font-size: 10px;
    font-weight: 700;
    color: var(--texto-dim);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.home-ev-matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.home-ev-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.home-ev-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255,255,255,0.06);
    padding: 1px;
}
.home-ev-abbr {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 800;
    color: var(--texto-dim);
}
.home-ev-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--texto);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.home-ev-score {
    font-size: 16px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 1px;
    flex-shrink: 0;
    padding: 0 4px;
}
.home-ev-vs {
    font-size: 11px;
    font-weight: 800;
    color: var(--texto-dim);
    flex-shrink: 0;
}
.home-ev-solo {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    padding: 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home-ev-period {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 4px;
}
.home-ev-channels {
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--texto-dim);
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid var(--borde);
}

/* ============================================
   NO SIGNAL / SIN SEÑAL — Premium States
   For live events without available channels
   ============================================ */

/* Card state: live but no channels */
.ev-card.ev-no-signal {
    border-color: rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.04) 0%, var(--bg-card) 100%);
    position: relative;
}
.ev-card.ev-no-signal::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 0 var(--radius-md) 0 0;
}

/* No signal badge (in channel badges area) */
.ch-badge.ch-no-signal {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: #f59e0b;
    font-weight: 700;
    animation: noSignalPulse 3s ease-in-out infinite;
    gap: 5px;
}
.ch-badge.ch-no-signal svg {
    color: #f59e0b;
}

/* Upcoming signal badge */
.ch-badge.ch-upcoming-signal {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #818cf8;
    font-weight: 600;
    gap: 5px;
}
.ch-badge.ch-upcoming-signal svg {
    color: #818cf8;
}

@keyframes noSignalPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.15); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(251, 191, 36, 0); }
}

/* ── No Signal Popup Card ── */
.no-signal-card {
    text-align: center;
    padding: 24px 20px;
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.06) 0%, rgba(251, 191, 36, 0.02) 100%);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.no-signal-card::before {
    content: '';
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.no-signal-icon {
    font-size: 36px;
    margin-bottom: 12px;
    animation: noSignalFloat 3s ease-in-out infinite;
    position: relative;
}
.no-signal-title {
    font-size: 16px;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.no-signal-desc {
    font-size: 13px;
    color: var(--texto-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}
.no-signal-hint {
    font-size: 11px;
    color: var(--texto-dim);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.no-signal-hint svg {
    color: var(--texto-dim);
    animation: spin 4s linear infinite;
}

@keyframes noSignalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
