.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--text-color-default);
    padding: 2rem;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image img,
.hero-image video,
.hero-image iframe {
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    animation: fadeInUp 1s ease-out, titleGlow 3s ease-in-out infinite alternate;
}

.hero h1 {
    color: var(--static-color);
    font-size: 4rem;
    font-family: var(--my-font);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero p {
    color: var(--static-color);
    font-family: var(--my-font);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: var(--border-thick);
    border-radius: var(--border-radius-custom);
    font-size: 1rem;
    font-family: var(--my-font);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: var(--accent-color);
    background: var(--primary-bgc);
}

.btn-secondary {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn:hover {
    background: var(--accent-overlay);
    border: 2px solid var(--accent-color);
    transform: translateY(-2px);
}

.slideshow-section {
    padding: 5rem 2rem;
    background: var(--secondary-bgc);
    margin: 2rem;
    border-radius: var(--border-radius-custom);
    box-shadow: var(--shadow);
}

.section-title {
    color: var(--accent-color);
    text-align: center;
    font-size: 2.0rem;
    font-weight: 700;
    font-family: var(--my-font);
    margin-bottom: 3rem;
}

.slideshow-container {
    position: relative;
    background: var(--content-bgc);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius-custom);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slide {
    display: none;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide.active {
    display: block;
    animation: slideInRight 0.8s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-bgc);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.slide-content h3 {
    font-family: var(--my-font);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideContentIn 1s 0.3s forwards;
}

.slide-content p {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideContentTxt 1s 0.6s forwards;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: var(--border-thick);
    color: var(--accent-color);
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-custom);
    backdrop-filter: var(--blur-effect);
    -webkit-backdrop-filter: var(--blur-effect);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-content h3,
.slide-content p {
    color: var(--static-color);
    will-change: transform, opacity;
}

.slide-nav:hover {
    background: var(--accent-overlay);
    border: 2px solid var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slide-prev {
    left: 1rem;
}

.slide-next {
    right: 1rem;
}

.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-custom);
    background: var(--accent-color);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.video-gallery {
    padding: 5rem 2rem;
    background: var(--secondary-bgc);
    margin: 2rem;
    border-radius: var(--border-radius-custom);
    box-shadow: var(--shadow);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--content-bgc);
    border-radius: var(--border-radius-custom);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.video-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.video-info {
    padding: 1.5rem;
    background: var(--content-bgc);
}

.video-info h4 {
    font-family: var(--my-font);
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--accent-color);
}

.video-info p {
    color: var(--text-color-default);
    font-size: 0.9rem;
}

.stats-section {
    padding: 5rem 2rem;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.stat-card {
    flex: 1 1 200px;
    background: var(--gradient-bgc);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-custom);
    border: var(--border-thin);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--accent-overlay);
}

.stat-card {
    opacity: 0;
    transform: translateY(30px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-label {
    color: var(--accent-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slideshow-section,
    .video-gallery {
        margin: 1rem;
        padding: 3rem 1rem;
    }

    .slide {
        height: 400px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 2rem 1rem;
    }
}

@media screen and (max-width: 500px) {
    .hero-image {
        height: 100vh;
        object-fit: cover;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .slide-overlay h3,
    .slide-overlay p {
        font-size: 0.9rem;
    }

    .slide-prev,
    .slide-next {
        opacity: 0;
    }
}