        .cover {
            width: 650px;
            height: 510px;
            overflow: hidden;
            margin: 60px auto 0 auto;
            padding: 5px;
            text-align: center;
            position: relative;
        }
        .cover-img {
            width: 500px;
            height: 500px;
            float: left;
            position: absolute;
            left: 5px;
            box-shadow: 0 0 4px rgba(0, 0, 0, .5);
            z-index: 2;
        }
        .cover-img2 {
            width: 450px;
            height: 450px;
            margin-top: 25px;
            float: right;
            position: absolute;
            right: 5px;
            border-radius: 50%;
            border: 2px solid #444;
            box-shadow: 0 0 4px rgba(0, 0, 0, .5);
            animation: 7s linear 0.2s infinite rotate-cover;
            z-index: 1;
        }
        @keyframes rotate-cover {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .stop-rotate {
            animation: none;
        }
        @media (max-width: 992px) {
            .info .panel {
                width: 100%;
                margin-bottom: 0;
                border-radius: 0;
            }
        }
        @media (max-width: 767px) {
            .cover {
                width: 450px;
                height: 360px;
            }
            .cover-img {
                width: 350px;
                height: 350px;
            }
            .cover-img2 {
                width: 300px;
                height: 300px;
            }
        }
        @media (max-width: 480px) {
            .cover {
                width: 300px;
                height: 260px;
            }
            .cover-img {
                width: 250px;
                height: 250px;
            }
            .cover-img2 {
                width: 200px;
                height: 200px;
            }
        }


        body:before {
            content: '';
            position: fixed;
            width: 110%;
            height: 110%;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            -webkit-filter: blur(5px);
            -moz-filter: blur(5px);
            -o-filter: blur(5px);
            -ms-filter: blur(5px);
            filter: blur(8px);
            z-index: -9;
        }
        .muno-page {
            background: #16151A;
            line-height: 50px;
            color: #273338;
            border-top: 4px solid #f7941d;
        }


          :root {
    --orange: #ff8a1f;
    --gold:   #ffc34d;
    --purple: #8a2be2;
    --bg:     #0f0e13;

    --mx: 50;
    --my: 50;
  }

  html, body {
    height: 100%;
    margin: 0;
    background-color: var(--bg);
  }

  body > * {
    position: relative;
    z-index: 1;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    /* تعریف چند لایه ابر نوری با گرادینت‌های بزرگ و نرم */
    background:
      /* لایه اول: یک نور طلایی بزرگ که به موس واکنش نشان می‌دهد */
      radial-gradient(circle at calc(var(--mx) * 1%) calc(var(--my) * 1%), rgba(255, 195, 77, 0.2), transparent 40%),
      
      /* لایه دوم: یک ابر بنفش متحرک */
      radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.15), transparent 35%),
      
      /* لایه سوم: یک ابر نارنجی متحرک با سرعتی متفاوت */
      radial-gradient(circle at 20% 80%, rgba(255, 138, 31, 0.2), transparent 30%);

    background-blend-mode: screen; /* ترکیب لایه‌ها برای ایجاد حس درخشش */
    
    /* انیمیشن‌های مستقل برای هر لایه پس‌زمینه */
    animation: 
      mouse-glow 8s infinite alternate,  /* انیمیشن پالس برای لایه موس */
      drift-purple 30s infinite linear alternate, /* انیمیشن حرکت برای ابر بنفش */
      drift-orange 45s infinite linear alternate; /* انیمیشن حرکت برای ابر نارنجی */
  }

  @keyframes mouse-glow {
    from { filter: brightness(0.8); }
    to { filter: brightness(1.2); }
  }

  @keyframes drift-purple {
    from { background-position: 0% 0%, 80% 20%, 20% 80%; }
    to   { background-position: 0% 0%, 70% 35%, 20% 80%; }
  }

  @keyframes drift-orange {
    from { background-position: 0% 0%, 80% 20%, 20% 80%; }
    to   { background-position: 0% 0%, 80% 20%, 35% 70%; }
  }

  /* لایه نهایی برای ایجاد حس شیشه‌ای و عمق بیشتر */
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(140deg, rgba(255,255,255,0.04), transparent 50%);
    mix-blend-mode: overlay;
  }



  .live-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.live-search-results .list-group-item {
    background-color: #15141c; /* --bg2 شما */
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.1);
}

.live-search-results .list-group-item:hover {
    background-color: #1a1924;
}

.live-search-results img {
    object-fit: cover;
}

@media (min-width: 400px) {
    .header__actions {
        margin-left: 0px;
    }
}


    .stats-section {
        border-radius: 20px;
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }
    .stats-intro {
        text-align: right;
    }
    .stats-intro h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    .stats-intro p {
        font-size: 1rem;
        color: #a0a0a0;
        line-height: 1.6;
    }
    .stat-glass {
        background: rgba(25, 25, 35, 0.5);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
    }
    .stat-glass:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 30px 0 rgba(199, 21, 133, 0.3);
        border-color: rgba(199, 21, 133, 0.5);
    }
    .stat-glass__icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(45deg, #8A2BE2, #C71585);
    }
    .stat-glass__icon {
        width: 32px;
        height: 32px;
        color: #fff;
    }
    .stat-glass__number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.5rem;
        direction: ltr;
    }
    .stat-glass__title {
        font-size: 1rem;
        font-weight: 400;
        color: #c0c0c0;
        margin-bottom: 0;
    }
    @media (max-width: 992px) {
        .stats-intro {
            text-align: center;
            margin-bottom: 2rem;
        }
    }
    @media (max-width: 768px) {
        .stat-glass__number {
            font-size: 2rem;
        }
    }


    p{
        direction: rtl;
        text-align: right;
        color: #c0c0c0;
    }

    body{
        direction: rtl;
    }