/* Gaming Hero Section Styling */

.toonz-gaming-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
}

.gh-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gh-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    /* Account for parallax movement */
}

.gh-fallback-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.gh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

/* Mouse Reflection Layer */
.gh-reflection-layer {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 111, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
    opacity: 1;
    /* Full opacity for better response */
    transition: opacity 0.3s ease;
}

.gh-container {
    padding: 0 3%;
    width: 100%;
    position: relative;
    z-index: 10;
}

.gh-content {
    max-width: 900px;
}

.gh-overline {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F87510;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gh-headline {
    font-size: 85px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.gh-headline .accent {
    color: #F87510;
    font-weight: 950;
}

.gh-accent-line {
    width: 30px;
    height: 3px;
    background: #F87510;
    margin-bottom: 30px;
}

.gh-description {
    font-size: 22px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 20px;
}

/* --- Tech Stats --- */
.gh-tech-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gh-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.gh-stat-icon {
    font-size: 24px;
    color: #F87510;
    display: flex;
    align-items: center;
    height: 32px;
}

.gh-stat-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

.gh-stat-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 140px;
    line-height: 1.3;
}

/* --- CTA Buttons --- */
.gh-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gh-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.gh-btn-icon {
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gh-btn:hover .gh-btn-icon {
    transform: translateX(6px);
}

.gh-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.gh-btn-outline:hover {
    border-color: #F87510;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 117, 16, 0.15);
}

.gh-btn-solid {
    background: #F87510;
    color: #fff;
    border: 1px solid #F87510;
}

.gh-btn-solid:hover {
    background: #ff8529;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(248, 117, 16, 0.4);
}

/* --- Animation Classes --- */
.gh-content>* {
    opacity: 0;
    transform: translateY(30px);
}

/* --- Responsiveness --- */
@media (max-width: 1200px) {
    .gh-headline {
        font-size: 65px;
    }
}

@media (max-width: 768px) {
    .toonz-gaming-hero-wrapper {
        height: auto;
        padding: 120px 0 80px;
    }

    .gh-headline {
        font-size: 45px;
    }

    .gh-description {
        font-size: 18px;
    }

    .gh-tech-stats {
        gap: 25px;
    }

    .gh-buttons {
        flex-direction: column;
        width: 100%;
    }

    .gh-btn {
        width: 100%;
        justify-content: center;
    }
}