.banner-wrapper {
    position: relative;
    width: 100%;
    margin-top: 64px;
    background-color: #000;
}

.banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(0,0,0,0.3) 20%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.85) 70%,
        #000 100%
    );
    z-index: 2;
    pointer-events: none;
}

.banner-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: lighten;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    z-index: 1;
    pointer-events: none;
}

.logo-section {
    position: relative;
    background-color: transparent;
    padding: 0;
    margin-top: -120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
}

.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    position: relative;
    z-index: 1;
    padding: 1rem 0 3rem;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background-color: #fff;
    margin: 1.5rem auto;
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    opacity: 0.6;
}

.events-carousel {
    padding: 4rem 0;
    background-color: #000;
    position: relative;
    z-index: 1;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.carousel-item {
    min-width: 300px;
    text-align: center;
}

.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid #333;
    transition: opacity 0.3s;
}

.carousel-item img:hover {
    opacity: 0.7;
}

.carousel-title {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.featured-videos {
    padding: 4rem 0 5rem;
    background-color: #000;
    position: relative;
    z-index: 1;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    border: 1px solid #333;
    transition: border-color 0.3s;
    background-color: #000;
}

.video-card:hover {
    border-color: #666;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}