:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #050505; /* Fallback color */
    
    /* BACKGROUND SETUP */
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    min-height: 100vh;
}

/* Darkens the background so text stands out */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

header {
    text-align: center;
    margin-top: 50px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink);
    object-fit: cover;
}

.neon-text {
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
    letter-spacing: 5px;
}

.neon-text-blue {
    text-shadow: 0 0 10px var(--neon-blue);
    color: var(--neon-blue);
}

.content-box {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #00f0ff; /* Your glowing neon outline border */
    box-shadow: 0 0 15px #00f0ff;
    padding: 30px 20px;       /* Uniform layout padding on left and right sides */
    margin: 0 auto 40px auto; /* Centered automatically on your screen */
    width: 90%;
    max-width: 850px;
    text-align: center;
    box-sizing: border-box;   /* Locks borders to the edge beautifully */
    border-radius: 8px;
}

/* Ensure the video container spans 100% of this new shared interior space */
.video-grid {
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    width: 100%;
    margin: 20px auto 0 auto;
    padding: 0;             
    box-sizing: border-box;
}

.video-wrapper {
    background: rgba(20, 20, 20, 0.7);
    padding: 15px;            /* Gives a clean inner edge border */
    margin: 20px 0;         
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 255, 0.2); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    
    /* Crucial Change: Force it to stay within the cyan container boundaries */
    width: 100%;             
    max-width: 100%;        
    box-sizing: border-box;   /* Includes padding inside width calculations */
  
}

.video-title {
    font-size: 1rem;
    color: var(--neon-blue);
    margin-bottom: 12px;
    text-align: center;     /* Matches the top tracks' titles */
    letter-spacing: 1px;
    font-weight: bold;
}
/* THE IFRAME VIDEO PLAYER */
.video-wrapper iframe {
    width: 100%;             /* Tells the video to NEVER exceed the wrapper size */
    max-width: 100%;         /* Strictly clips any overflow leaks */
    height: 350px;           /* Perfect cinematic height for an 850px container width */
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    border-radius: 4px;
    display: block;         
    box-sizing: border-box;  /* Guarantees the pink border doesn't leak out */
    margin: 0 auto;
}

.description-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle divider border */
    padding: 20px;
    margin: 10px auto 30px auto;
    width: 90%;
    max-width: 600px;
    text-align: center;
    border-radius: 4px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 1px;
    
    /* NEON YELLOW GLOW */
    color: #ffea00; /* Bright yellow base */
    text-shadow: 0 0 5px #fff, 
                 0 0 10px #ffea00, 
                 0 0 20px #ffcc00; /* Layered glow effect */
}

.description-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0; /* Clean, easily readable off-white */
    margin: 0;
    letter-spacing: 1px;
}
