
        /* --- تنظیمات کلی --- */
       
       
       
      :root {
    /* پس‌زمینه: همان آبی تیره حفظ شده چون کنتراست عالی با طلایی و قرمز دارد */
    --bg-color: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);

    /* رنگ‌های برند (بر اساس لوگو) */
    --primary: #ff3921;       /* قرمز لوگو: برای دکمه‌های اصلی و اکشن‌ها */
    --secondary: #ff4040;     /* طلایی لوگو: برای جزئیات، آیکون‌ها و حالات هاور */
    
    /* رنگ‌های کاربردی */
    --accent: #7cff38;        /* استفاده از طلایی به عنوان آکسان */
    --danger: #9d2727;        /* قرمز استاندارد برای خطا (کمی متفاوت از برند برای خوانایی) */
    --warning: #e5b305;       /* طلایی برای هشدارها عالی است */
    --success: #10b981;       /* سبز برای پیام‌های موفقیت (حفظ شد) */

    /* متن‌ها */
    --text-light: #ffffff;    /* سفید با توناژ بسیار محو گرم */
    --text-gray: #cbd5e1;

    /* استایل شیشه‌ای و گرادینت */
    /* حاشیه شیشه‌ای حالا کمی توناژ طلایی دارد تا با تم هماهنگ شود */
    --glass-border: 1px solid rgba(215, 190, 103, 0.15); 
    
    /* گرادینت جذاب ترکیبی از قرمز و طلایی */
    --gradient-btn: linear-gradient(135deg, #af0a0a 0%, #b60404 100%);
}
       
       

        * { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
        
        body { 
            background-color: var(--bg-color); 
            color: var(--text-light); 
            line-height: 1.8; 
            overflow-x: hidden;
            font-family: 'Vazirmatn', sans-serif;
        }
        html{
             font-family: 'Vazirmatn', sans-serif;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; height: auto; border-radius: 15px; }
        ul { list-style: none; }

        .background-glow {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
            background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15), transparent 40%),
                        radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.1), transparent 40%);
        }

        /* --- هدر --- */
        header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 1rem 5%; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(15px);
            position: sticky; top: 0; z-index: 1000; border-bottom: var(--glass-border); height: 70px;
        }
        .logo a { 
            font-size: 1.6rem; font-weight: 900; 
            background: linear-gradient(to left, var(--text-light), var(--primary)); 
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
        }
        .logo { order: 1; }
        nav { order: 2; }
        nav ul { display: flex; gap: 2rem; }
        nav a { color: var(--text-gray); font-size: 0.95rem; font-weight: 500; }
        nav a:hover { color: var(--text-light); border-bottom: 2px solid var(--secondary); }
        .header-cta { order: 3; padding: 0.5rem 1.2rem; background: var(--gradient-btn); border-radius: 8px; font-weight: 700; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3); color: white; }
        .header-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5); }

        /* --- Hero --- */
     /* --- HERO SECTION STYLES --- */

/* کانتینر اصلی هیرو (دو ستونه) */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between; /* فاصله بین متن و عکس */
    padding: 2rem 5%;
    position: relative;
    overflow: hidden; /* جلوگیری از بیرون زدن انیمیشن‌ها */
    gap: 2rem;
}

/* --- ستون سمت راست (متن‌ها) --- */
.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-text h1 span {
    color: var(--secondary);
    position: relative;
}

/* خط زیر کلمه بت لند */
.hero-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 100%;
    height: 8px;
    background: rgba(236, 72, 153, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* دکمه‌های هیرو */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* نوار وضعیت زنده (Live Status) */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

/* --- ستون سمت چپ (تصویر و موکاپ) --- */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px; /* ایجاد عمق سه بعدی */
}

/* کانتینر موکاپ (کارت سه بعدی) */
.mockup-container {
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px;
    /* زاویه اولیه سه بعدی */
    transform: rotateY(-10deg) rotateX(5deg);
    transition: 0.5s ease-out;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
    /* انیمیشن شناور بودن */
    animation: floatMockup 6s ease-in-out infinite;
}

/* افکت هاور روی موکاپ */
.hero-visual:hover .mockup-container {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* آیکون‌های شناور اطراف */
.float-icon {
    position: absolute;
    background: var(--card-bg);
    border: var(--glass-border);
    padding: 15px;
    border-radius: 15px;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: floatIcon 4s ease-in-out infinite;
    z-index: 3;
}

.icon-1 { top: 10%; right: 0; animation-delay: 0s; color: var(--secondary); }
.icon-2 { bottom: 15%; left: -20px; animation-delay: 2s; color: var(--accent); }
.icon-3 { top: 50%; right: -30px; animation-delay: 1s; font-size: 1rem; padding: 10px; }

/* --- انیمیشن‌ها (Keyframes) --- */
@keyframes floatMockup {
    0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-15px); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseDot {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* --- ریسپانسیو (موبایل و تبلت) --- */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column; /* چینش ستونی */
        text-align: center;
        padding-top: 4rem;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        perspective: none; /* حذف پرسپکتیو در موبایل */
    }

    .mockup-container {
        /* حذف چرخش سه بعدی در موبایل برای خوانایی بهتر */
        transform: rotateY(0) rotateX(0) !important;
        animation: none; /* حذف انیمیشن سنگین */
        max-width: 100%;
    }

    .float-icon {
        display: none; /* مخفی کردن آیکون‌های شناور در موبایل */
    }
}
        
        

        .container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
        .intro-box { text-align: center; max-width: 900px; margin: 0 auto 4rem auto; padding: 2.5rem; background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent); border-top: 1px solid var(--primary); border-radius: 20px; }
        
        .pros-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
        .pro-card { background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.2); padding: 1.5rem; border-radius: 15px; text-align: center; transition: 0.3s; }
        .pro-card:hover { transform: translateY(-5px); background: rgba(16, 185, 129, 0.1); }
        .pro-card i { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }

        /* --- Game Simulator UI (اصلاح شده) --- */
        .game-container { max-width: 800px; margin: 0 auto 6rem auto; background: #111827; border-radius: 25px; overflow: hidden; border: 2px solid var(--glass-border); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
        
        .game-header { 
            background: rgba(255,255,255,0.05); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); 
            display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
        }
        .game-header-right h3 { margin: 0; color: var(--primary); font-size: 1.2rem; }
        .game-header-right small { color: var(--text-gray); }
        
        .game-link-btn { 
            background: rgba(99, 102, 241, 0.2); color: #fff; padding: 6px 12px; border-radius: 50px; 
            font-size: 0.85rem; border: 1px solid var(--primary); transition: 0.3s; display: flex; align-items: center; gap: 5px;
        }
        .game-link-btn:hover { background: var(--primary); }

        .game-screen { height: 320px; display: flex; flex-direction: column; justify-content: center; align-items: center; background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, rgba(17,24,39,1) 70%); position: relative; }
        .coefficient-display { font-size: 4.5rem; font-weight: 900; color: var(--text-light); font-family: sans-serif !important; text-shadow: 0 0 20px rgba(255,255,255,0.2); transition: 0.1s; z-index: 2; }
        .coefficient-display.crashed { color: var(--danger); text-shadow: 0 0 20px rgba(239, 68, 68, 0.6); }
        .coefficient-display.cashed-out { color: var(--accent); text-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
        
        .game-controls { padding: 1.5rem; display: flex; justify-content: center; gap: 1rem; background: rgba(30, 41, 59, 0.5); border-top: 1px solid rgba(255,255,255,0.05); }
        .game-btn { padding: 1rem 3rem; font-size: 1.2rem; border-radius: 12px; border: none; cursor: pointer; font-weight: 800; transition: 0.2s; min-width: 200px; }
        .btn-start { background: var(--accent); color: #064e3b; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }
        .btn-start:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6); }
        .btn-cashout { background: var(--warning); color: #451a03; box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4); animation: pulseBtn 1s infinite; }
        .btn-disabled { background: #334155; color: #94a3b8; cursor: not-allowed; animation: none; box-shadow: none; }
        
        .history-panel { background: #0f172a; padding: 1.5rem; max-height: 250px; overflow-y: auto; border-top: 1px solid rgba(255,255,255,0.1); }
        .history-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
        .history-table th { color: var(--text-gray); padding-bottom: 10px; font-size: 0.8rem; }
        .history-table td { text-align: center; padding: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .tag { padding: 3px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; }
        .tag-win { background: rgba(16, 185, 129, 0.2); color: var(--accent); }
        .tag-loss { background: rgba(239, 68, 68, 0.2); color: var(--danger); }

        .reviews-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
        .review-card { background: var(--card-bg); padding: 1.5rem; border-radius: 15px; border: var(--glass-border); display: flex; flex-direction: column; gap: 10px; }
        .user-head { display: flex; align-items: center; gap: 10px; }
        .avatar { width: 45px; height: 45px; background: var(--gradient-btn); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: bold; }
        
        .review-form-box { background: rgba(255,255,255,0.02); padding: 2rem; border-radius: 15px; border: var(--glass-border); max-width: 600px; margin: 0 auto 5rem auto; }
        .form-group { margin-bottom: 1rem; }
        .form-input { width: 100%; padding: 12px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; outline: none; transition: 0.3s; }
        .form-input:focus { border-color: var(--primary); }
        .submit-btn { width: 100%; padding: 12px; background: var(--primary); color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: bold; transition: 0.3s; }
        .submit-btn:hover { background: var(--secondary); }
        .alert { padding: 10px; border-radius: 8px; margin-bottom: 20px; font-size: 0.9rem; text-align: center; }
        .success { background: rgba(16, 185, 129, 0.2); color: var(--accent); border: 1px solid var(--accent); }
        .error { background: rgba(239, 68, 68, 0.2); color: var(--danger); border: 1px solid var(--danger); }

        .seo-section { display: flex; align-items: center; gap: 3rem; margin-bottom: 5rem; background: rgba(255, 255, 255, 0.02); padding: 2.5rem; border-radius: 20px; border: var(--glass-border); }
        .seo-section:nth-child(even) { flex-direction: row-reverse; }
        .seo-content { flex: 1; }
        .seo-image { flex: 1; }
        .seo-content h2 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--primary); }
        .seo-content ul li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
        .seo-content li i { color: var(--accent); }
        .img-placeholder { width: 100%; height: 320px; background: linear-gradient(135deg, #1e293b, #334155); border-radius: 15px; display: flex; justify-content: center; align-items: center; border: 2px dashed rgba(255,255,255,0.1); color: rgba(255,255,255,0.3); }

        /* --- Link List Footer --- */
        .link-list-container {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; 
            margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem;
        }
        .seo-link {
            font-size: 0.9rem; color: var(--text-gray); border: 1px solid rgba(255,255,255,0.1);
            padding: 5px 15px; border-radius: 20px; transition: 0.3s;
        }
        .seo-link:hover { background: var(--primary); color: white; border-color: var(--primary); }

        @keyframes pulseBtn { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
        .fade-in { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        @media (max-width: 768px) {
            header { padding: 0.5rem 1rem; } nav ul { display: none; } .logo { order: 1; } .header-cta { order: 2; font-size: 0.8rem; padding: 0.5rem 0.8rem; }
            .hero h1 { font-size: 2rem; } .seo-section { flex-direction: column !important; padding: 1.5rem; }
            .game-btn { width: 100%; }
            .game-header { flex-direction: column; text-align: center; }
        }
        
        *{
  scroll-margin-top: 110px; 
}
