.mapbox {
            width: 100%;
            padding-top: 50px;
            height: 830px;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0f3cd2 0%, #1e3a5fd8 50%, #0a0f3cd4 100%), center / 120% url(./banner4.jpg);
        }

        .mapsetion {
            width: 100%;
            height: 666px;
            overflow: hidden;
            position: relative;
        }

        .svgbox {
            width: 1440px;
            margin: 0 auto;
            padding: 0 96px;
            position: relative;
            z-index: 10;
            height: 100%;
            box-sizing: border-box;
        }

        .info-panel {
            width: 55%;
            height: 60%;
            background: linear-gradient(160deg, #dcdcdcc8 0%, #e6e6e688 30%, #ffffff00 100%);
            border-radius: 12px;
            padding: 24px;
            color: white;
            display: flex;
            flex-direction: column;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
            position: absolute;
            top: 3%;
            opacity: 0.9;
        }

        .info-panel h2 {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }

        .info-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .region-name {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .region-desc {
            font-size: 14px;
            line-height: 1.8;
            opacity: 0.9;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .region-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            width: 100%;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 12px;
            border-radius: 8px;
            text-align: center;
        }

        .stat-label {
            font-size: 12px;
            opacity: 0.7;
            margin-bottom: 4px;
        }

        .stat-value {
            font-size: 18px;
            font-weight: bold;
        }

        .map-container {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            z-index: 12;
        }

        svg {
            max-width: 100%;
            max-height: 100%;
            height: auto;
        }

        svg .mappath {
            cursor: pointer;
            transition: all 0.3s ease;
        }

        svg .mappath:hover {
            fill: rgba(102, 126, 234, 0.6) !important;
            filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.4));
        }

        .mappathActive {
            fill: rgba(102, 126, 234, 0.6) !important;
            filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.4));
        }

        .initial-hint {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            font-style: italic;
            /* color: #eab308; */
        }

        .infochange {
            font-size: 28px;
        }

        .infochangelogo {
            padding: 3px 10px;
            border-radius: 4px;
            background: linear-gradient(135deg, #b91c1c, #eab308);
            font-size: 11px;
            font-weight: 400;
            color: #fff;
        }

        @keyframes fadeInScale {
    from {
        opacity: .2;
    }
    to {
        opacity: 1;
    }
}
        @keyframes fadeOutScale {
    from {
        opacity: 1;
    }
    to {
        opacity: .4;
    }
}
.text-animate {
    animation: fadeInScale 1.5s ease ;
}
.text-animate2{
    animation: fadeOutScale 1s ease;
}