
    /* استایل‌های مخصوص صفحه لیست پخش زنده */
    .shrines-page-wrapper {
        max-width: 1200px;
        margin: 3rem auto;
        padding: 1.5rem;
        text-align: center;
        font-family: 'Vazirmatn', Tahoma, sans-serif; /* فونت پیشنهادی */
    }

    .page-main-title {
        color: #e8c678; /* طلایی روشن‌تر و جذاب‌تر */
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 4rem;
        font-weight: 800;
        text-shadow: 0 4px 15px rgba(232, 198, 120, 0.2);
        position: relative;
        display: inline-block;
    }

    /* یک خط تزئینی زیر عنوان اصلی */
    .page-main-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: linear-gradient(90deg, transparent, #e8c678, transparent);
        border-radius: 5px;
    }

    .shrines-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem;
        padding: 1rem;
    }

    .shrine-card {
        background: linear-gradient(165deg, #1a3628, #0a140f);
        border: 1px solid rgba(206, 176, 112, 0.3);
        border-radius: 30px;
        padding: 2.5rem 1.5rem;
        width: 280px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* انیمیشن نرم‌تر و فنری */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    /* افکت درخشش پس‌زمینه کارت */
    .shrine-card::before {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 50%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        transform: skewX(-20deg);
        transition: 0.5s;
    }

    .shrine-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(206, 176, 112, 0.2);
        border-color: #fce49c;
    }

    .shrine-card:hover::before {
        left: 200%;
    }

    .shrine-image-ring {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        /* گرادیانت جذاب‌تر که با انیمیشن میچرخه */
        background: linear-gradient(45deg, #ceb070, #fff2c8, #ceb070, #8a6d2b);
        background-size: 200% 200%;
        padding: 5px;
        margin-bottom: 2rem;
        box-shadow: 0 0 25px rgba(206, 176, 112, 0.3);
        animation: ringGlow 4s ease infinite;
        transition: all 0.3s ease;
    }

    .shrine-card:hover .shrine-image-ring {
        box-shadow: 0 0 35px rgba(252, 228, 156, 0.6);
        padding: 7px;
    }

    .shrine-image {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #102219;
        transition: transform 0.5s ease;
    }

    .shrine-card:hover .shrine-image {
        transform: scale(1.1); /* زوم شدن ملایم عکس */
    }

    .shrine-title {
        color: #fce49c;
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.6;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    /* انیمیشن چرخش رنگ هاله طلایی */
    @keyframes ringGlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* کدهای ریسپانسیو برای موبایل و تبلت */
    @media (max-width: 768px) {
        .shrines-page-wrapper {
            margin: 1.5rem auto;
            padding: 1rem;
        }

        .page-main-title {
            margin-bottom: 3rem;
        }

        .shrines-container {
            gap: 1.5rem;
        }

        .shrine-card {
            width: 100%;
            max-width: 320px;
            padding: 2rem 1rem;
        }

        .shrine-image-ring {
            width: 130px;
            height: 130px;
        }
    }

