:root {
    --sn-bg-dark: #060816;
    --sn-panel-bg: rgba(13, 16, 35, 0.75);
    --sn-accent-purple: #7d52f4;
    --sn-accent-blue: #23c8ff;
    --sn-glass-border: rgba(255, 255, 255, 0.08);
}

/* کانتینر اصلی وردپرس یا صفحه */
.sn-chat-system-wrapper {
    width: 100%;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--sn-bg-dark);
    font-family: 'Tahoma', 'Vazir', sans-serif;
    direction: rtl;
    padding: 20px;
    box-sizing: border-box;
}

/* بدنه اصلی اپلیکیشن چت */
.sn-main-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: var(--sn-panel-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--sn-glass-border);
    border-radius: 40px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: snAppEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* تقسیم بندی سه ستونه */
.sn-col-users {
    width: 340px;
    border-left: 1px solid var(--sn-glass-border);
    flex-shrink: 0;
}

.sn-col-chat {
    flex: 1;
    min-width: 400px;
}

.sn-col-profile {
    width: 360px;
    border-right: 1px solid var(--sn-glass-border);
    flex-shrink: 0;
}

/* انیمیشن ورود کل اپلیکیشن */
@keyframes snAppEntrance {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

/* ریسپانسیو سازی هوشمند */
@media (max-width: 1200px) {
    .sn-col-profile {
        display: none; /* در تبلت پروفایل مخفی شود و با دکمه باز شود */
    }
}

@media (max-width: 768px) {
    .sn-col-users {
        display: none; /* در موبایل فقط محیط چت نمایش داده شود */
    }
    .sn-main-container {
        border-radius: 0;
    }
}
