body { font-family: 'Poppins', sans-serif; }

/* ── BREADCRUMB ── */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}
.breadcrumb-nav a { color: #6c757d; text-decoration: none; transition: color 0.2s; }
.breadcrumb-nav a:hover { color: #252F52; }
.breadcrumb-nav i.sep { font-size: 0.55rem; opacity: 0.4; }
.breadcrumb-nav .current { color: #252F52; font-weight: 600; }
[data-theme="dark"] .breadcrumb-nav a:hover  { color: #60a5fa; }
[data-theme="dark"] .breadcrumb-nav .current { color: #60a5fa; }

/* ── HERO ── */
.radio-hero {
    padding: 4rem 0 3.5rem;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(111,66,193,0.08);
    color: #5a32a3;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
}
[data-theme="dark"] .hero-badge {
    background: rgba(167,139,250,0.12);
    color: #a78bfa;
}
.radio-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #212529;
    line-height: 1.15;
    margin-bottom: 1rem;
}
[data-theme="dark"] .radio-hero h1 { color: #f1f5f9; }
.radio-hero .lead {
    font-size: 1rem;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── PLAYER MOCKUP ── */
.player-mockup {
    background: linear-gradient(135deg, #252F52 0%, #1a1040 100%);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    color: white;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}
.player-mockup::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111,66,193,0.2) 0%, transparent 70%);
    top: -100px; right: -50px;
    pointer-events: none;
}
.player-mockup::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,202,240,0.1) 0%, transparent 70%);
    bottom: -80px; left: -30px;
    pointer-events: none;
}
.player-inner {
    position: relative;
    z-index: 1;
}
.player-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.2rem;
}
.player-station {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.player-disc {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f42c1, #0dcaf0);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    animation: spinDisc 4s linear infinite;
    animation-play-state: running;
}
@keyframes spinDisc {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.player-info h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.1rem; }
.player-info p  { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }
.player-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    height: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.player-bar-fill {
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, #6f42c1, #0dcaf0);
    border-radius: 50px;
    animation: barPulse 3s ease-in-out infinite;
}
@keyframes barPulse {
    0%, 100% { width: 40%; }
    50%       { width: 65%; }
}
.player-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.player-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    cursor: default;
    transition: background 0.2s;
}
.player-btn.play {
    width: 46px; height: 46px;
    background: #6f42c1;
    font-size: 1rem;
}
.player-vol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}
.vol-bar {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}
.vol-bar span {
    width: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
}
.vol-bar span:nth-child(1) { height: 5px;  background: #6f42c1; }
.vol-bar span:nth-child(2) { height: 8px;  background: #6f42c1; }
.vol-bar span:nth-child(3) { height: 11px; background: #6f42c1; }
.vol-bar span:nth-child(4) { height: 14px; background: rgba(255,255,255,0.2); }
.vol-bar span:nth-child(5) { height: 16px; background: rgba(255,255,255,0.2); }

/* ── SECTION LABEL ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.section-label h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: #212529;
    white-space: nowrap;
}
[data-theme="dark"] .section-label h2 { color: #f1f5f9; }
.section-label::after { content: ''; flex: 1; height: 1px; background: #dee2e6; }
[data-theme="dark"] .section-label::after { background: #2d3748; }

/* ── COMMANDES ── */
.cmd-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    border-left: 4px solid #6f42c1;
    display: flex;
    flex-direction: column;
}
[data-theme="dark"] .cmd-card {
    background: #161b2e;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.cmd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(111,66,193,0.12);
}
.cmd-card.featured {
    background: linear-gradient(135deg, #252F52 0%, #1a1040 100%);
    border-left-color: #6f42c1;
    box-shadow: 0 8px 30px rgba(37,47,82,0.2);
}
.cmd-card.featured:hover { box-shadow: 0 16px 40px rgba(111,66,193,0.2); }

.cmd-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(111,66,193,0.1);
    color: #6f42c1;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.cmd-card.featured .cmd-icon { background: rgba(111,66,193,0.25); color: #c4b5fd; }

.cmd-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.35rem;
}
[data-theme="dark"] .cmd-card h3 { color: #f1f5f9; }
.cmd-card.featured h3 { color: #fff; }

.cmd-desc {
    font-size: 0.82rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}
[data-theme="dark"] .cmd-desc { color: #94a3b8; }
.cmd-card.featured .cmd-desc { color: rgba(255,255,255,0.6); }

.radio-cmd {
    display: inline-block;
    background: rgba(111,66,193,0.1);
    color: #6f42c1;
    border-radius: 6px;
    padding: 0.2rem 0.55rem;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    font-weight: 700;
}
[data-theme="dark"] .radio-cmd { background: rgba(167,139,250,0.15); color: #a78bfa; }
.cmd-card.featured .radio-cmd  { background: rgba(196,181,253,0.2); color: #c4b5fd; }

/* ── STATIONS GRID ── */
.station-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}
[data-theme="dark"] .station-card {
    background: #161b2e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.station-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(111,66,193,0.1);
}
.station-dot {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.station-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.1rem;
}
[data-theme="dark"] .station-name { color: #f1f5f9; }
.station-genre {
    font-size: 0.73rem;
    color: #6c757d;
    font-weight: 500;
}
[data-theme="dark"] .station-genre { color: #94a3b8; }
.station-live {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #198754;
    flex-shrink: 0;
}
.station-live::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #198754;
    display: block;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.8); }
}
[data-theme="dark"] .station-live { color: #34d399; }
[data-theme="dark"] .station-live::before { background: #34d399; }

/* ── HOW TO ── */
.how-strip {
    background: rgba(111,66,193,0.04);
    border: 1px solid rgba(111,66,193,0.1);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin-bottom: 3.5rem;
}
[data-theme="dark"] .how-strip {
    background: rgba(111,66,193,0.06);
    border-color: rgba(167,139,250,0.15);
}
.how-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6f42c1;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.how-title::after { content: ''; flex: 1; height: 1px; background: rgba(111,66,193,0.15); }
.how-step { display: flex; align-items: flex-start; gap: 0.9rem; }
.how-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #6f42c1;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.how-step h5 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; color: #212529; }
[data-theme="dark"] .how-step h5 { color: #f1f5f9; }
.how-step p  { font-size: 0.8rem; color: #6c757d; margin: 0; line-height: 1.5; }

/* ── CTA ── */
.radio-cta {
    background: linear-gradient(135deg, #252F52 0%, #2d1b6e 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}
.radio-cta h3 {
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}
.radio-cta p { opacity: 0.75; margin-bottom: 1.5rem; max-width: 420px; margin-left:auto; margin-right:auto; }
.btn-sky {
    background: white;
    color: #252F52;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-sky:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #252F52;
    text-decoration: none;
}