/* =========================================
   LigoGame - Static Pages (Terms, About, etc.)
========================================= */

.static-page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
}

.static-page-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 3px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* هدر صفحه */
.sp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px dashed #cbd5e1;
}

.sp-icon {
    font-size: 40px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.sp-title {
    font-size: 28px;
    font-weight: 900;
    color: #1e293b;
    margin: 0;
}

/* محتوای متنی */
.sp-content {
    color: #475569;
    font-size: 16px;
    line-height: 2.2;
    font-weight: 500;
}

.sp-content h3 {
    color: #0f766e;
    font-size: 20px;
    font-weight: 800;
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-content h3::before {
    content: "🔸";
    color: #f59e0b;
}

/* باکس‌های اطلاعات (مثل آدرس و تلفن) */
.sp-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease;
}

.sp-info-box:hover {
    transform: translateX(-5px);
    border-color: #94a3b8;
}

.sp-info-icon {
    font-size: 24px;
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sp-info-text strong {
    display: block;
    color: #1e293b;
    font-size: 15px;
    font-weight: 900;
}

.sp-info-text span {
    color: #64748b;
    font-size: 14px;
}

/* موبایل */
@media (max-width: 768px) {
    .static-page-card { padding: 25px; border-radius: 24px; }
    .sp-title { font-size: 22px; }
    .sp-icon { font-size: 32px; }
}