/* 
 * Gaming Entertainment Component Styles
 */

.toonz-gaming-ent-wrapper {
    position: relative;
    padding: 100px 0;

    /* Light editorial background */
    overflow: hidden;
    color: #1a1a1a;
}

.ge-container {
    padding: 0 50px;
}

.ge-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* --- Left Column: Content --- */
.ge-content-col {
    flex: 1;
    max-width: 600px;
}

.ge-title-large {
    font-size: 140px;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin: 0 0 0px 0;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.ge-sub-headline {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 5px;
    color: #333;
}

.ge-accent-headline {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    color: #F87510;
    margin-bottom: 10px;
}

.ge-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.ge-stats-title {
    padding-bottom: 10px;
}

.ge-tech-stats {
    display: flex;
    gap: 0;
    margin-bottom: 0px;
    padding-bottom: 20px;

}

.ge-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.ge-stat-item:last-child {
    border-right: none;
}

.ge-stat-item:first-child {
    padding-left: 0;
}

.ge-stat-icon {
    font-size: 24px;
    color: #F87510;
    margin-bottom: 15px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ge-stat-icon img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.ge-stat-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    line-height: 1.2;
}

.ge-footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* --- Right Column: Visuals --- */
.ge-visual-col {
    flex: 1.2;
}

.ge-image-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ge-main-image-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.ge-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ge-bottom-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.ge-sub-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.ge-sub-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

/* Hover Zoom Logic */
.ge-main-image-wrap:hover .ge-main-image,
.ge-sub-image-wrap:hover .ge-sub-image {
    transform: scale(1.08);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ge-row {
        flex-direction: column;
        gap: 60px;
    }

    .ge-content-col {
        max-width: 100%;
    }

    .ge-title-large {
        font-size: 100px;
    }
}

@media (max-width: 767px) {
    .toonz-gaming-ent-wrapper {
        padding: 60px 0;
    }

    .ge-title-large {
        font-size: 70px;
    }

    .ge-sub-headline,
    .ge-accent-headline {
        font-size: 32px;
    }

    .ge-bottom-row {
        grid-template-columns: 1fr;
    }
}