    :root {
        --bg-color: #F2E0BD;
        --card-bg: linear-gradient(145deg, #ffffff 0%, #ffecc7 100%);
        --primary-color: #6b441b;
        --text-main: #4a331c; 
        --text-muted: #8c6a46;
        --border-color: #e6c888;
        --accent-color: #fbdc99;
        --shadow-color: #d4a352;
    }


    .rule-card {
        background: var(--card-bg);
        border-radius: 24px;
        padding: 25px 20px;
        margin-bottom: 25px;
        border: 2px solid var(--accent-color);
        box-shadow: 0 8px 0 var(--shadow-color), 0 15px 20px rgba(107, 68, 27, 0.15);
        transition: all 0.2s ease-in-out;
        opacity: 0;
        animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .rule-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 0 var(--shadow-color), 0 20px 25px rgba(107, 68, 27, 0.2);
    }

    /* Animasiya gecikmələri (Kartlar sıra ilə gəlsin) */
    .rule-card:nth-child(1) { animation-delay: 0.1s; }
    .rule-card:nth-child(2) { animation-delay: 0.25s; }
    .rule-card:nth-child(3) { animation-delay: 0.4s; }
    .rule-card:nth-child(4) { animation-delay: 0.55s; }

    @keyframes slideUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .rule-card h2 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px dashed var(--border-color);
        display: flex;
        align-items: center;
        gap: 10px;
        text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.8);
    }

    .rule-list {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .rule-list li {
        margin-bottom: 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(230, 200, 136, 0.5);
    }

    .rule-list li:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .rule-title {
        font-weight: 700;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        font-size: 1.05rem;
    }

    .emoji-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #fff;
        border: 2px solid var(--accent-color);
        border-radius: 10px;
        font-size: 1.1rem;
        box-shadow: 0 3px 0 var(--border-color);
        margin-right: 10px;
    }

    .rule-text {
        color: var(--text-main);
        line-height: 1.6;
        font-size: 0.95rem;
        display: block;
        padding-left: 42px; 
    }
    
    
    
    
    
.notif-empty {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ccc;
    font-size: 15px;
}

.notif-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, #fffdf8, #ffecc7);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    padding: 8px 12px; /* Kənar xəttə görə padding-i bir az tənzimlədik */
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.notif-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}



.notif-chat {
    border-left: 5px solid #007bff;
}

.notif-aklub {
    border-left: 5px solid #dc3545;
}

.notif-card.notif-union {
    background: linear-gradient(135deg, #fffdf8, #ffecc7);
    border-left: 5px solid #e6c888;
    box-shadow: 0 2px 5px rgba(230, 200, 136, 0.2);
}

.notif-card.notif-union .notif-body {
    color: #5c430a;
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
}

.notif-sender-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.notif-sender-name {
    font-weight: 600;
    font-size: 15px;
    color: #2c3e50;
    text-decoration: none;
}

.notif-time {
    font-size: 12px;
    color: #95a5a6;
    display: flex;
    align-items: center;
    gap: 4px;
}

.notif-body {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    padding: 0;
    word-wrap: break-word;
}

.notif-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
}


.btn-reply-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-reply-modern:hover {
    background: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
}

.btn-reply-modern i {
    font-size: 11px;
}

.notif-card.notif-union .btn-reply-modern {
    background: #e6c888;
    color: #5c430a;
    border-color: #d1b16c;
}

.notif-card.notif-union .btn-reply-modern:hover {
    background: #d1b16c;
}



    :root {
        --chest-bg: #F2E0BD;
        --chest-card-bg: linear-gradient(145deg, #ffffff 0%, #ffecc7 100%);
        --chest-primary: #6b441b;
        --chest-text-main: #4a331c;
        --chest-text-muted: #8c6a46;
        --chest-border: #e6c888;
        --chest-accent: #fbdc99;
        --chest-shadow: #d4a352;
    }
    .chest-card {
        background: var(--chest-card-bg);
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 20px;
        border: 2px solid var(--chest-accent);
        box-shadow: 0 6px 0 var(--chest-shadow), 0 12px 20px rgba(107, 68, 27, 0.1);
        color: var(--chest-text-main);
        line-height: 1.6;
    }
    .chest-card p { margin-bottom: 15px; font-size: 0.95em; }
    .text-highlight { color: #700035; font-weight: bold; }
    .qa-section { margin-top: 25px; }
    .qa-card {
        background: #fff; border-radius: 15px; padding: 15px; margin-bottom: 15px;
        border: 1px solid var(--chest-border); box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        position: relative; overflow: hidden;
    }
    .qa-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--chest-primary); }
    .text-question { color: var(--chest-primary); font-weight: bold; margin-bottom: 4px; font-size: 1em; display: flex; align-items: center; gap: 8px; }
    .text-answer { color: #006611; font-weight: bold; display: block; padding-left: 5px;  font-size: 0.9em; }
    .back-nav { margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(255, 255, 255, 0.5); padding: 5px 10px; border-radius: 12px; border: 1px solid var(--chest-border); cursor: pointer; text-decoration: none;}
    .back-nav a { color: var(--chest-primary) !important; text-decoration: none; font-weight: bold; font-size: 0.9em; display: block; width: 100%; text-align: center;}
    .price-list { background: rgba(242, 224, 189, 0.3); padding: 10px; border-radius: 10px; margin-top: 10px; font-size: 0.9em; }
