/* =============================================
   CSS Variables
   ============================================= */
:root {
    --primary-color: #32b4e3;
    --primary-dark: #1a8bb5;
    --accent-color: #ffff00;
    --accent-gold: #ffc107;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #999999;
    --border-color: #dddddd;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --success-color: #3c763d;
    --danger-color: #a94442;
    --link-color: #337ab7;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --radius: 8px;
}

/* =============================================
   1. Reset / Normalize
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   2. Global / Container
   ============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.content-wrapper .main-content {
    flex: 1;
    min-width: 0;
}

.content-wrapper .sidebar-content {
    width: 300px;
    flex-shrink: 0;
}

/* =============================================
   3. Header Styles
   ============================================= */
.site-header {
    background-color: var(--primary-color);
    padding: 10px 0 0;
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.header-top .logo a {
    display: inline-block;
}

.header-top .logo img {
    max-height: 40px;
    width: auto;
}

.header-time {
    color: var(--text-light);
    font-size: 14px;
}

.header-btn-group {
    display: flex;
    gap: 8px;
}

.header-btn-group a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header-btn-group .btn-login {
    background-color: var(--accent-color);
    color: #333;
}

.header-btn-group .btn-login:hover {
    background-color: #e6e600;
    transform: translateY(-1px);
}

.header-btn-group .btn-register {
    background-color: var(--accent-color);
    color: #333;
}

.header-btn-group .btn-register:hover {
    background-color: #e6e600;
    transform: translateY(-1px);
}

.header-btn-group .btn-demo {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.header-btn-group .btn-demo:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* =============================================
   4. Navigation
   ============================================= */
.main-navigation {
    background-color: #1a3a5c;
    margin-top: 10px;
}

.main-navigation .container {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 22px;
    padding: 12px 15px;
    cursor: pointer;
}

.main-navigation ul,
.main-navigation .nav-menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation li {
    position: relative;
}

.main-navigation li a {
    display: block;
    color: var(--text-light);
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.main-navigation li a:hover,
.main-navigation li.current-menu-item a {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.main-navigation li a i {
    margin-right: 5px;
}

/* Dropdown */
.main-navigation li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a3a5c;
    min-width: 180px;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.main-navigation li:hover > ul.sub-menu {
    display: block;
}

.main-navigation li ul.sub-menu li a {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* =============================================
   5. Notification Bar
   ============================================= */
.notification-bar {
    background-color: #fff9e6;
    padding: 8px 0;
    overflow: hidden;
    border-top: 1px solid #f0e0a0;
    border-bottom: 1px solid #f0e0a0;
}

.notification-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.notification-content span {
    display: inline-block;
    padding: 0 40px;
    font-size: 13px;
    color: #c33;
    font-weight: 500;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   6. Hero Slider / Banner
   ============================================= */
.hero-slider {
    max-width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 20px 0;
    position: relative;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.7;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--text-light);
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 16px;
}

/* =============================================
   7. Features Section
   ============================================= */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px 0;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================
   8. Poster Section
   ============================================= */
.poster-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
}

.poster-item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.poster-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}

.poster-item:hover img {
    transform: scale(1.05);
}

/* =============================================
   9. Category Section
   ============================================= */
.category-section {
    padding: 30px 0;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.category-tabs .tab-btn {
    padding: 8px 20px;
    border: none;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tabs .tab-btn.active,
.category-tabs .tab-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.category-card .card-body {
    padding: 12px;
}

.category-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* =============================================
   10. Hot Games Section
   ============================================= */
.hot-games-section {
    padding: 30px 0;
}

.hot-games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.game-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.game-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.game-item .game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* =============================================
   11. Bets Table
   ============================================= */
.bets-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 20px 0;
}

.bets-table th {
    background: #1a3a5c;
    color: var(--text-light);
    padding: 12px 15px;
    font-size: 13px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
}

.bets-table td {
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.bets-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.bets-table tr:hover {
    background-color: #eef7fb;
}

.bets-table .win {
    color: var(--success-color);
    font-weight: 700;
}

.bets-table .lose {
    color: var(--danger-color);
    font-weight: 700;
}

/* =============================================
   12. Download Section
   ============================================= */
.download-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    margin: 30px 0;
    color: var(--text-light);
}

.download-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.download-section p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.download-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-color);
    color: #333;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.download-btn:hover {
    background: #e6e600;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,0,0.4);
    color: #333;
}

/* =============================================
   13. Floating Sidebar
   ============================================= */
.floating-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    color: var(--text-light);
}

.sidebar-btn .sidebar-label {
    display: none;
    position: absolute;
    right: 60px;
    white-space: nowrap;
    background: rgba(0,0,0,0.8);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.sidebar-btn:hover .sidebar-label {
    display: block;
}

.sidebar-btn[data-tooltip]::before {
    content: attr(data-tooltip);
    display: none;
    position: absolute;
    right: 60px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
}

.sidebar-btn[data-tooltip]:hover::before {
    display: block;
}

/* =============================================
   14. Article List (Archive/Category)
   ============================================= */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    display: flex;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.article-card .thumbnail {
    width: 200px;
    min-height: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.article-card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .thumbnail img {
    transform: scale(1.05);
}

.article-card .article-body {
    padding: 15px;
    flex: 1;
}

.article-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--text-dark);
}

.article-card h3 a:hover {
    color: var(--primary-color);
}

.article-card .article-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.article-card .article-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.article-card .article-meta .meta-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
}

/* =============================================
   15. Single Article
   ============================================= */
.single-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.article-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.article-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.article-header .article-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 16px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0;
}

.article-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--text-dark);
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.article-content ol li {
    list-style: decimal;
    margin-bottom: 8px;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.related-posts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.related-post-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.related-post-item:hover {
    box-shadow: var(--shadow);
}

.related-post-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-post-item h4 {
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.related-post-item h4 a {
    color: var(--text-dark);
}

.related-post-item h4 a:hover {
    color: var(--primary-color);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.post-navigation a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* =============================================
   16. Pagination
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 25px 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

/* =============================================
   17. Footer
   ============================================= */
.site-footer {
    background-color: #1a2a3a;
    color: var(--text-light);
    padding: 30px 0 15px;
    margin-top: 40px;
}

.footer-top {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: var(--text-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* =============================================
   18. Common Components
   ============================================= */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-left: 15px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-1px);
}

.btn-accent {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent-color);
    color: #333;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-accent:hover {
    background: #e6e600;
    transform: translateY(-1px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 12px 0;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--text-muted);
    margin: 0 3px;
}

/* =============================================
   19. Scroll to Top
   ============================================= */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 70px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 998;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* =============================================
   20. Guide Section
   ============================================= */
.guide-section {
    padding: 30px 0;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.guide-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.guide-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.guide-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.guide-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.guide-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* =============================================
   21. Category Pane (Tab Content)
   ============================================= */
.category-pane {
    display: none;
}

.category-pane.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =============================================
   22. Page Title (Archive)
   ============================================= */
.page-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-description {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* =============================================
   23. Share Buttons
   ============================================= */
.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.share-buttons span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 38px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.share-buttons a.share-facebook {
    background: #3b5998;
}

.share-buttons a.share-twitter {
    background: #1da1f2;
}

.share-buttons a.share-telegram {
    background: #0088cc;
}

.share-buttons a.share-whatsapp {
    background: #25d366;
}

.share-buttons a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    color: var(--text-light);
}

/* =============================================
   24. Download Buttons Group
   ============================================= */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.download-buttons .download-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* =============================================
   25. Bets Section
   ============================================= */
.bets-section {
    padding: 30px 0;
}

.bets-table-wrapper {
    overflow-x: auto;
}
