/* 💎 زبان طراحی بصری و استایلینگ اختصاصی پلتفرم آرکا ۳۶۰ */

:root {
    --arka-bg-app: #f8fafc;
    --arka-bg-card: #ffffff;
    --arka-primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --arka-success-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --arka-danger-gradient: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    --arka-accent-glow: 0 10px 40px -4px rgba(99, 102, 241, 0.08);
    --arka-card-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.02), 0 10px 30px -10px rgba(0, 0, 0, 0.04);
}

body { 
    font-family: 'Vazir', Tahoma, sans-serif !important; 
    -webkit-tap-highlight-color: transparent; 
    user-select: none;
    background-color: var(--arka-bg-app) !important;
}

/* 🚀 استایل‌های انیمیشن اسپلش‌اسکرین برای جلوگیری از پرش تصویر هنگام لود اول */
#splash-screen {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}
.splash-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}
@keyframes splashPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 15px 30px rgba(99, 102, 241, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 25px 50px rgba(99, 102, 241, 0.5)); }
}
@keyframes splashSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes splashBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

/* 📦 کارت‌های بنتویی و نئونی نرم */
.arka-card {
    background-color: var(--arka-bg-card);
    border: 1px solid #f1f5f9;
    border-radius: 28px !important;
    padding: 22px;
    box-shadow: var(--arka-card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.arka-card:hover {
    box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

/* 🖱️ کارت‌های تعاملی و کلیک‌خور */
.arka-card-interactive {
    background-color: var(--arka-bg-card);
    border: 1px solid #f1f5f9;
    border-radius: 28px !important;
    padding: 18px;
    box-shadow: var(--arka-card-shadow);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.arka-card-interactive:active {
    transform: scale(0.96);
    background-color: #f8fafc;
}

/* 🚀 دکمه‌های گرادینت با درخشندگی نوری (Glow) */
.arka-btn-primary {
    background: var(--arka-primary-gradient);
    color: #ffffff !important;
    border-radius: 18px !important;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
    transition: all 0.25s ease-in-out;
    border: none;
    cursor: pointer;
}
.arka-btn-primary:hover {
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.5);
    transform: translateY(-1px);
}
.arka-btn-primary:active {
    transform: scale(0.96);
}

.arka-btn-success {
    background: var(--arka-success-gradient);
    color: #ffffff !important;
    border-radius: 18px !important;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease-in-out;
    border: none;
    cursor: pointer;
}
.arka-btn-success:hover {
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}
.arka-btn-success:active {
    transform: scale(0.96);
}

.arka-btn-danger {
    background: var(--arka-danger-gradient);
    color: #ffffff !important;
    border-radius: 18px !important;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 25px -5px rgba(244, 63, 94, 0.3);
    transition: all 0.25s ease-in-out;
    border: none;
    cursor: pointer;
}
.arka-btn-danger:hover {
    box-shadow: 0 15px 30px -5px rgba(244, 63, 94, 0.5);
    transform: translateY(-1px);
}
.arka-btn-danger:active {
    transform: scale(0.96);
}

/* 🔍 فیلدهای ورودی (Inputs) با استایل ضخیم نئونی */
.arka-input {
    width: 100%;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 16px;
    border-radius: 20px !important;
    font-size: 14px;
    font-weight: 800;
    outline: none;
    transition: all 0.25s ease-in-out;
}
.arka-input:focus {
    border-color: #6366f1;
    background-color: #ffffff;
    box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.12);
}

/* 📊 اسکرول‌بار مینی‌مال ابری */
.arka-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.arka-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.arka-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.arka-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 📱 ناوبری پایینی موبایل تراز شده */
.arka-bottom-nav {
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.04);
    border-top: 1px solid rgba(15, 23, 42, 0.02);
}

.animate-fadeIn { 
    animation: fadeIn 0.35s cubic-bezier(0.4, 0, 0.2, 1); 
}
@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(4px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* 🚫 حذف نوار اسکرول پیشرفته برای تب‌های افقی */
.scrollbar-none::-webkit-scrollbar {
    display: none;
}
.scrollbar-none {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
    to { opacity: 1; transform: translateY(0); } 
