/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
    direction: rtl;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #06b6d4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeIn 0.8s ease-in 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-top {
    font-size: 28px;
    font-weight: 800;
    color: #06b6d4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.logo-bottom {
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 1px;
}

.header-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: fadeIn 0.8s ease-in 0.5s both;
}

.db-label {
    font-size: 14px;
    color: #06b6d4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.db-text {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Main Container */
.main-container {
    display: grid;
    grid-template-columns: 1fr 320px 250px;
    gap: 20px;
    padding: 30px;
    max-width: 1800px;
    margin: 0 auto;
}

/* Sidebar Styles */
.sidebar {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    height: fit-content;
    position: sticky;
    top: 120px;
    animation: slideInLeft 0.6s ease-out;
    order: 3;
}
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}   }
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1));
    transition: width 0.3s ease;
}

.nav-item:hover::before {
    width: 100%;
}

.nav-item:hover {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    transform: translateX(-5px);
}

.nav-item.active {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}   box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.nav-icon {
    font-size: 20px;
}

.nav-text {
    font-size: 15px;
    font-weight: 500;
}
.badge-new {
    margin-right: auto;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    animation: blink 2s ease-in-out infinite;
}   animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}
.sidebar-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #06b6d4, transparent);
    margin: 20px 0;
}   margin: 20px 0;
}
.sidebar-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(6, 182, 212, 0.3);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #06b6d4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    transform: translateX(-5px);
    color: #0891b2;
}   color: #e67e22;
}

.footer-icon {
    font-size: 18px;
}

/* Main Content */
.main-content {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* Search Bar */
.search-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    display: flex;
    gap: 15px;
}

.search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    color: #f1f5f9;
    font-size: 16px;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: #64748b;
}

.search-btn {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.search-btn:active {
    transform: scale(0.98);
}   transform: scale(0.98);
}
/* Table Container */
.table-container {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    overflow-x: auto;
}

.bookmakers-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.bookmakers-table thead tr {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.bookmakers-table th {
    padding: 15px;
    text-align: right;
    font-weight: 700;
    font-size: 15px;
    color: #f1f5f9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}   white-space: nowrap;
}

.bookmakers-table th:first-child {
    border-radius: 0 10px 10px 0;
}

.bookmakers-table th:last-child {
    border-radius: 10px 0 0 10px;
}

.tooltip-icon {
    cursor: help;
    opacity: 0.7;
    margin-right: 5px;
}

.table-row {
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.table-row:nth-child(1) { animation-delay: 0.1s; }
.table-row:nth-child(2) { animation-delay: 0.2s; }
.table-row:nth-child(3) { animation-delay: 0.3s; }
.table-row:nth-child(4) { animation-delay: 0.4s; }
.table-row:nth-child(5) { animation-delay: 0.5s; }

.table-row:hover {
    background: rgba(243, 156, 18, 0.1);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.2);
}

.bookmakers-table td {
    padding: 15px;
    text-align: right;
    vertical-align: middle;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row td:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 10px 10px 0;
}

.table-row td:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px 0 0 10px;
}
.rank-cell {
    font-size: 20px;
    font-weight: 700;
    color: #06b6d4;
    text-align: center !important;
}   text-align: center !important;
}

.bookmaker-cell {
    min-width: 200px;
}

.bookmaker-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bookmaker-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.bookmaker-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

.shahbet-logo {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.hotbet-logo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.betkhaneh-logo {
    background: linear-gradient(135deg, #4ecdc4, #44a3a3);
}

.fazbet-logo {
    background: linear-gradient(135deg, #a8e6cf, #56cc9d);
}

.shirbet-logo {
    background: linear-gradient(135deg, #ffd89b, #ff6b9d);
}
.bookmaker-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
}

.verified-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.5);
}   box-shadow: 0 2px 10px rgba(243, 156, 18, 0.5);
}
.visits-cell {
    font-size: 16px;
    font-weight: 600;
    color: #0ea5e9;
}   color: #3498db;
}

.rating-cell {
    min-width: 150px;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #06b6d4;
}   color: #f39c12;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    font-size: 16px;
    opacity: 0.3;
}

.star.filled {
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.star.half {
    opacity: 0.6;
}

.action-cell {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}
.btn-visit,
.btn-review {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-visit {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.btn-review {
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    border: 2px solid rgba(6, 182, 212, 0.5);
}

.btn-review:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
    transform: translateY(-2px);
}   transform: translateY(-2px);
}
/* Right Sidebar */
.right-sidebar {
	padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.6s ease-out 0.3s both;
    order: 2;
}   animation: slideInLeft 0.6s ease-out 0.3s both;
@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}       opacity: 1;
    }
}

.news-button {
    position: sticky;
    top: 120px;
    z-index: 100;
.btn-more-news {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-more-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.6);
}   transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6);
.widget {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}   padding-bottom: 15px;
    border-bottom: 2px solid rgba(243, 156, 18, 0.3);
.comment-item,
.rating-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border-right: 3px solid #06b6d4;
    transition: all 0.3s ease;
}

.comment-item:hover,
.rating-item:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateX(-5px);
}

.comment-header,
.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-site,
.rating-site {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 15px;
}   color: #ffffff;
    font-size: 15px;
}

.comment-rating {
    display: flex;
    align-items: center;
    gap: 5px;
.rating-value {
    font-size: 13px;
    color: #06b6d4;
    font-weight: 600;
}

.comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 10px 0;
}

.comment-footer,
.rating-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 10px;
}   color: #888;
    margin-top: 10px;
.btn-more-comments,
.btn-more-ratings {
    width: 100%;
    padding: 8px;
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 8px;
    color: #06b6d4;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-more-comments:hover,
.btn-more-ratings:hover {
    background: rgba(6, 182, 212, 0.3);
    border-color: #06b6d4;
}

.btn-view-all {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
}

.overall-label {
    font-size: 12px;
    color: #64748b;
}   font-size: 12px;
    color: #888;
}

.rating-value-large {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
}

.stars-large {
    display: flex;
    gap: 5px;
}

.stars-large .star {
    font-size: 20px;
.rating-number-large {
    font-size: 24px;
    font-weight: 700;
    color: #06b6d4;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-top: 3px solid #06b6d4;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
}   text-align: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
.footer-links a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 0;
    height: 2px;
    background: #06b6d4;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #0891b2;
}

.separator {
    color: #475569;
}

.footer-copy {
    color: #94a3b8;
    font-size: 14px;
}   color: #888;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .main-container {
        grid-template-columns: 220px 1fr 300px;
    }
}

@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar,
    .right-sidebar {
        position: static;
    }
    
    .right-sidebar {
		
    padding: 15px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .main-container {
        padding: 15px;
    }
    
    .table-container {
        overflow-x: scroll;
    }
    
    .action-cell {
        flex-direction: column;
    }
    
    .btn-visit,
    .btn-review {
        width: 100%;
    }
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

/* SEO Content Section */
.seo-content-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.seo-title {
    font-size: 28px;
    font-weight: 700;
    color: #06b6d4;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

.seo-content {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
}

.seo-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.seo-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #06b6d4;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
}:-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
}
