/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Sports Betting Page */
.sports-betting-page {
    padding: 20px 0;
    margin-bottom: 20px;
}

/* Sports Sidebar - Modern Mobil Tasarım */
.sports-sidebar {
    background: rgba(26, 26, 46, 0.95);
    border-radius: 16px;
    border: 1px solid #3d3d54;
    max-height: 500px;
    overflow: visible;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
	position: relative;
}


/* Search Section */
.search-section {
    padding: 20px;
    border-bottom: 1px solid #3d3d54;
    background: rgba(26, 26, 46, 0.98);
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(45, 45, 68, 0.8);
    border: 2px solid #3d3d54;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: rgba(45, 45, 68, 0.9);
}

.search-icon {
    color: #888;
    margin-right: 12px;
    font-size: 16px;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
    padding: 0;
}

.search-input::placeholder {
    color: #888;
}

.clear-search {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.clear-search:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.search-info {
    margin-top: 12px;
    text-align: center;
}

.search-info small {
    color: #888;
    font-size: 11px;
    line-height: 1.4;
}

/* Sidebar Header */
.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #3d3d54;
    position: sticky;
    top: 0;
    background: rgba(26, 26, 46, 0.98);
    z-index: 10;
    border-radius: 0;
}

.sidebar-header h4 {
    margin: 0;
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-header i {
    font-size: 1.4rem;
    color: #ffd700;
}

/* Sports List - Modern Tasarım */
.sports-list {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

.sport-category {
    border-bottom: 1px solid rgba(61, 61, 84, 0.3);
    transition: all 0.3s ease;
}

.sport-category:last-child {
    border-bottom: none;
}

.sport-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.sport-header:hover {
    background: rgba(255, 215, 0, 0.08);
}

.sport-header:active {
    background: rgba(255, 215, 0, 0.12);
}

.sport-header i {
    color: #ffd700;
    width: 24px;
    font-size: 1.2rem;
    margin-right: 12px;
}

.sport-header span {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    flex: 1;
}

.match-count {
    color: #888;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 12px;
    margin-right: 12px;
}

.expand-arrow {
    color: #ffd700;
    transition: transform 0.3s ease;
}

.expand-arrow i {
    font-size: 0.9rem;
    margin: 0;
}

.sport-category.expanded .expand-arrow i {
    transform: rotate(180deg);
}

/* Country List */
.country-list {
    background: rgba(45, 45, 68, 0.3);
    border-top: 1px solid rgba(61, 61, 84, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.country-list.active {
    max-height: 1450px;
}

.country-category {
    border-bottom: 1px solid rgba(61, 61, 84, 0.2);
}

.country-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 15px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.country-header:hover {
    background: rgba(255, 215, 0, 0.05);
}

.country-flag {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.country-name {
    color: #ccc;
    font-weight: 500;
    font-size: 0.95rem;
    flex: 1;
}

/* League List */
.league-list {
    background: rgba(26, 26, 46, 0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.league-list.active {
    max-height: 300px;
}

.league-category {
    padding: 12px 20px 12px 60px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(61, 61, 84, 0.1);
}

.league-category:hover {
    background: rgba(255, 215, 0, 0.03);
    color: #fff;
}

.league-category:last-child {
    border-bottom: none;
}

/* No Sports Message */
.no-sports {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.no-sports i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffd700;
    opacity: 0.5;
}

.no-sports p {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sports-sidebar {
        max-height: 400px;
        margin-bottom: 15px;
        border-radius: 12px;
    }
    
    .sidebar-header {
        padding: 16px;
    }
    
    .sidebar-header h4 {
        font-size: 1.1rem;
    }
    
    .sport-header {
        padding: 16px 16px;
    }
    
    .sport-header i {
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .sport-header span {
        font-size: 0.95rem;
    }
    
    .match-count {
        font-size: 0.8rem;
        padding: 3px 6px;
        margin-right: 10px;
    }
    
    .country-header {
        padding: 12px 16px 12px 32px;
    }
    
    .country-name {
        font-size: 0.9rem;
    }
    
    .league-category {
        padding: 10px 16px 10px 48px;
        font-size: 0.85rem;
    }
    
    .search-section {
        padding: 16px;
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .search-box {
        padding: 10px 14px;
    }
    
    .search-input {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .quick-nav-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .quick-nav-item {
        padding: 10px 6px;
        min-height: 70px;
    }
    
    .quick-nav-icon {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .quick-nav-item span {
        font-size: 0.7rem;
    }
    
    .sports-sidebar {
        max-height: 350px;
        border-radius: 10px;
    }
    
    .sidebar-header {
        padding: 14px;
    }
    
    .sport-header {
        padding: 14px 14px;
    }
    
    .country-header {
        padding: 10px 14px 10px 28px;
    }
    
    .league-category {
        padding: 8px 14px 8px 42px;
    }
	
	.search-section {
        padding: 14px;
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
}

/* Smooth Animations */
.sport-category,
.country-category,
.league-category {
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Hover Effects */
.sport-header:hover .expand-arrow,
.country-header:hover .expand-arrow {
    transform: scale(1.1);
}

.sport-header:hover .match-count,
.country-header:hover .match-count {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

/* Loading States */
.sports-list.loading {
    opacity: 0.6;
    pointer-events: none;
}

.sports-list.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #ffd700;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}


/* Header Styles */
.main-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #3d3d54;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Mobile Side Menu Styles */
.mobile-nav-container {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 60px;
    background: rgba(26, 26, 46, 0.98);
    border-bottom: 1px solid #3d3d54;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    background: rgba(45, 45, 68, 0.8);
    border: 1px solid #3d3d54;
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    color: #ffd700;
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Left Side Sliding Menu */
.mobile-side-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-right: 1px solid #3d3d54;
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-side-menu.active {
    left: 0;
}

/* Side Menu Header */
.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(45, 45, 68, 0.3);
    border-bottom: 1px solid #3d3d54;
    position: sticky;
    top: 0;
    z-index: 10;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffd700;
}

.user-details {
    flex: 1;
}

.user-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.user-balance {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 500;
}

.close-menu-btn {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 8px;
    padding: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.close-menu-btn:hover {
    background: rgba(220, 53, 69, 0.3);
    transform: scale(1.05);
}

/* Side Menu Content */
.side-menu-content {
    padding: 20px 0;
}

.menu-section {
    margin-bottom: 30px;
}

.menu-section-title {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 20px;
    opacity: 0.8;
}

.menu-item {
    margin-bottom: 5px;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.menu-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #ffd700;
    color: #ffd700;
    transform: translateX(5px);
}

.menu-link.active {
    background: rgba(255, 215, 0, 0.15);
    border-left-color: #ffd700;
    color: #ffd700;
}

.menu-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: inherit;
}

.menu-link span {
    font-size: 1rem;
    font-weight: 500;
    color: inherit;
}

/* Logout Link Special Styling */
.logout-link {
    color: #ff6b6b !important;
}

.logout-link:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    border-left-color: #ff6b6b !important;
    color: #ff6b6b !important;
}

.logout-link i {
    color: inherit !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body State When Menu is Open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mobile-nav-container {
        top: 60px;
        height: 50px;
    }
    
    .mobile-menu-toggle {
        padding: 6px 10px;
        font-size: 1rem;
        min-width: 40px;
        height: 40px;
    }
    
    .mobile-side-menu {
        width: 300px;
        left: -300px;
    }
    
    .side-menu-header {
        padding: 15px;
    }
    
    .user-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .user-name {
        font-size: 0.9rem;
    }
    
    .user-balance {
        font-size: 0.8rem;
    }
    
    .menu-link {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .menu-link i {
        font-size: 1.1rem;
        width: 22px;
    }
    
    .menu-link span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .mobile-nav-container {
        top: 55px;
        height: 45px;
        padding: 0 10px;
    }
    
    .mobile-menu-toggle {
        padding: 5px 8px;
        font-size: 0.9rem;
        min-width: 36px;
        height: 36px;
    }
    
    .mobile-side-menu {
        width: 280px;
        left: -280px;
    }
    
    .side-menu-header {
        padding: 12px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .user-name {
        font-size: 0.85rem;
    }
    
    .user-balance {
        font-size: 0.75rem;
    }
    
    .menu-link {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .menu-link i {
        font-size: 1rem;
        width: 20px;
    }
    
    .menu-link span {
        font-size: 0.85rem;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 992px) {
    .mobile-nav-container {
        display: none !important;
    }
}

/* Mobile Quick Navigation for Home Page */
.mobile-quick-nav {
    background: rgba(26, 26, 46, 0.95);
    border-bottom: 1px solid #3d3d54;
    padding: 20px 0;
    margin-bottom: 0;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 15px 10px;
    border-radius: 16px;
    background: rgba(45, 45, 68, 0.8);
    border: 1px solid #3d3d54;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-nav-item:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.quick-nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.quick-nav-item:hover .quick-nav-icon {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.quick-nav-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.quick-nav-item span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Responsive Quick Navigation */
@media (max-width: 576px) {
    .mobile-quick-nav {
        padding: 15px 0;
    }
    
    .quick-nav-grid {
        gap: 10px;
    }
    
    .quick-nav-item {
        padding: 12px 8px;
    }
    
    .quick-nav-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .quick-nav-icon i {
        font-size: 1.2rem;
    }
    
    .quick-nav-item span {
        font-size: 0.7rem;
    }
}

/* Active State for Quick Navigation */
.quick-nav-item.active {
    background: rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    color: #ffd700;
}

.quick-nav-item.active .quick-nav-icon {
    background: rgba(255, 215, 0, 0.4);
}

/* Sports Betting Page Mobile Adjustments */
@media (max-width: 768px) {
    .sports-betting-page {
        padding: 10px 0;
    }
    
    .sports-sidebar {
        margin-bottom: 15px;
    }
    
    .matches-section {
        padding: 15px;
    }
}

/* Live Betting Page Mobile Adjustments */
@media (max-width: 768px) {
    .live-betting-layout {
        padding: 10px 0;
    }
    
    .live-matches-sidebar {
        margin-bottom: 15px;
    }
    
    .live-matches-content {
        padding: 15px;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700 !important;
}

.navbar-brand i {
    margin-right: 8px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700 !important;
}

.nav-link i {
    margin-right: 5px;
}

.user-balance {
    background: #ffd700;
    color: #1a1a2e;
	width: 90px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffd700;
}

.hero-title i {
    margin-right: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    text-align: center;
    font-size: 8rem;
    color: #ffd700;
    opacity: 0.3;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: rgba(45, 45, 68, 0.5);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    border: 1px solid #3d3d54;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Recent Matches Section */
.recent-matches-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: #ffd700;
    font-size: 2rem;
}

.section-header h2 i {
    margin-right: 10px;
}

.match-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 12px;
    border: 1px solid #3d3d54;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.match-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

.match-teams {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team {
    margin: 0.5rem 0;
}

.team-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.match-vs {
    color: #ffd700;
    font-weight: bold;
    margin: 0.5rem 0;
}

.match-odds {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.odds-btn {
    flex: 1;
    background: rgba(45, 45, 68, 0.8);
    border: 1px solid #3d3d54;
    border-radius: 8px;
    padding: 0.8rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.odds-btn:hover {
    background: #ffd700;
    color: #1a1a2e;
    border-color: #ffd700;
}

.odds-label {
    font-weight: bold;
    font-size: 1.1rem;
}

.odds-value {
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Live Matches Section */
.live-matches-section {
    padding: 60px 0;
    background: rgba(220, 53, 69, 0.05);
    border-top: 1px solid rgba(220, 53, 69, 0.1);
    border-bottom: 1px solid rgba(220, 53, 69, 0.1);
}

.live-matches-section .section-header h2 {
    color: #dc3545;
}

.live-matches-section .section-header .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.live-matches-section .section-header .btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}

/* Live Match Styles */
.live-match {
    border-color: #dc3545;
    background: rgba(26, 26, 46, 0.95);
    position: relative;
}



.live-match .match-status.live {
    color: #dc3545;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.live-match .match-status.live i {
    color: #dc3545;
    margin-right: 5px;
}

.live-match .match-info {
    margin-bottom: 1rem;
}

.live-match .league-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
    color: #ccc;
}

.live-match .country {
    font-weight: 600;
    color: #ffd700;
}

.live-match .league {
    color: #aaa;
}

.live-match .live-odds {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
}

.live-match .live-odds:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: rgba(45, 45, 68, 0.5);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 20px 0;
}

/* Footer */
.main-footer {
    background: rgba(26, 26, 46, 0.95);
    border-top: 1px solid #3d3d54;
    padding: 40px 0 20px;
    margin-top: auto;
}

.main-footer h5 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.main-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: #ffd700;
}

.main-footer i {
    margin-right: 8px;
}

/* Betting Slip Styles */
.betting-slip {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
    width: 350px;
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid #3d3d54;
    border-radius: 12px 0 0 12px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow: hidden;
}

.betting-slip.hidden {
    transform: translateX(100%);
}

.slip-header {
    background: rgba(45, 45, 68, 0.8);
    padding: 1rem;
    border-bottom: 1px solid #3d3d54;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slip-header h5 {
    color: #ffd700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slip-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-toggle-slip, .btn-close, .btn-clear {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-toggle-slip:hover, .btn-close:hover, .btn-clear:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.btn-clear:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.btn-toggle-slip i {
    transition: transform 0.3s ease;
}

.betting-slip.hidden .btn-toggle-slip i {
    transform: rotate(180deg);
}

.slip-content {
    padding: 1rem;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.empty-slip {
    text-align: center;
    color: #ccc;
    padding: 2rem 1rem;
}

.empty-slip i {
    font-size: 2rem;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.empty-slip p {
    margin: 0;
    font-style: italic;
}

.slip-summary {
    border-top: 1px solid #3d3d54;
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-row span {
    color: #ccc;
    font-weight: 500;
}

.summary-row input {
    background: rgba(45, 45, 68, 0.8);
    border: 1px solid #3d3d54;
    color: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    width: 120px;
    text-align: right;
}

.summary-row input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

/* Betting Slip Toggle Button */
.betting-slip-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(0);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    padding: 1rem 1.5rem;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}

.betting-slip-toggle:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateX(-5px);
}

.betting-slip-toggle i {
    font-size: 1.5rem;
}

.toggle-text {
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.bet-count {
    background: #1a1a2e;
    color: #ffd700;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    border: 2px solid #1a1a2e;
}

.betting-slip-toggle.hide {
    display: none;
}

/* Bet Items */
.bet-item {
    background: linear-gradient(135deg, rgba(45, 45, 68, 0.8), rgba(45, 45, 68, 0.6));
    border: 1px solid #3d3d54;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bet-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.bet-item.live {
    border-left: 4px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(45, 45, 68, 0.8));
}

.bet-match {
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bet-match .live-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.bet-selection {
    color: #ffd700;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.bet-odds {
    color: #00ff88;
    font-weight: bold;
    font-size: 0.9rem;
    background: rgba(0, 255, 136, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 0.3rem;
}

.remove-bet {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 107, 107, 0.2);
    border: none;
    color: #ff6b6b;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.remove-bet:hover {
    background: rgba(255, 107, 107, 0.4);
    color: #fff;
    transform: scale(1.1);
}

/* Auth Pages */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.auth-card {
    background: rgba(26, 26, 46, 0.95);
    border: 1px solid #3d3d54;
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}

.auth-card h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 2rem;
}

.form-control {
    background: rgba(45, 45, 68, 0.8);
    border: 1px solid #3d3d54;
    border-radius: 8px;
    color: #fff;
    padding: 0.8rem;
}

.form-control:focus {
    background: rgba(45, 45, 68, 0.9);
    border-color: #ffd700;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-label {
    color: #ccc;
    font-weight: 500;
}

.btn-warning {
    background: #ffd700;
    border-color: #ffd700;
    color: #1a1a2e;
    font-weight: bold;
}

.btn-warning:hover {
    background: #ffed4e;
    border-color: #ffed4e;
    color: #1a1a2e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        font-size: 4rem;
    }
    
    .betting-slip {
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        transform: none;
        border-radius: 0;
    }
    
    .betting-slip.hidden {
        transform: translateX(100%);
    }
    
    .betting-slip-toggle {
        right: 0;
        transform: none;
        top: 50%;
    }
    
    .betting-slip-toggle:hover {
        transform: translateX(-5px);
    }
    
    .match-odds {
        flex-direction: column;
        gap: 5px;
    }
    
    .odds-btn {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .main-content {
        min-height: auto;
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.match-card,
.stat-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(45, 45, 68, 0.5);
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
} 

/* Modern Bahis Onay Modalı */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modern-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    border: 1px solid #3d3d54;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modern-modal {
    transform: scale(1);
}

.modern-header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #3d3d54;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 18px;
}

.modern-header h3 {
    margin: 0;
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
}

.modern-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modern-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
    background: #1a1a2e;
}

.modern-summary {
    color: #ffffff;
}

.summary-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #3d3d54;
}

.summary-header h4 {
    margin: 0;
    color: #ffd700;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modern-details {
    margin-bottom: 25px;
}

.modern-detail {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3d3d54;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.modern-detail:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffd700;
    transform: translateY(-2px);
}

.detail-number {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-match {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.detail-selection {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.selection-type {
    background: #ffd700;
    color: #1a1a2e;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
}

.selection-team {
    color: #cccccc;
}

.selection-odds {
    color: #4CAF50;
    font-weight: 600;
}

.modern-totals {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #3d3d54;
    border-radius: 15px;
    padding: 20px;
}

.modern-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-row:last-child {
    border-bottom: none;
}

.modern-row.highlight {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 0 -10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.total-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.total-label i {
    color: #ffd700;
    width: 16px;
}

.total-value {
    font-weight: 700;
    font-size: 16px;
}

.odds-value {
    color: #ffd700;
}

.amount-value {
    color: #ffd700;
}

.win-value {
    color: #4CAF50;
    font-size: 18px;
}

.modern-footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #3d3d54;
}

.modern-btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex: 1;
}

.modern-btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
    transform: translateY(-2px);
}

.modern-btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    color: #1a1a2e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex: 1;
}

.modern-btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Scrollbar stilleri */
.modern-body::-webkit-scrollbar {
    width: 6px;
}

.modern-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.modern-body::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 3px;
}

.modern-body::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
} 

/* Başarı Modalı */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal-overlay.show {
    opacity: 1;
}

.success-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    border: 1px solid #4CAF50;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
    max-width: 450px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-modal-overlay.show .success-modal {
    transform: scale(1);
}

.success-modal-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.success-modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.success-modal-body {
    padding: 30px;
    text-align: center;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-details h4 {
    color: #4CAF50;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.success-details p {
    color: #ffffff;
    margin: 8px 0;
    font-size: 14px;
}

.success-details strong {
    color: #4CAF50;
    font-weight: 700;
}

.success-modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #3d3d54;
}

.btn-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-success:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Hata Modalı */
.error-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-modal-overlay.show {
    opacity: 1;
}

.error-modal {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    border: 1px solid #f44336;
    box-shadow: 0 20px 60px rgba(244, 67, 54, 0.3);
    max-width: 450px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.error-modal-overlay.show .error-modal {
    transform: scale(1);
}

.error-modal-header {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    padding: 20px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.error-modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.error-modal-body {
    padding: 30px;
    text-align: center;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
}

.error-content p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.error-modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #3d3d54;
}

.btn-danger {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
} 

/* ===== MODERN FOOTER STYLES ===== */

.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    margin-top: 4rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1;
}

.footer-waves svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0 1rem;
	width: 100%;
}

.footer-main {
    margin-bottom: 2rem;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
}

.brand-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-description {
    color: #b8c5d6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

.social-link.facebook:hover {
    background: linear-gradient(45deg, #1877f2, #3b5998);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-link.twitter:hover {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #e4405f, #f77737);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

.social-link.telegram:hover {
    background: linear-gradient(45deg, #0088cc, #229ed9);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.social-link.whatsapp:hover {
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Footer Sections */
.footer-section {
    margin-bottom: 1.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 0.75rem;
    text-decoration: none;
}

.footer-links a i {
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: #1a1a2e;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: #8fa3c7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.copyright {
    color: #8fa3c7;
    font-size: 0.9rem;
}

.copyright i {
    margin-right: 0.5rem;
    color: #ffd700;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.badge-item i {
    margin-right: 0.5rem;
    color: #ffd700;
    font-size: 0.9rem;
}

.badge-item span {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .contact-item {
        padding: 0.5rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.75rem;
    }
    
    .contact-icon i {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .brand-logo {
        font-size: 1.6rem;
        justify-content: center;
    }
    
    .brand-description {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Hover Effects */
.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Glow Effect */
.social-link:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.contact-item:hover .contact-icon {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
} 

/* ===== ÜLKE BAYRAKLARI CSS ===== */

/* Bayrak ikonları için genel stil */
.country-flag {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url('/assets/img/flags-32.dc373ff286dc8c609ef0.png');
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ISO koduna göre bayrak pozisyonları */
.icon-32xAUS { background-position: -32px 0px; }
.icon-32xWRLD { background-position: -416px -449px; }
.icon-32xFIN { background-position: 0px -32px; }
.icon-32xNOR { background-position: -32px -32px; }
.icon-32xSWE { background-position: -64px 0px; }
.icon-32xDEU { background-position: -64px -32px; }
.icon-32xITA { background-position: 0px -64px; }
.icon-32xJPN { background-position: -32px -64px; }
.icon-32xMEX { background-position: -64px -64px; }
.icon-32xUSA { background-position: -96px 0px; }
.icon-32xAUT { background-position: -96px -32px; }
.icon-32xHRV { background-position: -96px -64px; }
.icon-32xCZE { background-position: 0px -96px; }
.icon-32xDNK { background-position: -32px -96px; }
.icon-32xENG { background-position: -64px -96px; }
.icon-32xEST { background-position: -96px -96px; }
.icon-32xFRA { background-position: -128px 0px; }
.icon-32xGRC { background-position: -128px -32px; }
.icon-32xISR { background-position: -128px -64px; }
.icon-32xLVA { background-position: -128px -96px; }
.icon-32xLTU { background-position: 0px -128px; }
.icon-32xPOL { background-position: -32px -128px; }
.icon-32xRUS { background-position: -64px -128px; }
.icon-32xSRB { background-position: -96px -128px; }
.icon-32xSVN { background-position: -128px -128px; }
.icon-32xESP { background-position: -160px 0px; }
.icon-32xTUR { background-position: -160px -32px; }
.icon-32xCHE, .icon-32xSWI { background-position: -160px -96px; }
.icon-32xCAN { background-position: -160px -128px; }
.icon-32xBRA { background-position: 0px -160px; }
.icon-32xINTC { background-position: -32px -160px; }
.icon-32xPRT { background-position: -64px -160px; }
.icon-32xHUN { background-position: -96px -160px; }
.icon-32xINTY { background-position: -128px -160px; }
.icon-32xSVK { background-position: -160px -160px; }
.icon-32xRGBY { background-position: -192px 0px; }
.icon-32xRGYU { background-position: -192px -32px; }
.icon-32xALB { background-position: -192px -64px; }
.icon-32xDZA { background-position: -192px -96px; }
.icon-32xAND { background-position: -192px -128px; }
.icon-32xARG { background-position: -192px -160px; }
.icon-32xARM { background-position: 0px -192px; }
.icon-32xAZE { background-position: -64px -192px; }
.icon-32xBHR { background-position: -96px -192px; }
.icon-32xBLR { background-position: -128px -192px; }
.icon-32xBEL { background-position: -160px -192px; }
.icon-32xBOL { background-position: -192px -192px; }
.icon-32xBIH { background-position: -224px 0px; }
.icon-32xBGR { background-position: -224px -32px; }
.icon-32xCMR { background-position: -224px -64px; }
.icon-32xCHL { background-position: -224px -96px; }
.icon-32xCHN { background-position: -224px -128px; }
.icon-32xCOL { background-position: -224px -160px; }
.icon-32xCRI { background-position: -224px -192px; }
.icon-32xCYP { background-position: 0px -224px; }
.icon-32xECU { background-position: -64px -224px; }
.icon-32xEGY { background-position: -96px -224px; }
.icon-32xSLV { background-position: -128px -224px; }
.icon-32xFRO { background-position: -192px -224px; }
.icon-32xGEO { background-position: -224px -224px; }
.icon-32xGHA { background-position: -256px -32px; }
.icon-32xGTM { background-position: -256px -64px; }
.icon-32xHND { background-position: -256px -128px; }
.icon-32xHKG { background-position: -256px -160px; }
.icon-32xISL { background-position: -256px -192px; }
.icon-32xIND { background-position: -256px -224px; }
.icon-32xIDN { background-position: 0px -256px; }
.icon-32xIRN { background-position: -32px -256px; }
.icon-32xIRL { background-position: -64px -256px; }
.icon-32xJOR { background-position: -96px -256px; }
.icon-32xKAZ { background-position: -128px -256px; }
.icon-32xKWT { background-position: -160px -256px; }
.icon-32xLIE { background-position: -192px -256px; }
.icon-32xLUX { background-position: -224px -256px; }
.icon-32xMKD { background-position: -256px -256px; }
.icon-32xMYS { background-position: -288px 0px; }
.icon-32xMLT { background-position: -288px -32px; }
.icon-32xMDA { background-position: -288px -64px; }
.icon-32xMNE { background-position: -288px -96px; }
.icon-32xMAR { background-position: -288px -128px; }
.icon-32xNZL { background-position: -288px -160px; }
.icon-32xNIR { background-position: -288px -192px; }
.icon-32xOMN { background-position: -288px -224px; }
.icon-32xPAK { background-position: -288px -256px; }
.icon-32xPRY { background-position: 0px -288px; }
.icon-32xPER { background-position: -32px -288px; }
.icon-32xQAT { background-position: -64px -288px; }
.icon-32xROU { background-position: -96px -288px; }
.icon-32xSMR { background-position: -128px -288px; }
.icon-32xSAU { background-position: -160px -288px; }
.icon-32xSCO { background-position: -192px -288px; }
.icon-32xSGP { background-position: -224px -288px; }
.icon-32xZAF { background-position: -256px -288px; }
.icon-32xKOR { background-position: -288px -288px; }
.icon-32xTHA { background-position: -320px -32px; }
.icon-32xTUN { background-position: -320px -64px; }
.icon-32xUKR { background-position: -320px -128px; }
.icon-32xARE { background-position: -320px -160px; }
.icon-32xURY { background-position: -320px -191px; }
.icon-32xUZB { background-position: -320px -224px; }
.icon-32xVEN { background-position: -320px -256px; }
.icon-32xVNM { background-position: -320px -288px; }
.icon-32xWAL { background-position: 0px -320px; }
.icon-32xMEN { background-position: -32px -320px; }
.icon-32xFRML { background-position: -128px -320px; }
.icon-32xNSCR { background-position: -160px -320px; }
.icon-32xRLLY { background-position: -192px -320px; }
.icon-32xATP { background-position: -256px -320px; }
.icon-32xCHLL { background-position: -288px -320px; }
.icon-32xITFM { background-position: -352px -96px; }
.icon-32xITFW { background-position: -352px -128px; }
.icon-32xWTA { background-position: -352px -160px; }
.icon-32xBIAT { background-position: -352px -192px; }
.icon-32xCRSS { background-position: -352px -288px; }
.icon-32xSKIJ { background-position: 0px -352px; }
.icon-32xCIV { background-position: -32px -352px; }
.icon-32xCHLW { background-position: -64px -352px; }
.icon-32xSEN { background-position: -96px -352px; }
.icon-32xNLD { background-position: -160px -352px; }
.icon-32xALPN { background-position: -192px -352px; }
.icon-32xGIB { background-position: -256px -352px; }
.icon-32xKEN { background-position: -192px -384px; }
.icon-32xPHL { background-position: -224px -384px; }
.icon-32xLBY { background-position: -256px -384px; }
.icon-32xPAN { background-position: -352px -384px; }
.icon-32xUGA { background-position: -384px -384px; }
.icon-32xJAM { background-position: -416px 0px; }
.icon-32xVTEN { background-position: -416px -32px; }
.icon-32xLBN { background-position: -416px -256px; }
.icon-32xSYR { background-position: -416px -288px; }
.icon-32xNGA { background-position: 0px -416px; }
.icon-32xCHAR { background-position: -32px -416px; }
.icon-32xZMB { background-position: -64px -416px; }
.icon-32xPSE { background-position: -96px -416px; }
.icon-32xMOZ { background-position: -128px -416px; }
.icon-32xMAC { background-position: -160px -416px; }
.icon-32xRWA { background-position: -192px -416px; }
.icon-32xETH { background-position: -224px -416px; }
.icon-32xMDV { background-position: -320px -416px; }
.icon-32xAGO { background-position: -352px -416px; }
.icon-32xVBAS { background-position: -416px -416px; }
.icon-32xWTAK { background-position: -448px 0px; }
.icon-32xTZA { background-position: -448px -32px; }
.icon-32xRLOL { background-position: -448px -64px; }
.icon-32xUFC { background-position: -448px -96px; }
.icon-32xBWA { background-position: -448px -160px; }
.icon-32xBLLT { background-position: -448px -192px; }
.icon-32xWMN { background-position: -448px -224px; }
.icon-32xMSC { background-position: -448px -320px; }
.icon-32xELLR { background-position: -384px -416px; }
.icon-32xSRLF { background-position: -160px -480px; }
.icon-32xALPS { background-position: -512px -480px; }
.icon-32xCROS { background-position: -512px 0; }
.icon-32xCSGO { background-position: -512px -32px; }
.icon-32xDOTA { background-position: -512px -64px; }
.icon-32xELEC { background-position: -512px -96px; }
.icon-32xESKG { background-position: -512px -128px; }
.icon-32xESRL { background-position: -512px -160px; }
.icon-32xFORF { background-position: -512px -192px; }
.icon-32xGOLF { background-position: -512px -224px; }
.icon-32xKOS { background-position: -512px -256px; }
.icon-32xMMAA { background-position: -512px -288px; }
.icon-32xRAIN { background-position: -512px -320px; }
.icon-32xRUGB { background-position: -512px -352px; }
.icon-32xSMRL { background-position: -512px -384px; }
.icon-32xSPEC { background-position: -512px -416px; }
.icon-32xTENN { background-position: -512px -448px; }
.icon-32xBGD { background-position: -64px -512px; }
.icon-32xNPL { background-position: 0 -512px; }
.icon-32xGBRF { background-position: -32px -512px; }
.icon-32xCOG { background-position: -544px 0; }
.icon-32xLKA { background-position: 0 -544px; }
.icon-32xTPE { background-position: -480px 0; }
.icon-32xBTN { background-position: -576px -64px; }
.icon-32xMDG { background-position: -576px 0; }
.icon-32xTJK { background-position: -576px -32px; }
.icon-32xZWE { background-position: -576px -96px; }
.icon-32xKGZ { background-position: 0 -576px; }
.icon-32xMOTR { background-position: -608px 0; }
.icon-32xMNG { background-position: -32px -608px; }
.icon-32xLOLL { background-position: 0 -608px; }
.icon-32xDOM { background-position: -640px 0; }
.icon-32xIRQ { background-position: 0 -640px; }
.icon-32xNIC { background-position: -672 0px; }
.icon-32xBLZ { background-position: 0 -672px; }
.icon-32xTWN { background-position: -160px -672px; }
.icon-32xGUF { background-position: -64px -672px; }
.icon-32xGMB { background-position: -96px -672px; }
.icon-32xFIFA { background-position: -32px -672px; }
.icon-32xNBA2 { background-position: -128px -672px; }
.icon-32xNER { background-position: -704px 0; }
.icon-32xBDI { background-position: 0 -704px; }
.icon-32xLBR { background-position: -32px -704px; }
.icon-32xMRT { background-position: -64px -704px; }
.icon-32xPRI { background-position: -736px 0; }
.icon-32xCRC { background-position: 0 -736px; }
.icon-32xMMR { background-position: -768px 0; }
.icon-32xKHM { background-position: 0 -768px; }
.icon-32xMLI { background-position: -800px 0; }

/* Ülke header'ında bayrak gösterimi için stil */
.country-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 15px;
    border-bottom: 1px solid #3d3d54;
    background: none;
    transition: background-color 0.3s ease;
}

.country-header:hover {
    background: rgba(255, 215, 0, 0.05);
}

.country-header .country-flag {
    margin-right: 10px;
    flex-shrink: 0;
}

.country-header .country-name {
    flex: 1;
    margin-left: 5px;
}

/* Responsive tasarım için bayrak boyutları */
@media (max-width: 768px) {
    .country-flag {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }
    
    .country-header {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .country-flag {
        width: 20px;
        height: 20px;
        margin-right: 5px;
    }
    
    .country-header {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
	
	/* Mobile Betting Slip Styles */
@media (max-width: 768px) {
    .betting-slip {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        height: calc(100vh - 130px);
        transform: translateY(100%);
        border-radius: 20px 20px 0 0;
        z-index: 1002;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: none;
        overflow: hidden;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
		top: 130px;
    }
    
    .betting-slip.hidden {
        transform: translateY(100%);
    }
    
    .betting-slip:not(.hidden) {
        transform: translateY(0);
    }
    
    .betting-slip-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
        transform: none;
        border-radius: 50px;
        padding: 15px 20px;
        min-width: auto;
        width: auto;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
        z-index: 1003;
    }
    
    .betting-slip-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    }
    
    .slip-header {
        border-radius: 20px 20px 0 0;
        position: relative;
        padding: 1.2rem 1rem 1rem 1rem;
    }
    
    .slip-header::after {
        content: '';
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: #666;
        border-radius: 2px;
    }
    
    .slip-content {
        max-height: calc(100vh - 250px);
        padding: 1rem;
        overflow-y: auto;
    }
    
    /* Mobile bet slip overlay */
    .bet-slip-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }
    
    .bet-slip-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile quick actions */
    .mobile-bet-actions {
        position: fixed;
        bottom: 110px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1003;	
    }
    
    .mobile-bet-action {
        background: rgba(26, 26, 46, 0.9);
        border: 1px solid #3d3d54;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffd700;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-bet-action:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    .mobile-bet-action i {
        font-size: 1.2rem;
    }
    
    /* Mobile bet slip content improvements */
    .bet-item {
        margin-bottom: 0.8rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .bet-match {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .bet-selection {
        font-size: 0.85rem;
    }
    
    .bet-odds {
        font-size: 0.9rem;
    }
    
    .slip-summary {
        padding: 1rem;
        background: rgba(45, 45, 68, 0.3);
        border-radius: 15px;
        margin: 1rem;
        border: 1px solid rgba(61, 61, 84, 0.5);
    }
    
    .summary-row input {
        width: 100px;
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 25px;
        font-weight: 600;
    }
    
    /* Mobile scrollbar */
    .slip-content::-webkit-scrollbar {
        width: 6px;
    }
    
    .slip-content::-webkit-scrollbar-track {
        background: rgba(45, 45, 68, 0.3);
        border-radius: 3px;
    }
    
    .slip-content::-webkit-scrollbar-thumb {
        background: #ffd700;
        border-radius: 3px;
    }
    
    .slip-content::-webkit-scrollbar-thumb:hover {
        background: #ffed4e;
    }
}

/* Desktop styles remain unchanged */
@media (min-width: 769px) {
    .betting-slip {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%) translateX(0);
        width: 350px;
        height: auto;
        max-height: 80vh;
        border-radius: 12px 0 0 12px;
    }
    
    .betting-slip.hidden {
        transform: translateY(-50%) translateX(100%);
    }
    
    .betting-slip-toggle {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%) translateX(0);
        border-radius: 12px 0 0 12px;
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
} 