/* ==========================================================================
   بنر مهمان (Guest Banner) - لیگوگیم
   ========================================================================== */

.guest-banner {
    position: relative;
    overflow: hidden;
    background-image: url('../images/guest-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 40px 30px;
    margin: 0 0 30px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: guestBannerIn 0.6s ease-out;
}

@keyframes guestBannerIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guest-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.guest-banner__icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
    display: inline-block;
    animation: guestBannerBounce 2s ease-in-out infinite;
}

@keyframes guestBannerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.guest-banner__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.guest-banner__subtitle {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0 0 20px;
    line-height: 1.7;
}

.guest-banner__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.guest-banner__features li {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guest-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #6c5ce7;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guest-banner__cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.guest-banner__arrow {
    transition: transform 0.25s ease;
}

.guest-banner__cta:hover .guest-banner__arrow {
    transform: translateX(-6px);
}

/* المان‌های تزیینی شناور */
.guest-banner__decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.guest-banner__shape {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: guestBannerFloat 6s ease-in-out infinite;
}

.guest-banner__shape.shape-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.guest-banner__shape.shape-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.guest-banner__shape.shape-3 {
    bottom: 20%;
    left: 12%;
    animation-delay: 3s;
}

.guest-banner__shape.shape-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 4.5s;
}

@keyframes guestBannerFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* ===== ریسپانسیو ===== */
@media (max-width: 640px) {
    .guest-banner {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .guest-banner__title {
        font-size: 1.3rem;
    }

    .guest-banner__subtitle {
        font-size: 0.9rem;
    }

    .guest-banner__features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .guest-banner__features li {
        font-size: 0.85rem;
    }

    .guest-banner__cta {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .guest-banner__shape {
        font-size: 1.8rem;
        opacity: 0.2;
    }
	
	    .guest-banner {
        padding: 30px 20px;
        border-radius: 18px;
        background-image: url('../images/guest-banner-mobile.webp');
    }
}

/* ===== دسترس‌پذیری ===== */
@media (prefers-reduced-motion: reduce) {
    .guest-banner,
    .guest-banner * {
        animation: none !important;
    }
}