/* کانتینر اصلی */
.hero-container {
    display: flex;
    gap: 30px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch; /* مهم برای هم‌ارتفاع شدن ستون‌ها */
}

/* ستون چپ */
.left-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ستون راست */
.right-col {
    flex: 1;
}

/* تنظیم تصویر */
.hero-image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* باکس محتوا */
.hero-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    flex-grow: 1;
}

/* باکس جدول */
.leaderboard-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    height: 100%; /* ارتفاع کامل برای هم‌ترازی */
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.leaderboard-table th, .leaderboard-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}

/* ریسپانسیو */
@media (max-width: 768px) {
    .hero-container { flex-direction: column; }
}