/* General Styles */
body {
    background: url('../assets/images/starrybg.webp') center center fixed;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
    color: #fffff0;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 150, 0.3), rgba(0, 150, 255, 0.3), rgba(255, 255, 0, 0.3));
    background-size: 300% 300%;
    animation: gradient-animation 10s ease infinite;
    opacity: 0.20;
    pointer-events: none;
    z-index: -1;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    text-decoration: none;
    color: inherit;
}

/* Centered content wrapper */
.container {
    max-width: 1200px;
    margin: 0 auto; /* Centers content */
    padding: 0 20px; /* Adds padding on the sides */
}

/* Index Page Styles */
.main-content {
    padding: 20px;
    text-align: center;
    margin-bottom: 60px;
}

h2 {
    font-family: 'Orbitron', sans-serif; /* Use a futuristic or stylish font */
    font-size: 2.8em;
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6); /* Soft shadow */
    letter-spacing: 1px; /* Slightly spaced letters for more impact */
    text-transform: uppercase; /* Gives a more bold look */
}

.video-info-container,
.video-embed-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.video-info-container .music-video,
.video-embed-container .music-video {
    width: 48%;
}

.video-info-container h3 {
    font-size: 1.8em;
    margin: 10px 0;
}

.video-info-container p {
    font-size: 1.2em;
    margin: 10px 0;
}

.music-video iframe:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Ensure the layout works on smaller screens */
@media (max-width: 768px) {
    .header-circle {
        width: 70px;
        height: 70px;
        bottom: -35px;  /* half of height to keep it aligned */
        left: 12px;
    }

    main {
        padding-top: 40px; /* adjust to make room for the circle */
    }

    .video-embed-container {
        max-width: 100%;
      }
      
    .music-video {
        aspect-ratio: 16/9;
        width: 100%;
        margin-bottom: 20px;
      }
      
    .music-video iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

}
