/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: #000000;
    text-align: center;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Estilos para el header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: hsla(120, 50%, 35%, 0.8);
    padding: 10px 20px;
    position: relative;
    color: white;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

header h1 {
    font-size: 4.8em;
    margin: 0;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: hsla(120, 50%, 35%, 0.8);
    box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.5);
}

.social-media {
    margin-bottom: 10px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ff6f61;
}

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

#dailyVerse {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.verse-text {
    font-size: 1.1em;
    font-style: italic;
    margin: 10px 0;
}

.verse-reference {
    font-weight: bold;
    color: #2c3e50;
}

.welcome, .radio, .tv, .gallery {
    padding: 20px;
    background-color: rgba(151, 192, 151, 0.9);
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome:hover, .radio:hover, .tv:hover, .gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.7);
}

/* Reproductor de radio */
.radio-player {
    background-color: rgba(0, 0, 0, 0.562);
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.controls {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.controls button {
    background-color: #ff6f61;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.controls button:hover {
    background-color: #e65a50;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.progress-container {
    flex-grow: 1;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #ff6f61;
    border-radius: 5px;
    transition: width 0.1s ease;
}

#volumeSlider {
    width: 80px;
    cursor: pointer;
}

#muteButton {
    background-color: transparent;
    border: 2px solid #ff6f61;
    color: #ff6f61;
}

#muteButton:hover {
    background-color: #ff6f61;
    color: #fff;
}

/* Sección de TV */
.tv-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
}

.tv-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Nueva Galería */
.gallery .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    margin: 15px 0;
}

.gallery video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.gallery h4 {
    font-size: 1.4em;
    margin: 15px 0 10px;
    color: #2c3e50;
}

.gallery p {
    font-size: 1em;
    line-height: 1.5;
    color: #34495e;
    max-width: 600px;
    margin: 0 auto 15px;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #ff6f61;
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.youtube-link:hover {
    background-color: #e65a50;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Responsividad */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }

    .header-logo {
        width: 80px;
    }

    .controls button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }

    .header-logo {
        width: 60px;
    }

    .gallery h4 {
        font-size: 1.2em;
    }
    
    .gallery p {
        font-size: 0.9em;
    }
}