/* 
 * Gaming AI Integrated - Layout Styling
 */

.toonz-gaming-ai-integrated-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #F8F7F5;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    text-align: center;
    overflow: hidden;
    padding: 40px 0;
}

.gai-container {
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* --- Header --- */
.gai-header-wrapper {
    margin-bottom: 25px;
}

.gai-headline {
    font-size: 56px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    color: #000;
    letter-spacing: -1px;
}

.gai-headline .accent {
    color: #C49767;
}

.gai-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin: 0;
    letter-spacing: -0.5px;
}

/* --- Features Grid --- */
.gai-features-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 40px 0;
    width: 100%;
}

.gai-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
}

.gai-feature-divider-v {
    width: 1px;
    background-color: #C49767;
    opacity: 0.3;
    margin: 15px 0;
}

.gai-feature-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #C49767;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #C49767;
    font-size: 20px;
}

.gai-feature-icon-wrapper img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.gai-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
}

.gai-feature-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

/* --- Divider --- */
.gai-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    gap: 15px;
}

.gai-divider-line {
    height: 1px;
    width: 80px;
    background-color: #C49767;
    opacity: 0.5;
}

.gai-divider-diamond {
    width: 8px;
    height: 8px;
    border: 1px solid #C49767;
    transform: rotate(45deg);
}

/* --- Footer Text --- */
.gai-footer-text {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
}

.gai-footer-text .accent {
    color: #C49767;
}

/* --- Full Screen Background Visual --- */
.gai-bottom-visual {
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gai-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* --- Responsive --- */
@media (max-width: 1024px) {
    .toonz-gaming-ai-integrated-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }

    .gai-features-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .gai-feature-item {
        flex: 0 0 calc(50% - 15px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .toonz-gaming-ai-integrated-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }

    .gai-headline {
        font-size: 42px;
    }

    .gai-subtitle {
        font-size: 16px;
    }

    .gai-feature-item {
        flex: 0 0 100%;
    }

    .gai-footer-text {
        font-size: 18px;
    }
}