:root {
    --bg-color: #050505;
    --bg-darker: #000000;
    --text-color: #ffffff;
    --accent: #ffffff;
    --gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.bg-darker { background-color: var(--bg-darker); }

/* Typography */
h1, h2, h3 { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; text-shadow: 0 4px 10px rgba(255,255,255,0.2); }
.keyword-highlight { font-size: 1.2rem; background: var(--gray); padding: 5px 10px; border-radius: 5px; display: inline-block; margin: 10px 0; }
a { color: var(--accent); text-decoration: none; }
.link-hover:hover { text-decoration: underline; }

/* 3D & Animations */
.3d-text {
    text-shadow: 1px 1px 0 #555, 2px 2px 0 #444, 3px 3px 0 #333, 4px 4px 10px rgba(255,255,255,0.3);
}
.3d-btn {
    transition: transform 0.2s, box-shadow 0.2s;
    transform-style: preserve-3d;
}
.3d-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(255,255,255,0.15);
}
.3d-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.3d-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 1rem 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}
nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 90%; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: bold; }
.site-icon { width: 35px; height: 35px; }
.nav-links a { margin-left: 1.5rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #aaa; }
.hamburger { display: none; font-size: 1.8rem; cursor: pointer; }

/* Buttons */
.btn {
    display: inline-block; padding: 12px 24px; border: none; border-radius: 5px;
    font-weight: bold; cursor: pointer; text-align: center; font-size: 1rem;
}
.btn-primary { background: var(--text-color); color: var(--bg-color); }
.btn-secondary { background: var(--gray); color: var(--text-color); }
.btn-outline { background: transparent; border: 2px solid var(--text-color); color: var(--text-color); }

/* Hero Section */
.hero {
    height: 100vh; position: relative; display: flex; align-items: center; justify-content: center;
    /*background: url('https://picsum.photos/1920/1080?random=100') no-repeat center center/cover;*/
    /*background: url('img/roadtoobophlagos.png') no-repeat center center/cover;*/
    background: url('img/pilotonthewheel.png') no-repeat center center/cover;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4), var(--bg-color)); }
.hero-content { position: relative; z-index: 1; text-align: center; width: 90%; max-width: 800px; }
.motto { font-size: 1.5rem; margin-top: 10rem; margin-bottom: 2rem; }
.intro-video { width: 100%; max-width: 600px; max-height: 60vh;border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); margin-bottom: 2rem; border: 1px solid var(--gray); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 6rem 0; }

/* Songs Carousel */
.songs-carousel { display: flex; gap: 2rem; overflow-x: auto; padding-bottom: 2rem; scroll-snap-type: x mandatory; }
.songs-carousel::-webkit-scrollbar { height: 8px; }
.songs-carousel::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 4px; }
.song-card {
    min-width: 250px; background: var(--bg-darker); border: 1px solid var(--gray);
    border-radius: 10px; padding: 1.5rem; scroll-snap-align: start; text-align: center;
}
.song-art { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.dropdown { position: relative; margin-top: 1rem; }
/*.dropdown-content {
    display: none; position: absolute; bottom: 110%; left: 0; right: 0;
    background: var(--gray); border-radius: 5px; overflow: hidden; z-index: 10;
}
.dropdown:hover .dropdown-content { display: block; }*/

/* Update your dropdown-content class */
.dropdown-content {
    /* Remove display: none; */
    visibility: hidden;
    opacity: 0;
    
    position: absolute; 
    bottom: 100%; /* Changed from 110% to close the gap */
    left: 0; 
    right: 0;
    background: var(--gray); 
    border-radius: 5px; 
    overflow: hidden; 
    z-index: 10;
    
    /* Add invisible padding at the bottom to act as a bridge for the mouse */
    padding-bottom: 10px;
    margin-bottom: 10px; 
    
    /* This delay keeps it open for 0.3 seconds after the mouse leaves */
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

/* Update the hover state */
.dropdown:hover .dropdown-content { 
    visibility: visible;
    opacity: 1;
    
    /* Shows up instantly when hovered */
    transition: opacity 0.3s ease, visibility 0s linear;
}

.dropdown-content a { display: flex; align-items: center; text-align: center; gap: 5px; padding: 5px; border-bottom: 1px solid #444; font-size: 0.8rem; cursor: pointer; }
.dropdown-content a:hover { background: #444; }
.dropdown-content a img {  border-radius: 50%; object-fit: contain; }

.stream-icon { width: 16px; height: 16px; object-fit: contain; }
.social-icon-img { width: 24px; height: 24px; object-fit: contain; vertical-align: middle; margin-right: 5px; }
.social-links-row { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 15px; }



/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.image-gallery { display: flex; gap: 1rem; overflow-x: auto; }
.image-gallery img { width: 250px; height: 350px; object-fit: cover; border-radius: 10px; filter: grayscale(100%); transition: filter 0.3s; }
.image-gallery img:hover { filter: grayscale(0%); }
.donate-note { margin-top: 2rem; padding: 1.5rem; border-left: 4px solid var(--text-color); background: rgba(255,255,255,0.05); }

/* Donate */
.accounts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.account-card { background: var(--gray); padding: 2rem; border-radius: 10px; text-align: center;word-wrap: break-word; }
.account-card-thanks {
    font-size: 0.7rem;
    color: tomato;
}

/* Giveaways */
.giveaway-video { width: 100%; max-width: 700px; max-height: 60vh;border-radius: 10px; border: 1px solid var(--gray); }
.progress-bar-bg { width: 100%; height: 10px; background: var(--gray); border-radius: 5px; overflow: hidden; margin-top: 1rem; }
.progress-fill { height: 100%; width: 0%; background: var(--text-color); transition: width 0.3s ease; }

/* Contact */
.contact-flex { display: flex; gap: 4rem; }
.contact-form { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 15px; background: transparent; border: 1px solid var(--gray);
    color: var(--text-color); border-radius: 5px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--text-color); }
.contact-info { flex: 1; }

/* Footer */
footer { padding: 4rem 0; background: var(--bg-darker); border-top: 1px solid var(--gray); }
.footer-links { margin-top: 1rem; }

/* Modals */
.modal {
    display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9); align-items: center; justify-content: center; backdrop-filter: blur(5px);
    overflow: auto;
}
.modal-content {
    background-color: var(--bg-color); border: 1px solid var(--gray); padding: 2rem;
    margin: 10rem auto; border-radius: 10px; width: 90%; max-width: 500px; text-align: center; 
    /*position: relative;*/
}
.close { position: absolute; top: 10px; right: 20px; color: tomato; font-size: 300%; font-weight: bold; cursor: pointer; }
.close:hover { color: #fff; }
.modal-video { width: 100%; border-radius: 5px;max-height: 60vh; margin-bottom: 1rem; }
.modal-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; }

.alertmsg {
    display: none;
    position: fixed;
    z-index: 99999;
    background: rgba(0,0,0,0.5);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    text-align: center;
    padding: 10px;
}

.alertmsg>div {
    width: 95%;
    max-width: 800px;
    margin: 10% auto 0 auto;
    background: white;
    color: black;
    padding: 10px;
    text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-color); flex-direction: column; text-align: center; padding: 1rem 0; }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 10px 0; }
    .hamburger { display: block; }
    .motto { font-size: 1rem; }
    .about-grid, .contact-flex { grid-template-columns: 1fr; flex-direction: column; }
}