/* BetMines Inspired Dark Theme */

body.betmines-theme {
    background-color: #121212 !important;
    color: #e0e0e0;
    font-family: 'Sofia Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Layout */
.bm-layout-wrapper {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Sidebar Nav */
.bm-sidebar-nav {
    width: 220px;
    background-color: #121212;
    border-right: 1px solid #2d2d2d;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    left: 0;
}

/* Sidebar */
.bm-sidebar {
    width: 260px;
    background-color: transparent;
    border-right: none;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: calc(100vh - 80px);
    top: 80px;
    overflow-y: auto;
    z-index: 999;
    left: 250px;
    padding: 0 15px 20px 0;
}

/* Sidebar Custom Scrollbar */
.bm-sidebar::-webkit-scrollbar {
    width: 6px;
}
.bm-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.bm-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.bm-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.bm-sidebar-logo {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #2d2d2d;
}
.bm-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.bm-sidebar-section {
    padding: 15px 0;
}
.bm-sidebar-title {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    padding: 0 20px 10px;
    font-weight: 600;
}

/* Card Styling for Secondary Sidebar Sections */
.bm-sidebar .bm-sidebar-section {
    background-color: #1a1a1a; /* Distinct grey to stand out off #121212 background */
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 15px 0 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.bm-sidebar .bm-sidebar-title {
    color: #fff;
    font-size: 15px;
    text-transform: none; /* Reference uses normal case like "Predictions", "Top Leagues" */
    font-weight: 700;
    padding: 5px 20px 15px 20px;
}

.bm-sidebar-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #bbb;
    text-decoration: none;
    font-size: 13px;
    gap: 12px;
    transition: background 0.2s, color 0.2s;
}
.bm-sidebar-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}
.bm-sidebar-link:hover, .bm-sidebar-link.active {
    background-color: #2a2a2a;
    color: #fff;
    text-decoration: none;
}
.bm-sidebar-link.active {
    border-left: 3px solid #fff;
    padding-left: 17px;
}

/* Main Content */
.bm-main-content {
    flex: 1;
    margin-left: 520px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Top Navbar */
.bm-top-navbar {
    height: 60px;
    background-color: #121212;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #2d2d2d;
}
.bm-top-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.bm-top-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bm-top-link:hover {
    color: #fff;
    text-decoration: none;
}
.bm-premium-btn {
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}
.bm-premium-btn small {
    font-size: 10px;
    font-weight: 400;
    display: block;
}
.bm-premium-btn:hover {
    background: linear-gradient(180deg, #fcd34d, #fbbf24);
    color: #000;
    text-decoration: none;
}

/* Content Body */
.bm-content-body {
    padding: 20px 40px;
    background-color: #0a0a0a;
    flex: 1;
    overflow-x: hidden;
}

.bm-page-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
}
.bm-info-link {
    font-size: 12px;
    color: #ccc;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Date Navigator Redesign */
.bm-date-nav {
    display: flex;
    align-items: center;
    background: #0d0d0d;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    padding: 6px;
    margin: 0 auto 25px auto;
    width: fit-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2px;
}
.bm-date-nav::-webkit-scrollbar {
    display: none;
}

.bm-date-live {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #262626;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
    position: relative;
}

.bm-date-live:hover {
    background: #333;
}

.bm-date-live.active {
    background: #ef4444;
}

.bm-date-live .badge {
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.bm-date-divider {
    width: 2px;
    height: 24px;
    background: #333;
    margin: 0 10px;
}

.bm-date-item {
    color: #888;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 15px;
    text-decoration: none !important;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.bm-date-item .bm-date-label {
    display: none;
}

.bm-date-item:hover {
    color: #fff;
}

.bm-date-item.active {
    background: #fff;
    color: #000 !important;
    border-radius: 10px;
    padding: 8px 12px;
}

.bm-date-item.active .bm-date-day {
    color: #000;
    font-size: 18px;
}

.bm-date-item.active .bm-date-label {
    display: block;
    color: #888;
    font-size: 8px;
    font-weight: 700;
    margin-top: 2px;
}

.bm-date-day {
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #888;
}

.bm-date-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .bm-date-nav {
        width: auto;
        padding: 4px;
        border-radius: 10px;
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 20px;
        gap: 2px;
    }
    .bm-date-divider { 
        width: 1px;
        height: 20px;
        margin: 0 5px;
    }
    
    .bm-date-live {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
        gap: 5px;
    }
    .bm-date-live .badge {
        font-size: 8px;
        padding: 2px 5px;
        top: -5px;
        right: -5px;
    }
    
    .bm-date-item {
        padding: 5px 10px;
        min-width: 35px;
        font-size: 14px;
    }
    .bm-date-item.active {
        padding: 5px 10px;
        border-radius: 8px;
    }
    .bm-date-item.active .bm-date-day {
        font-size: 14px;
    }
    .bm-date-day {
        font-size: 14px;
    }
    .bm-date-label {
        font-size: 7px;
        margin-top: 1px;
    }
}

/* Market Filters */
.bm-market-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.bm-market-filters::-webkit-scrollbar {
    display: none;
}
.bm-market-btn {
    background: #262626;
    color: #fff !important;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.2s;
}
.bm-market-btn.active, .bm-market-btn:hover {
    background: #fff;
    color: #000 !important;
    text-decoration: none !important;
}

/* Search Bar */
.bm-search-bar {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #2d2d2d;
}
.bm-search-input {
    display: flex;
    align-items: center;
    background: #121212;
    border-radius: 20px;
    padding: 5px 15px;
    flex: 1;
    max-width: 300px;
}
.bm-search-input input {
    background: transparent;
    border: none;
    color: #fff;
    padding-left: 10px;
    font-size: 13px;
    width: 100%;
}
.bm-search-input input:focus {
    outline: none;
}
.bm-filter-btn {
    background: transparent;
    border: 1px solid #444;
    color: #ccc;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-left: 15px;
    cursor: pointer;
}
.bm-table-headers {
    display: flex;
    margin-left: auto;
    gap: 30px;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    padding-right: 15px;
}
.bm-table-headers span {
    width: 60px;
    text-align: center;
}

/* Match List */
.bm-match-list {
    background: #1e1e1e;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.bm-league-header {
    background: #2a2a2a;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bm-league-header img {
    height: 16px;
    width: 16px;
}

.bm-match-row {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #2d2d2d;
    font-size: 13px;
    color: #ccc;
}
.bm-match-row:hover {
    background: #252525;
}
.bm-star {
    color: #666;
    cursor: pointer;
    font-size: 16px;
}
.bm-star:hover {
    color: #fbbf24;
}
.bm-time {
    width: 50px;
    text-align: center;
    margin-left: 10px;
}
.bm-teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.bm-team {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bm-team img {
    width: 16px;
    height: 16px;
}
.bm-prob, .bm-market, .bm-tip, .bm-odd {
    width: 60px;
    text-align: center;
    margin-left: 30px;
}
.bm-tip {
    color: #fff;
    font-weight: 600;
}
.bm-odd {
    color: #fbbf24;
}


/* --- Card System --- */
.bm-card {
    background: #1e1e1e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bm-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Article Cards Refinement */
.bm-article-card {
    background: #181818;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.bm-article-card:hover {
    transform: translateY(-5px);
    border-color: #4CAF50;
}
.bm-article-img {
    height: 150px;
    background-size: cover;
    background-position: center;
}
.bm-article-body {
    padding: 15px;
}
.bm-article-date {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.bm-article-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.bm-article-title a {
    color: #fff !important; /* Force white title */
    text-decoration: none;
}
.bm-article-excerpt {
    font-size: 12px;
    color: #aaa;
    line-height: 1.4;
    margin: 0;
}

/* Winning Cards Refinement */
.bm-winning-card {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bm-winning-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(76, 175, 80, 0.25);
}

.bm-winning-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #4CAF50;
}

.bm-winning-badge {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bm-winning-match {
    margin: 8px 0;
    flex-grow: 1;
}

.bm-winning-team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #eee;
    font-weight: 500;
    margin-bottom: 3px;
}

.bm-team-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bm-team-logo-tiny {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.bm-score {
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    min-width: 15px;
    text-align: right;
}

.bm-header-tip {
    font-size: 8.5px;
    color: #4CAF50;
    font-weight: 700;
    background: rgba(76, 175, 80, 0.12);
    padding: 1px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
}

.bm-winning-team-row i {
    font-size: 11px;
    color: #4CAF50;
}

.bm-winning-info {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bm-winning-tip-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bm-winning-category {
    font-size: 8px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.bm-winning-tip {
    font-size: 11px;
    color: #4CAF50;
    font-weight: 700;
    background: rgba(76, 175, 80, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.bm-winning-odds {
    font-size: 11px;
    font-weight: 700;
    color: #888;
}

.bm-winning-odds {
    background: #252525;
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(251, 191, 36, 0.1);
}

/* Standings Table Refinement */
.bm-standings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.bm-standings-table th {
    background: transparent !important;
    padding: 12px 10px;
    font-size: 11px;
    color: #555 !important; /* Darker header text */
    text-transform: uppercase;
    text-align: center;
    border: none !important;
    font-weight: 600;
}
.bm-standings-table td {
    padding: 12px 10px;
    font-size: 13px;
    vertical-align: middle;
    border-top: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    text-align: center;
}
.bm-standings-table tr:last-child td {
    border-bottom: none !important;
}
.bm-standings-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Tab button override for standings */
.bm-market-filters .bm-market-btn.nav-link {
    border-radius: 30px;
    padding: 6px 15px;
}
.bm-market-filters .bm-market-btn.nav-link.active {
    background: #fff;
    color: #000 !important;
}

.hideLG {
    display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .bm-sidebar-nav {
        width: 60px;
        left: -60px;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0,0,0,0.3);
    }
    .bm-sidebar-nav .bm-sidebar-logo, .bm-sidebar-nav .bm-sidebar-link span {
        display: none;
    }
    .bm-sidebar-nav .bm-sidebar-link {
        justify-content: center;
        padding: 15px 0;
    }
    .bm-sidebar-nav.show-mobile {
        left: 0;
    }

    .bm-sidebar { 
        display: flex; 
        position: fixed;
        top: 0;
        height: 100vh;
        left: -310px;
        transition: left 0.3s ease;
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
        z-index: 999;
        background-color: #1a1a1a;
        padding-top: 0;
    }
    .bm-sidebar.show-mobile {
        left: 60px;
    }
    .bm-main-content { margin-left: 0; }
    .hideLG { display: flex !important; align-items: center; }
    .bm-content-body { padding: 15px; }
    .bm-page-title { font-size: 14px; margin-top: 5px; text-align: center; }
    .bm-info-link { justify-content: center; text-align: center; }
    .bm-table-headers { display: none; }
    .bm-prob, .bm-market { display: none; }
    .bm-top-navbar { justify-content: space-between; position: sticky; top: 0; z-index: 900; }
    .bm-market-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    .bm-navbar-left { 
        display: flex; 
        align-items: center;
        flex-wrap: nowrap;
        flex: 1;
        min-width: 0;
    }
    .bm-mobile-logo {
        display: flex;
        align-items: center;
        white-space: nowrap;
        overflow: hidden;
        flex-shrink: 1;
    }

    .bm-standings-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .bm-standings-table-wrapper::-webkit-scrollbar {
        display: none;
    }
    .bm-standings-table {
        min-width: 100%;
    }
    
    .bm-date-nav {
        white-space: nowrap;
        gap: 5px;
    }
}

.bm-icon-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- League Standings Redesign --- */
.bm-standings-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.bm-standings-tabs {
    display: flex;
    gap: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}
.bm-standings-tab {
    color: #888;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
}
.bm-standings-tab.active {
    color: #fff;
}
.bm-standings-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
}

.bm-sub-pills {
    display: flex;
    gap: 10px;
}
.bm-sub-pill {
    background: #2a2a2a;
    color: #aaa;
    border: none;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.bm-sub-pill:hover {
    background: #333;
    color: #fff;
}
.bm-sub-pill.active {
    background: #fff;
    color: #000;
}

/* Rank Circles */
.bm-rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #888;
}
.bm-rank-green {
    background: #4caf50;
    color: #fff;
}
.bm-rank-blue {
    background: #007bff;
    color: #fff;
}

.bm-team-logo-small {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 12px;
}

.bm-team-name-small {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Table columns matching screenshot */
.bm-col-team { text-align: left !important; min-width: 140px; }
.bm-col-stat { width: 40px; color: #888; text-align: center; }
.bm-col-pts { width: 40px; color: #fff; font-weight: 700; text-align: center; }

@media (max-width: 600px) {
    .bm-col-team { min-width: 100px; }
    .bm-team-logo-small { margin-right: 6px; width: 16px; height: 16px; }
    .bm-team-name-small { font-size: 11px; }
    .bm-col-stat, .bm-col-pts { width: 30px; font-size: 10px; padding: 10px 2px !important; }
    .bm-standings-table td, .bm-standings-table th { padding: 10px 2px !important; }
    .bm-rank-num { width: 18px; height: 18px; font-size: 9px; }
    .bm-standings-table th { font-size: 9px; }
}

/* Info Article Card */
.bm-info-article-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bm-article-content {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

.bm-content-h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
}

.bm-content-h4 {
    color: #eee;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 8px;
}

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

.bm-content-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.bm-content-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 13.5px;
}

.bm-content-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.bm-disclaimer {
    background: rgba(239, 68, 68, 0.05);
    border-left: 3px solid #ef4444;
    padding: 12px 15px;
    font-size: 13px;
    color: #d19a9a;
    font-style: italic;
    margin: 25px 0;
    border-radius: 0 6px 6px 0;
}

/* Legend */
.bm-standings-legend {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}
.bm-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #888;
}
.bm-indicator {
    width: 4px;
    height: 12px;
    border-radius: 2px;
}
.bg-uefa-cl { background: #4caf50; }
.bg-uefa-el { background: #03a9f4; }
.bg-relegation { background: #f44336; }

/* --- New Footer Redesign --- */
.bm-footer {
    background-color: #0f0f0f;
    padding: 60px 0 30px;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.bm-footer-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: #fff;
}

.bm-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bm-footer-list li {
    margin-bottom: 12px;
}

.bm-footer-link {
    color: #999;
    text-decoration: none !important;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.bm-footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.bm-footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.bm-footer-social a {
    color: #fff;
    font-size: 22px;
    transition: transform 0.2s ease, color 0.2s ease;
    opacity: 0.9;
}

.bm-footer-social a:hover {
    transform: translateY(-3px);
    color: #4CAF50;
    opacity: 1;
}

.bm-app-badges {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.bm-app-badge {
    height: 40px;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.bm-app-badge:hover {
    transform: scale(1.05);
}

.bm-footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bm-copyright {
    color: #666;
    font-size: 13px;
}

.bm-copyright span {
    color: #4CAF50;
    font-weight: 600;
}

.bm-footer-extra-links {
    display: flex;
    gap: 20px;
}

.bm-footer-extra-link {
    color: #666;
    font-size: 13px;
    text-decoration: none !important;
}

.bm-footer-extra-link:hover {
    color: #999;
}

@media (max-width: 768px) {
    .bm-footer-col {
        margin-bottom: 40px;
    }
    
    .bm-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .bm-footer-extra-links {
        justify-content: center;
    }
}

/* Premium Dark Pagination */
.pagination {
    margin-bottom: 0;
    gap: 5px;
}

.pagination .page-item .page-link {
    background: #1e1e1e !important;
    border: 1px solid #2c2c2c !important;
    color: #eee !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination .page-item.active .page-link {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #000 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.pagination .page-item:not(.active):hover .page-link {
    background: #252525 !important;
    border-color: #444 !important;
    color: #fff !important;
}

.pagination .page-item.disabled .page-link {
    background: #181818 !important;
    border-color: #222 !important;
    color: #555 !important;
    cursor: not-allowed;
}

/* Custom Install App Button */
.bm-install-app-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4af37 0%, #996515 100%);
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: none;
}

.bm-install-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5be48 0%, #ab761a 100%);
    color: #000 !important;
}

.bm-install-app-btn i {
    font-size: 20px;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 10px;
}
