/* Base styles for the cyber theme */
body {
    background-color: #01040F; /* cyber-dark */
    color: #E0E0E0;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

/* Custom class for the grid box effect */
.cyber-box {
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 0.5rem;
    background-color: rgba(1, 4, 15, 0.7); /* Slightly transparent dark */
    transition: all 0.3s ease;
}
        
.cyber-box:hover {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
    border-color: #00FFFF;
    transform: translateY(-4px);
}
        
/* Style for neon buttons */
.neon-btn {
    border: 2px solid #00FFFF;
    color: #00FFFF;
    background-color: transparent;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    box-shadow: 0 0 8px #00FFFF;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.neon-btn:hover {
    background-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 15px #00FFFF, 0 0 30px #00FFFF;
}
        
/* Utility for the horizontal grid line pattern */
.grid-line-bg {
/* Adjusted for a more subtle vertical line effect too */
    background-image: 
    linear-gradient(to right, rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Responsive Iframe Container for YouTube Embeds */
.video-container {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio */
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5); /* Neon purple shadow */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* === Lyrics Section Styling === */

/* Container specifically holding lyrics */
.cyber-lyrics {
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.15);
}

/* Details element */
.cyber-lyrics details {
    margin-top: 0.75rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(0, 255, 255, 0.3);
}

/* Summary toggle header */
.cyber-lyrics details summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #00eaff;
    text-shadow: 0 0 6px rgba(0, 255, 255, 0.5);
    transition: 0.25s ease;
}

.cyber-lyrics details summary:hover {
    color: #9ff8ff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.9);
}

/* Lyrics paragraph text (replaces <pre>) */
.cyber-lyrics .lyrics-text {
    white-space: pre-line;
    margin: 0.75rem 0 0 0;
    line-height: 1.55rem;
    font-size: 0.95rem;
    color: #d9ffff;
    text-shadow: 0 0 5px rgba(0, 128, 128, 0.4);
    text-align: left;
}

/* Smooth reveal animation */
.cyber-lyrics details[open] .lyrics-text {
    animation: fadeLyrics 0.35s ease;
}

@keyframes fadeLyrics {
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Track title inside cyber-box */
.cyber-lyrics h4 {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    text-align: left;
}

/* Under-lyric description */
.cyber-lyrics p {
    margin-top: 1rem;
    color: #9afaff;
    opacity: 0.85;
    font-size: 0.9rem;
    text-align: left;
}
