/* Dynamic Theme Variables */
:root {
    --primary-color: #fddd04;
    --secondary-color: #f0c419;
    --IBet-primary: var(--primary-color);
    --IBet-secondary: var(--secondary-color);
    --primary: var(--primary-color);
    --secondary: #000;
    --body: #f3f5f9;
    --content: #fff;
    --text-base: #242424;
    --text-light: #757575;
    --line: #d8d8d8;
}

/* Base Styling */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--body);
    color: var(--text-base);
    margin: 0;
    padding: 0;
    font-weight: 400;
}

/* Header */
.navbar {
    background-color: var(--content) !important;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem;
}

.navbar-brand {
    color: var(--text-base) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: 5px;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #e6c403;
    border-color: #e6c403;
    color: var(--secondary);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 5px;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Cards */
.card {
    background-color: var(--content);
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.game-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

/* Layout */
.sidebar {
    background-color: var(--content);
    min-height: 100vh;
    padding: 20px;
    border-right: 1px solid var(--line);
}

.main-content {
    background-color: var(--body);
    padding: 20px;
    min-height: 100vh;
}

/* Game Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Forms */
.form-control {
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(253, 221, 4, 0.25);
}

/* Navigation Links */
.nav-link {
    color: var(--text-base) !important;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--primary);
    color: var(--secondary) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .main-content {
        padding: 15px;
    }
}

/* Casino Slider Styles */
.casino-slide {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.casino-title {
    animation: neonGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(253, 221, 4, 0.8);
}

.casino-btn {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.casino-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.casino-icons {
    position: relative;
}

.casino-icon {
    font-size: 4rem;
    margin: 0 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(253, 221, 4, 0.6));
}

.casino-icon:nth-child(2) {
    animation-delay: 1.5s;
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px rgba(253, 221, 4, 0.8), 0 0 20px rgba(253, 221, 4, 0.6);
    }
    to {
        text-shadow: 0 0 20px rgba(253, 221, 4, 1), 0 0 30px rgba(253, 221, 4, 0.8);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.carousel-indicators button {
    background-color: var(--IBet-primary);
    border: 2px solid #000;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
/* Provider Tabs */
.provider-tabs-container {
    background: rgba(253, 221, 4, 0.1);
    border-radius: 10px;
    padding: 15px;
}

.provider-tabs {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.provider-tabs::-webkit-scrollbar {
    display: none;
}

.provider-tab {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.provider-tab:hover {
    border-color: var(--IBet-primary);
    transform: translateY(-2px);
}

.provider-tab.active {
    background: var(--IBet-primary);
    border-color: var(--IBet-primary);
    color: #000;
}

.provider-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    position: relative;
}

.provider-icon.hot .hot-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4757;
    color: white;
    font-size: 0.6rem;
    padding: 2px 4px;
    border-radius: 8px;
    font-weight: bold;
}

.provider-name {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.game-image-container {
    position: relative;
    aspect-ratio: 287/200;
    overflow: hidden;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: var(--IBet-primary);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #f0c419;
    transform: scale(1.05);
}

.game-title {
    padding: 15px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

/* Pagination */
.IBet-pagination .page-link {
    background: white;
    border: 2px solid #ddd;
    color: #333;
    padding: 8px 12px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.IBet-pagination .page-item.active .page-link {
    background: var(--IBet-primary);
    border-color: var(--IBet-primary);
    color: #000;
}

.IBet-pagination .page-link:hover {
    background: var(--IBet-primary);
    border-color: var(--IBet-primary);
    color: #000;
}

.IBet-pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #ddd;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .provider-tab {
        min-width: 70px;
        padding: 8px 12px;
    }
    
    .provider-icon {
        font-size: 1.2rem;
    }
}
/* Footer Styles */
.IBet-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-top: 3px solid var(--IBet-primary);
}

.IBet-footer h5, .IBet-footer h6 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.IBet-footer ul li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.IBet-footer ul li:hover {
    transform: translateX(5px);
}

.IBet-footer a:hover {
    color: var(--IBet-primary) !important;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: rgba(253, 221, 4, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--IBet-primary);
    color: #000 !important;
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-icon {
    display: inline-block;
    width: 40px;
    height: 25px;
    background: white;
    color: #333;
    text-align: center;
    line-height: 25px;
    border-radius: 4px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 221, 4, 0.3);
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info i {
    color: var(--IBet-primary);
}
/* Dashboard & Admin Styles */
.casino-action-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.casino-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(253, 221, 4, 0.3);
}

.casino-action-card .casino-icon {
    animation: pulse 2s infinite;
}

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

.welcome-section {
    background: linear-gradient(135deg, rgba(253, 221, 4, 0.1) 0%, rgba(240, 196, 25, 0.1) 100%);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(253, 221, 4, 0.3);
}

.IBet-table {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.IBet-table thead th {
    background: #2c3e50;
    color: var(--IBet-primary);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.IBet-table tbody tr:hover {
    background: rgba(253, 221, 4, 0.1);
}

.bg-gradient {
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}
/* Header & Navigation Styles */
.IBet-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Topbar Styles */
.IBet-topbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    height: 60px;
    border-bottom: 2px solid var(--IBet-primary);
}

.topbar-logo {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo-text {
    color: var(--IBet-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.topbar-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.topbar-nav .nav-item {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.topbar-nav .nav-item:hover,
.topbar-nav .nav-item.active {
    background: var(--IBet-primary);
    color: #000;
}

.balance-display {
    background: rgba(253, 221, 4, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid var(--IBet-primary);
}

.balance-amount {
    color: var(--IBet-primary);
    font-weight: bold;
}

.user-menu-btn {
    background: none;
    border: 1px solid var(--IBet-primary);
    color: var(--IBet-primary);
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: var(--IBet-primary);
    color: #000;
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(253, 221, 4, 0.5); }
    50% { box-shadow: 0 0 20px rgba(253, 221, 4, 0.8); }
}

/* Navigation Menu */
.IBet-navigation {
    background: linear-gradient(135deg, var(--IBet-primary) 0%, #f0c419 100%);
    padding: 0;
}

.nav-menu {
    padding: 10px 0;
    gap: 20px;
}

.nav-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu-item:hover,
.nav-menu-item.active {
    background: rgba(0,0,0,0.1);
    color: #000;
    transform: translateY(-2px);
}

.promo-item {
    position: relative;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white !important;
    animation: promo-pulse 2s infinite;
}

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

.promo-icon {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Dropdown Menus */
.nav-dropdown {
    background: white;
    border: 2px solid var(--IBet-primary);
    border-radius: 15px;
    padding: 20px;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.provider-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.provider-btn:hover {
    border-color: var(--IBet-primary);
    transform: translateY(-2px);
}

.provider-btn img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.sports-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sport-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sport-item:hover {
    background: var(--IBet-primary);
    color: #000;
}

/* Mobile Menu */
.IBet-mobile-menu {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.IBet-mobile-menu .offcanvas-header {
    border-bottom: 2px solid var(--IBet-primary);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(253, 221, 4, 0.1);
    border-radius: 10px;
    border: 1px solid var(--IBet-primary);
}

.user-avatar i {
    font-size: 3rem;
    color: var(--IBet-primary);
}

.user-details h6 {
    margin: 0;
    color: var(--IBet-primary);
}

.user-details .balance {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    color: var(--IBet-primary);
    padding-left: 10px;
}

.mobile-nav-item i {
    width: 20px;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: 1px solid var(--IBet-primary);
    color: var(--IBet-primary);
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--IBet-primary);
    color: #000;
}

/* Main Content Adjustment */
.main-content {
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .IBet-topbar {
        height: 50px;
    }
    
    .topbar-logo {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        padding: 8px 0;
        gap: 10px;
    }
    
    .nav-menu-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
/* Redeem Banner Styles */
.redeem-banner {
    display: block;
    padding: 10px 0;
    position: relative;
    font-weight: bold;
    animation: bannerPulse 3s infinite;
}

.banner-message {
    flex: 1;
    text-align: center;
}

.redeem-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: inherit;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.redeem-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.close-banner-btn {
    border: 1px solid rgba(255,255,255,0.3) !important;
    color: inherit !important;
    padding: 4px 8px !important;
    font-size: 0.8rem !important;
    transition: all 0.3s ease;
}

.close-banner-btn:hover {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: scale(1.1);
}

@keyframes bannerPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

/* Scrolling Text Styles */
.scrolling-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 999;
}

.scrolling-text {
    display: block;
    padding: 8px 0;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
}

.scrolling-content {
    display: inline-block;
    animation: scroll-left linear infinite;
    padding-left: 100%;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Dynamic Navbar Styles */
.IBet-navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-bottom: 3px solid var(--primary-color);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-logo {
    max-height: 40px;
    width: auto;
}

.brand-text {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.IBet-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.IBet-navbar .nav-link:hover {
    background: var(--primary-color);
    color: #000 !important;
}

.IBet-btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: #000;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.IBet-btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000;
    transform: translateY(-2px);
}

.IBet-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.IBet-btn-outline:hover {
    background: var(--primary-color);
    color: #000;
}

/* Footer Logo */
.footer-logo {
    max-height: 60px;
    width: auto;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(253, 221, 4, 0.1);
    color: var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}
/* Bottom Navigation for Mobile */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-top: 2px solid var(--IBet-primary);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ccc;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.bottom-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--IBet-primary);
    background: rgba(253, 221, 4, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-item.active {
    color: var(--IBet-primary);
    background: rgba(253, 221, 4, 0.15);
}

/* Adjust main content for bottom nav on mobile */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 70px;
    }
    
    .IBet-footer {
        margin-bottom: 70px;
    }
    
    /* Hide desktop navigation on mobile */
    .topbar-nav {
        display: none !important;
    }
    
    /* Adjust topbar height on mobile */
    .IBet-topbar {
        height: 50px;
    }
    
    .topbar-logo {
        font-size: 1.2rem;
    }
    
    /* Mobile menu toggle visible */
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Desktop - hide bottom nav and mobile menu toggle */
@media (min-width: 768px) {
    .bottom-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .IBet-footer {
        margin-bottom: 0;
    }
}
/* Improved Mobile Menu Toggle - Golden Color */
.mobile-menu-toggle {
    background: none;
    border: 2px solid var(--IBet-primary);
    color: var(--IBet-primary);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(253, 221, 4, 0.3);
}

.mobile-menu-toggle:hover {
    background: var(--IBet-primary);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(253, 221, 4, 0.5);
}

/* Enhanced Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-top: 3px solid var(--IBet-primary);
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 5px 10px 5px;
    max-width: 100%;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #888;
    padding: 8px 6px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 55px;
    position: relative;
}

.bottom-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--IBet-primary);
    background: rgba(253, 221, 4, 0.15);
    transform: translateY(-3px);
}

.bottom-nav-item.active {
    color: var(--IBet-primary);
    background: rgba(253, 221, 4, 0.2);
}

.bottom-nav-item.active::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--IBet-primary);
    border-radius: 0 0 3px 3px;
}

.bottom-nav-item:active {
    transform: translateY(-1px) scale(0.95);
}

/* Update mobile adjustments */
@media (max-width: 767.98px) {
    body {
        padding-bottom: 80px;
    }
    
    .IBet-footer {
        margin-bottom: 80px;
    }
    
    /* Hide desktop navigation on mobile */
    .topbar-nav {
        display: none !important;
    }
    
    /* Adjust topbar height on mobile */
    .IBet-topbar {
        height: 50px;
    }
    
    .topbar-logo {
        font-size: 1.2rem;
    }
}
