
.banner {
    width: 40vw;
    margin-bottom: 5vh;
    animation: banner-float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
}

@keyframes banner-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.tagline {
    color: white;
    font-size: xx-large;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 5vh;
    text-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.join-us, .vote-btn {
    background: linear-gradient(135deg, #315879 0%, #3f79a3 100%);
    color: white;
    margin: 4.5vh auto;
    padding: 3vh 2.5vw;
    font-size: large;
    text-transform: uppercase;
    font-weight: bolder;
    letter-spacing: 2px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px 0px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    font-family: "Amarna", sans-serif;
}

.join-us:hover, .vote-btn:hover {
    background: linear-gradient(135deg, #355f83 0%, #4585b3 100%);
    transform: translateY(-5px);
}

.carousel-section {
    width: 85%;
    margin: 6vh auto;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(100, 200, 255, 0.3);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.carousel-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(100, 200, 255, 0.6));
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.carousel-slide h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #64c8ff 0%, #4a9fd8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bolder;
}

.carousel-slide p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.carousel-nav {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.carousel-dot.active {
    background: #64c8ff;
    box-shadow: 0 0 15px #64c8ff;
    transform: scale(1.3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(100, 200, 255, 0.2);
    border: 2px solid rgba(100, 200, 255, 0.5);
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(100, 200, 255, 0.5);
    box-shadow: 0 0 25px rgba(100, 200, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev { left: 15px; }
.carousel-arrow.next { right: 15px; }


.video-section {
    width: 85%;
    margin: 6vh auto;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(100, 200, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: bolder;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.85);
    border: 2px solid rgba(100, 200, 255, 0.3);
}

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


@media (max-width: 768px) {
    .carousel-slide {
        padding: 2.5rem 1.5rem;
    }

    .carousel-slide h2 {
        font-size: 1.6rem;
    }

    .carousel-slide p {
        font-size: 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .carousel-icon {
        width: 80px;
        height: 80px;
    }

    .video-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .banner {
        width: 80vw;
    }

    .tagline {
        font-size: x-large;
    }
}