/* 
 * Gaming Social Ecosystems Styling
 */

.toonz-social-ecosystem-wrapper {
    position: relative;
    background: #000;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
    min-height: 900px;
    display: flex;
    align-items: center;
}

.tse-parallax-bg {
    position: absolute;
    top: -300px;
    left: 0;
    width: 100%;
    height: 140%;
    /* Oversized for parallax */
    z-index: 0;
    pointer-events: none;
}

.tse-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}



.tse-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 70px;
}

.tse-grid {
    display: grid;
    grid-template-columns: 660px 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Content Panel --- */
.tse-title {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.tse-title .accent {
    color: #F87510;
    position: relative;
    display: inline-block;
}

.tse-title .accent::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: currentColor;
    margin-top: 25px;
}

.tse-subhead {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 50px;
    font-weight: 500;
}

/* Feature List */
.tse-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 60px;
}

.tse-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tse-feature-icon {
    width: 45px;
    height: 45px;
    /* border: 1px solid rgba(248, 117, 16, 0.4); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F87510;
    font-size: 18px;
    flex-shrink: 0;
    /* box-shadow: 0 0 20px rgba(248, 117, 16, 0.15); */
}

.tse-feature-icon img {
    width: auto;
    height: auto;
    /* filter: drop-shadow(0 0 5px #F87510); */
}

.tse-feature-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.tse-feature-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

.tse-footer-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    max-width: 400px;
    border-left: 2px solid rgba(248, 117, 16, 0.5);
    padding-left: 20px;
}

/* --- Visual Panel (Right) --- */
.tse-visual-panel {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tse-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tse-visual-core {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 117, 16, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(20px);
    animation: coreGlow 8s infinite alternate ease-in-out;
}

@keyframes coreGlow {
    from {
        transform: scale(1);
        opacity: 0.5;
    }

    to {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

.tse-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    opacity: 0.6;
}

.tse-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* --- Footer Bottom Overlay --- */
.tse-footer-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(248, 117, 16, 0.2);
    border-bottom: 1px solid rgba(248, 117, 16, 0.2);
    padding: 20px 0;
    z-index: 10;
}

.tse-footer-inner {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.tse-footer-main,
.tse-footer-sub {
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tse-footer-main {
    color: #fff;
}

.tse-footer-sub {
    color: #F87510;
}

/* Feature Content Alignment Fix */
.tce-feature-content {
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 1024px) {
    .tse-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tse-container {
        padding: 0 30px;
    }

    .tse-title {
        font-size: 48px;
    }

    .tse-visual-panel {
        height: 400px;
    }

    .tse-visual-core {
        width: 300px;
        height: 300px;
    }
}