/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, #18181F 0%, #1a1a27 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 40px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(114, 241, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230, 229, 236, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 1.3rem;
    color: #B4B4B8;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #72F1FE 0%, #4ecde8 100%);
    color: #18181F;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: 0 10px 30px rgba(114, 241, 254, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(114, 241, 254, 0.4);
    color: #18181F;
    text-decoration: none;
}

/* Video background wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Video element */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(24, 24, 31, 0.8) 0%,
            rgba(24, 24, 31, 0.5) 50%,
            rgba(24, 24, 31, 0.9) 100%);
}

/* === HERO LINKS SECTION === */
@media (min-width: 992px) {
    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        max-width: 1200px;
        gap: 4rem;
    }

    .hero-text {
        width: 50%;
    }

    .hero-links {
        width: 45%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hero-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(230, 229, 236, 0.1);
    border: 1px solid rgba(230, 229, 236, 0.1);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-link-item:hover {
    background: rgba(114, 241, 254, 0.1);
    border-color: rgba(114, 241, 254, 0.3);
    transform: translateY(-3px);
    text-decoration: none;
}

.hero-link-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hero-link-label {
    color: #E6E5EC;
    font-weight: 600;
    font-size: 1rem;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .hero-links {
        margin-top: 3rem;
        width: 100%;
    }

    .hero-links-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}