/* ============================================
   RESPONSIVE CONSISTENCY - Unified Breakpoints
   Memastikan tampilan konsisten di Mobile, Tablet, dan Desktop
   ============================================ */

/* ============================================
   STANDARD BREAKPOINTS (Bootstrap 5.3.0)
   ============================================
   - Mobile: < 576px
   - Tablet: 576px - 991px
   - Desktop: 992px - 1199px
   - Large Desktop: 1200px - 1399px
   - XL Desktop: 1400px+
   ============================================ */

/* ============================================
   MOBILE (< 576px)
   ============================================ */
@media (max-width: 575.98px) {
    /* Container & Layout */
    .container {
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .row {
        margin-left: -12px;
        margin-right: -12px;
        width: calc(100% + 24px);
        max-width: calc(100% + 24px);
    }
    
    [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Typography - Consistent Scaling */
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .section-title-main {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    /* Buttons - Touch Friendly */
    .btn,
    .btn-hero-nav,
    .tab-btn,
    .filter-btn,
    .game-tile-button {
        min-height: 44px;
        font-size: 0.85rem;
        padding: 10px 16px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }
    
    .btn-hero-nav {
        flex: 1 1 calc(50% - 6px);
        min-width: calc(50% - 6px);
        max-width: calc(50% - 6px);
        margin: 3px;
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-nav-buttons {
        gap: 6px;
        padding: 0 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Cards & Grids */
    .slot-card,
    .provider-card,
    .game-tile-card {
        margin-bottom: 12px;
    }
    
    .stats-card {
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .stats-card h3 {
        font-size: 2rem;
    }
    
    .stats-card h5 {
        font-size: 0.85rem;
    }
    
    /* Forms */
    .form-control,
    .form-select {
        font-size: 0.9rem;
        padding: 10px 12px;
        min-height: 44px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    /* Tables */
    .table-responsive {
        font-size: 0.85rem;
    }
    
    .table th,
    .table td {
        padding: 8px 6px;
        font-size: 0.85rem;
    }
    
    /* Modals */
    .modal {
        padding: 0 !important;
    }
    
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
        width: calc(100% - 1rem);
    }
    
    .modal-dialog-centered {
        min-height: calc(100% - 1rem);
    }
    
    .modal-content {
        border-radius: 8px;
        max-height: calc(100vh - 1rem);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .modal-header {
        padding: 12px 15px;
        flex-shrink: 0;
    }
    
    .modal-header .modal-title {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 15px;
        font-size: 0.9rem;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex: 1 1 auto;
    }
    
    .modal-footer {
        padding: 10px 15px;
        flex-shrink: 0;
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 40px !important;
        max-height: 40px !important;
    }
    
    /* Floating Elements */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        min-width: 45px;
        min-height: 45px;
    }
}

/* ============================================
   TABLET (576px - 991px)
   ============================================ */
@media (min-width: 576px) and (max-width: 991.98px) {
    /* Container & Layout */
    .container {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
    
    /* Typography - Consistent Scaling */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .section-title-main {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    /* Buttons */
    .btn,
    .btn-hero-nav {
        font-size: 0.95rem;
        padding: 12px 20px;
        min-height: 44px;
    }
    
    .btn-hero-nav {
        flex: 0 1 auto;
        min-width: 120px;
    }
    
    .hero-nav-buttons {
        gap: 10px;
        padding: 0 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Cards & Grids */
    .slot-card,
    .provider-card {
        margin-bottom: 18px;
    }
    
    .stats-card {
        padding: 20px;
        margin-bottom: 18px;
    }
    
    .stats-card h3 {
        font-size: 2.2rem;
    }
    
    .stats-card h5 {
        font-size: 0.9rem;
    }
    
    /* Hero Stats & Features */
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .hero-feature-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
        max-width: calc(50% - 10px);
    }
    
    /* Forms */
    .form-control,
    .form-select {
        font-size: 0.95rem;
        padding: 12px 15px;
        min-height: 44px;
    }
    
    /* Tables */
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-body {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand img {
        height: 45px !important;
    }
    
    /* Floating Elements */
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}

/* ============================================
   DESKTOP (992px - 1199px)
   ============================================ */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* Container & Layout */
    .container {
        max-width: 1140px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 40px;
    }
    
    .section-title-main {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    /* Buttons */
    .btn,
    .btn-hero-nav {
        font-size: 1rem;
        padding: 12px 24px;
        min-height: 44px;
    }
    
    .btn-hero-nav {
        flex: 0 1 auto;
        min-width: 140px;
    }
    
    .hero-nav-buttons {
        gap: 15px;
    }
    
    /* Cards */
    .stats-card {
        padding: 25px;
    }
    
    .stats-card h3 {
        font-size: 2.5rem;
    }
    
    .stats-card h5 {
        font-size: 0.9rem;
    }
    
    /* Hero Stats & Features */
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .hero-feature-item {
        flex: 0 1 auto;
        min-width: 200px;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-brand img {
        height: 50px !important;
    }
    
    /* Floating Elements */
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px;
    }
}

/* ============================================
   LARGE DESKTOP (1200px - 1399px)
   ============================================ */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        max-width: 1320px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    
    .section-title-main {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
    
    .btn-hero-nav {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .stats-card h3 {
        font-size: 2.5rem;
    }
}

/* ============================================
   XL DESKTOP (1400px+)
   ============================================ */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.3;
        margin-bottom: 35px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 60px;
    }
    
    .section-title-main {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .btn-hero-nav {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .stats-card {
        padding: 30px;
    }
    
    .stats-card h3 {
        font-size: 2.8rem;
    }
    
    /* Hero Stats & Features */
    .hero-stats {
        flex-direction: row;
        gap: 30px;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }
    
    .hero-feature-item {
        flex: 0 1 auto;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px;
    }
}

/* ============================================
   CONSISTENCY FIXES - Cross Breakpoint
   ============================================ */

/* Ensure consistent spacing */
.hero-section {
    padding: 50px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .section {
        padding: 30px 0;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-section {
        padding: 45px 0 35px;
    }
    
    .section {
        padding: 35px 0;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .section {
        padding: 50px 0;
    }
}

/* Consistent grid behavior - Override dengan !important untuk konsistensi */
@media (max-width: 575.98px) {
    #slotList,
    #slotList.slot-grid-responsive,
    #demoSlotList {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #slotList,
    #slotList.slot-grid-responsive,
    #demoSlotList {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #slotList,
    #slotList.slot-grid-responsive,
    #demoSlotList {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #slotList,
    #slotList.slot-grid-responsive,
    #demoSlotList {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    #slotList,
    #slotList.slot-grid-responsive,
    #demoSlotList {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 15px !important;
    }
}

@media (min-width: 1400px) {
    #slotList,
    #slotList.slot-grid-responsive,
    #demoSlotList {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 15px !important;
    }
}

/* Consistent sorting controls */
@media (max-width: 575.98px) {
    .rtp-sorting-controls,
    .bola-sorting-controls,
    .liga-filter {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .rtp-sorting-controls .row,
    .bola-sorting-controls .row,
    .liga-filter .row {
        gap: 10px;
    }
    
    .rtp-sorting-controls [class*="col-"],
    .bola-sorting-controls [class*="col-"],
    .liga-filter [class*="col-"] {
        margin-bottom: 10px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .rtp-sorting-controls,
    .bola-sorting-controls,
    .liga-filter {
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .rtp-sorting-controls,
    .bola-sorting-controls,
    .liga-filter {
        padding: 15px;
        margin-bottom: 20px;
    }
}

/* Consistent table behavior */
#bolaTableContainer {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
}

#bolaTableContainer .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    padding: 0;
}

.bola-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

@media (max-width: 767.98px) {
    #bolaTableContainer {
        margin: 0 -12px;
        padding: 0 12px;
        width: calc(100% + 24px);
    }
    
    .bola-table {
        min-width: 600px;
        font-size: 0.8rem;
    }
    
    .bola-table th,
    .bola-table td {
        padding: 8px 6px;
        white-space: nowrap;
        min-width: 80px;
    }
    
    .bola-table th:first-child,
    .bola-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--card-bg);
        z-index: 10;
        min-width: 60px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }
}

@media (min-width: 768px) {
    #bolaTableContainer {
        margin: 0;
        padding: 0;
    }
    
    .bola-table {
        font-size: 0.9rem;
    }
    
    .bola-table th,
    .bola-table td {
        padding: 12px;
        white-space: normal;
    }
}

/* Consistent tab buttons */
.slot-nav-tabs,
.bola-nav-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 100px;
    text-align: center;
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Mobile & Tablet: 2 kolom untuk bola-nav-tabs */
@media (max-width: 991.98px) {
    .bola-nav-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        overflow-x: hidden;
        flex-wrap: wrap;
        padding: 0;
    }
    
    .bola-nav-tabs .tab-btn {
        flex: 0 0 calc(50% - 4px) !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 12px 10px;
        font-size: 0.85rem;
        min-height: 44px;
        box-sizing: border-box;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .slot-nav-tabs {
        gap: 6px;
        padding-bottom: 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: thin;
    }
    
    .slot-nav-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .slot-nav-tabs .tab-btn {
        min-width: 100px;
        padding: 8px 14px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    
    /* Bola nav tabs tetap 2 kolom */
    .bola-nav-tabs {
        gap: 8px;
    }
    
    .bola-nav-tabs .tab-btn {
        padding: 12px 8px;
        font-size: 0.8rem;
        min-height: 44px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .slot-nav-tabs {
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
    }
    
    .slot-nav-tabs .tab-btn {
        min-width: 120px;
        padding: 10px 16px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    /* Bola nav tabs tetap 2 kolom */
    .bola-nav-tabs {
        gap: 8px;
    }
    
    .bola-nav-tabs .tab-btn {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .slot-nav-tabs {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .slot-nav-tabs .tab-btn {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Bola nav tabs tetap 2 kolom di tablet */
    .bola-nav-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .bola-nav-tabs .tab-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Desktop: bola-nav-tabs kembali ke flex (1 baris) */
@media (min-width: 992px) {
    .slot-nav-tabs,
    .bola-nav-tabs {
        display: flex !important;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .tab-btn {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 0 1 auto !important;
        width: auto !important;
    }
}

/* Consistent provider cards */
#providerList,
#demoProviderList {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin-bottom: 20px;
}

.provider-item {
    min-width: 0;
}

.provider-card-compact {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-width: 140px;
    transition: all 0.3s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Mobile & Tablet: 2 kolom (sama seperti mobile) */
@media (max-width: 991.98px) {
    #providerList,
    #demoProviderList {
        gap: 8px;
        padding: 0;
        justify-content: space-between;
    }
    
    .provider-item {
        flex: 0 0 calc(50% - 4px) !important;
        width: calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    
    .provider-card-compact {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 12px 10px;
        gap: 8px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        border-radius: 14px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }
    
    .provider-name-compact {
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        text-align: left;
        flex: 1;
        min-width: 0;
    }
    
    .provider-logo-compact,
    .provider-logo-placeholder {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0;
    }
}

/* Tablet juga 2 kolom seperti mobile */
@media (min-width: 576px) and (max-width: 991.98px) {
    #providerList,
    #demoProviderList {
        gap: 8px;
        padding: 0;
        justify-content: space-between;
    }
    
    .provider-item {
        flex: 0 0 calc(50% - 4px) !important;
        width: calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    
    .provider-card-compact {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 12px 10px;
        gap: 8px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        border-radius: 14px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }
    
    .provider-name-compact {
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        text-align: left;
        flex: 1;
        min-width: 0;
    }
    
    .provider-logo-compact,
    .provider-logo-placeholder {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0;
    }
}

/* Desktop: kembali ke layout normal */
@media (min-width: 992px) {
    .provider-card-compact {
        flex: 0 1 auto;
        min-width: 140px;
    }
}

/* Consistent stats grid */
@media (max-width: 575.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 25px;
    }
}

/* Prevent layout shifts */
* {
    box-sizing: border-box;
}

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

/* Consistent transitions */
.card,
.btn,
.slot-card,
.provider-card,
.game-tile-card,
.stats-card,
.provider-card-compact {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Consistent hover/active states */
@media (min-width: 992px) {
    .card:hover,
    .slot-card:hover,
    .provider-card:hover,
    .game-tile-card:hover,
    .stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .provider-card-compact:hover {
        transform: translateY(-2px);
        border-color: var(--accent-primary, #0d6efd);
        box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    }
}

@media (max-width: 991.98px) {
    .card:active,
    .slot-card:active,
    .provider-card:active,
    .game-tile-card:active,
    .stats-card:active {
        transform: scale(0.98);
    }
    
    .provider-card-compact:active {
        transform: scale(0.95);
    }
}

/* Consistent focus states */
.form-control:focus,
.form-select:focus,
.btn:focus {
    outline: 2px solid var(--accent-primary, #0d6efd);
    outline-offset: 2px;
}

/* Consistent hover states */
@media (min-width: 992px) {
    .card:hover,
    .slot-card:hover,
    .provider-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
}

@media (max-width: 991.98px) {
    .card:active,
    .slot-card:active,
    .provider-card:active {
        transform: scale(0.98);
    }
}
