
/* --- Hymn & Media Section --- */
.hymn-section {
    position: relative;
    overflow: hidden;
}

.media-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: center;
}

/* Karaoke Lyrics Box */
.lyrics-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(244, 180, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.lyrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lyrics-header h3 {
    color: var(--primary-yellow);
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lyrics-scroll-area {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 400px;
    padding-right: 10px;
    scroll-behavior: smooth;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.lyrics-content {
    text-align: center;
    font-size: 1.2rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0; /* Extra padding for scrolling mask */
}

.lyrics-line {
    transition: none;
    padding: 5px 0;
    border-radius: 4px;
}

.lyrics-line.active {
    color: var(--primary-yellow);
    font-weight: 700;
    transform: none;
    text-shadow: none;
}

.lyrics-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.btn-karaoke {
    background: transparent;
    border: 1px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-karaoke:hover, .btn-karaoke.playing {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(244, 180, 0, 0.4);
}

/* Patriotic Section */
.patriotic-row {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.patriotic-header {
    text-align: center;
    margin-bottom: 30px;
}

.patriotic-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .lyrics-scroll-area {
        max-height: 300px;
    }
    
    .lyrics-card {
        margin-top: 20px;
    }
}
