     html,
        body {
            margin: 0;
            padding: 0;
            min-height: 100%;
        }

        body {
            background: #142239;
        }

        header {
            width: 100%;
            text-align: center;
        }

        header img {
            display: block;
            width: 240px;
            height: auto;
            margin: 0 auto;
        }
        
        .player-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  box-sizing: border-box;
}

#embedIframe {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 10px;
  display: block;
}
        
.reload-wrap {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.reload-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #214cbe;
    border: 1px solid #214cbe;
    border-radius: 6px;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.reload-btn:hover {
    background: #193d99;
    color: #fff;
    border-color: #193d99;
    box-shadow: 0 0 16px rgba(33, 76, 190, 0.45);
}
        
        
        .sitio {
    width: 100%;
    text-align: center;
    margin-top: 25px;
    padding: 15px 0;
    color: #d8dee6;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}