html, body { height: 100%; }
        * { box-sizing: border-box; }
        body { margin: 0; display: grid; grid-template-rows: auto 1fr auto; min-height: 100vh; font-family: Arial, sans-serif; background-color: #f5f2ff; }
        html, body { overflow-x: hidden; }
        .site-header { padding: 20px 16px; border-bottom: 1px solid #e5e5e5; background-color: #ffffff; }
        .container { width: 100%; max-width: 1000px; margin: 0 auto; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
        .brand { font-weight: 700; font-size: 1.50rem; letter-spacing: .02em; }
        .nav-desktop ul { display: flex; gap: 16px; list-style: none; padding: 0; margin: 0; }
        .nav-desktop a { text-decoration: none; color: #111; padding: 8px 10px; border-radius: 6px; }
        .nav-desktop a:hover { background: #f2f2f2; }
        .menu-toggle { display: none; border: none; background: transparent; width: 40px; height: 32px; padding: 0; position: relative; }
        .menu-toggle span { position: absolute; left: 8px; right: 8px; height: 2px; background: #111; transition: transform .2s ease, opacity .2s ease, top .2s ease; }
        .menu-toggle span:nth-child(1) { top: 8px; }
        .menu-toggle span:nth-child(2) { top: 15px; }
        .menu-toggle span:nth-child(3) { top: 22px; }
        .mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,.2); opacity: 0; transform: translateX(-100%); transition: transform .3s ease, opacity .3s ease; pointer-events: none; }
        .mobile-menu.open { opacity: 1; transform: translateX(0); pointer-events: auto; }
        .mobile-menu .nav-mobile { background: #fff; width: 80%; max-width: 340px; height: 100%; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
        .nav-mobile ul { display: flex; flex-direction: column; gap: 16px; list-style: none; padding: 0; margin: 0; }
        .nav-mobile a { text-decoration: none; color: #111; font-size: 1.1rem; padding: 10px 8px; border-radius: 6px; }
        .nav-mobile a:hover { background: #f2f2f2; }
        .no-scroll { overflow: hidden; }
        .site-main { padding: 24px 16px 40px; }

        /* Hero principal */
        .hero { margin-top: 16px; }
        .hero-inner { background: #000000; border-radius: 8px 8px 0px 0px; padding: 0; text-align: center; color: #4b1f7a; box-shadow: 0 4px 12px rgba(0,0,0,0.08); height:auto;}
        .hero-inner img { width: 100%; height: auto; border-radius: 8px 8px 0px 0px; display: block; }

        /* Barra del player morada */
        .player { margin: 0 auto 0; }
        .player-inner { background: linear-gradient(90deg, #2a0b70, #5b2d90); color: #ffffff; padding: 8px 14px;  display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 12px rgba(0,0,0,0.25); gap: 16px; border-radius: 0px 0px 8px 8px;}
        .player-toggle {width: 62px; height: 62px; min-width: 62px; border-radius: 50%; border: none; background: #ffffff; display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; box-shadow: 0 0 0 3px rgba(0,0,0,0.2); }
        .player-toggle-icon { position: relative; width: 20px; height: 20px; display: inline-block; }

        /* Estado PAUSA (dos barras) */
        .player-toggle[data-playing="true"] .player-toggle-icon::before,
        .player-toggle[data-playing="true"] .player-toggle-icon::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 5px;
            background: #2a0b70;
            border-radius: 2px;
        }
        .player-toggle[data-playing="true"] .player-toggle-icon::before { left: 0; }
        .player-toggle[data-playing="true"] .player-toggle-icon::after { right: 0; }

        /* Estado PLAY (triángulo) */
        .player-toggle[data-playing="false"] .player-toggle-icon::before {
            content: "";
            position: absolute;
            top: 1px;
            bottom: 1px;
            left: 4px;
            width: 0;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            border-left: 12px solid #2a0b70;
        }
        .player-toggle[data-playing="false"] .player-toggle-icon::after { content: none; }

        .player-info { flex: 1; overflow: hidden; }
        .player-station { font-size: 0.75rem; letter-spacing: .15em; text-transform: uppercase; opacity: 0.9; }
        .player-title { font-size: 1.1rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

        .player-logo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 3px solid #ffffff; flex-shrink: 0; }
        .player-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

        /* Sección Fe Poder Radio (info + Facebook) */
        .info-facebook { margin-top: 24px; }
        .section-title { text-align: center; font-size: 1.4rem; margin: 0 0 16px; color: #4b1f7a; }
        .container-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; align-items: stretch; }
        .info-card, .facebook-card { background: #ffffff; border-radius: 8px; padding: 20px 22px; box-shadow: 0 4px 10px rgba(0,0,0,0.04); border: 2px solid #4b1f7a; }
        .info-card p { margin: 0 0 12px; font-size: 1rem; line-height: 1.6; }
        .info-card p:last-child { margin-bottom: 0; }
        .info-card a { color: #111111; text-decoration: underline; }
        .info-card a:hover { text-decoration: underline; }

        .facebook-card iframe { width: 100%; max-width: 100%; border-radius: 4px; }

        /* Sección chat/comentarios */
        .chat-cbox { margin-top: 36px; }
        .chat-cbox-inner { background: #ffffff; border-radius: 8px; padding: 16px 18px 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); border: 1px solid #e0d4ff; }
        .chat { margin-top: 8px; }
        .chat iframe { border-radius: 4px; }

        .site-footer { border-top: 1px solid #e5e5e5; padding: 16px; background-color: #ffffff; }
        .footer-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }

        @media (max-width: 980px) {
            .nav-desktop { display: none; }
            .menu-toggle { display: block; }
            .container-grid { grid-template-columns: 1fr; }
            .player-inner {padding: 10px; gap: 10px; }
            .player-logo { width: 52px; height: 52px; }
            .player-title { font-size: 0.95rem; }
        }