.map-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.map-hero .row.align-items-center {
    justify-content: center important;
    width: 100%;
}

.map-gate-container {
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}

/* کارت آیکون اصلی */
.overview-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 140, 0, 0.25));

    backdrop-filter: blur(6px);

    border: 1.5px solid rgba(255, 193, 7, 0.4);

    box-shadow: 0 0 25px rgba(255, 193, 7, 0.4), inset 0 0 10px rgba(255, 193, 7, 0.2);

    transition: all 0.3s ease;
}

.overview-icon:hover {
    box-shadow: 0 0 35px rgba(255, 193, 7, 0.7), inset 0 0 15px rgba(255, 193, 7, 0.4);
    transform: scale(1.05);
}

.map-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b0b0b 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particles-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.map-gate {
    width: 100%;
    height: 100%;
    border: 3px solid #ffc107;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    animation: rotateGate 10s linear infinite;
}

.map-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    background: url('assets/images/gate-globe.png') no-repeat center/contain;
    transform: translate(-50%, -50%);
    animation: rotateGlobe 24s linear infinite;
}

/* کارت آیکون اصلی */
.overview-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 140, 0, 0.25));

    backdrop-filter: blur(6px);

    /* استایل border و shadow مشابه character-portrait */
    border: 3px solid rgba(143, 188, 63, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

    transition: all 0.4s ease;
}

.overview-icon:hover {
    /* فقط border و shadow تغییر می‌کنن، بدون scale */
    border-color: rgba(143, 188, 63, 0.6);
    box-shadow: 0 20px 50px rgba(143, 188, 63, 0.3);
}

/* استایل برای تصاویر featured section */
.regions-section .img-fluid {
    max-width: 80%;
    /* سایز کوچک‌تر تصاویر */
    height: auto;
    border-radius: 20px;

    /* استایل border و shadow از overview-icon */
    border: 3px solid rgba(143, 188, 63, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

    transition: all 0.4s ease;
}

.regions-section .img-fluid:hover {
    border-color: rgba(143, 188, 63, 0.6);
    box-shadow: 0 20px 50px rgba(143, 188, 63, 0.3);
}



@keyframes rotateGate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes rotateGlobe {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(-360deg);
    }
}