<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #3A2372;
    --secondary-color: #261551;
    --accent-color: #078d07;
    --accent-hover: #068c06;
    --dark-bg: #261551;
    --card-bg: #321d64;
    --border-color: #4f368d;
    --border-active: #432f7a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
}
.sports-container {
    padding: 20px;
    position: relative;
    transition: margin-right 0.3s ease;
}

.sports-container.bet-slip-open {
    margin-right: 350px;
}

.bet-slip {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 350px;
    height: calc(100vh - 120px);
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-color) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
   
}

.bet-slip.visible {
    right: 0;
}

.bet-slip-content {
    display: flex;
    flex-direction: column;
    height: 95%;
    overflow: hidden;
    padding: 10px 10px 180px 0;
    box-sizing: border-box;
}

.selected-bets {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    margin-bottom: 0;
    min-height: 50px;
    max-height: calc(100vh - 350px);
}

#betForm {
    position: sticky;
    bottom: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 15px;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 15px 15px;
    margin-top: auto;
}

.bet-slip.visible {
    right: 0;
}

@media (max-width: 768px) {
    .sports-container.bet-slip-open {
        margin-right: 0;
    }

    .bet-slip {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 60vh;
        top: auto;
        border-radius: 15px 15px 0 0;
        transform: translateY(calc(100% - 50px));
        transition: transform 0.3s ease-in-out;
    }

    .bet-slip.expanded {
        transform: translateY(0);
    }

    .bet-slip-content {
        height: 100%;
    }

    .selected-bets {
        max-height: calc(60vh - 200px);
    }

    #betForm {
        position: sticky;
        bottom: 0;
        width: 100%;
        background: var(--card-bg);
        padding: 15px;
        border-radius: 0;
    }
}
.sport-select {
    margin-bottom: 20px;
background: linear-gradient(45deg, var(--card-bg) 0%, var(--primary-color) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.event-card {
    background: linear-gradient(45deg, var(--card-bg) 0%, var(--primary-color) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.event-card:hover {
    border-color: var(--border-active);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.event-header {
display: flex;
    justify-content: space-between;
align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sport-name {
    color: #FFD700;
    font-weight: 600;
    font-size: 1.1em;
}
.event-time {
    color: var(--text-secondary);
    font-size: 0.9em;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
}
.teams {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
.team {
    text-align: center;
    flex: 1;
}
.team h4 {
    color: var(--text-primary);
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}
.vs {
    margin: 0 20px;
    align-self: center;
    color: #FFD700;
    font-weight: bold;
}
.odds-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.market-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}
.market-section:hover {
    border-color: var(--border-active);
    background: rgba(0, 0, 0, 0.3);
}
.market-title {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 0.9em;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.odds-button {
    background: linear-gradient(45deg, var(--dark-bg) 0%, var(--card-bg) 100%);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
width: 100%;
    text-align: center;
    margin-bottom: 8px;
}
.odds-button:hover {
    background: linear-gradient(45deg, var(--card-bg) 0%, var(--primary-color) 100%);
    border-color: var(--border-active);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.odds-button.selected {
    background: linear-gradient(45deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-color: var(--accent-hover);
    color: white;
    box-shadow: 0 0 15px rgba(7, 141, 7, 0.3);
}
.bet-slip {
    position: fixed;
    right: 20px;
    top: 100px;
    width: 350px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-color) 100%);
    border: 1px solid var(--border-color);
    border-radius: 15px;
display: flex;
    flex-direction: column;
    height: calc(100vh - 120px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}
.bet-slip-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.selected-bets {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    margin-bottom: 0;
}
#betForm {
    position: sticky;
    bottom: 0;
    width: 100%;
    background: var(--card-bg);
    padding: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    z-index: 2;
}
.bet-form-content {
    background: var(--card-bg);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
#betForm .form-group {
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}
#betForm label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
    font-size: 0.9em;
}
#betForm input[type="number"] {
    width: 100%;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    font-size: 0.9em;
    height: 32px;
}
#betForm button[type="submit"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    background: var(--accent-color);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    margin-top: 8px;
}
.selected-bets {
    flex: 1;
    overflow-y: auto;
    padding: 0 15px;
    margin-bottom: 15px;
    min-height: 50px;
    max-height: calc(100vh - 450px);
}
#betForm {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 15px 15px;
    margin-top: auto;
position: sticky;
bottom: 0;
}
.selected-bet {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
    color: var(--text-primary);
}
.selected-bet .sport-title {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 5px;
}
.selected-bet .event-name {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 0.95em;
}
.selected-bet .selection-info {
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 500;
}
.selected-bet .event-time {
    color: var(--text-secondary);
    font-size: 0.85em;
}
.selected-bet .remove-bet {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.selected-bet .remove-bet:hover {
    color: var(--text-primary);
    background: rgba(220, 53, 69, 0.5);
}
@media (max-width: 768px) {
    .bet-slip {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 60vh;
        top: auto;
        border-radius: 15px 15px 0 0;
        transform: translateY(calc(100% - 50px));
        transition: transform 0.3s ease-in-out;
    }
.bet-slip.expanded {
    transform: translateY(0);
}
.bet-slip-content {
    max-height: 80vh;
}
    .selected-bets {
        max-height: calc(80vh - 350px);
    }
    #betForm {
    position: sticky;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        padding: 15px;
        border-radius: 0;
    }
}
.selected-bets {
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}
.selected-bets::-webkit-scrollbar {
    width: 6px;
}
.selected-bets::-webkit-scrollbar-track {
    background: transparent;
}
.selected-bets::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 3px;
}
.selected-bets::-webkit-scrollbar-thumb:hover {
    background: var(--border-active);
}
.live-games-section {
position: relative;
padding: 30px;
margin: 20px 0;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
overflow: hidden; /* Add this to contain the carousel */
}

.glide__track {
padding: 5px 0 20px 0;
overflow: visible;
margin: 0 20px; /* Add margin to account for arrows */
}

.glide__slides {
align-items: stretch;
height: auto;
padding: 10px 0;
}

.glide__slide {
height: auto;
padding: 0 5px; /* Reduce padding */
box-sizing: border-box;
}

.live-game-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 15px;
margin: 0; /* Remove margin */
position: relative;
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
min-height: 220px;
overflow: hidden;
box-sizing: border-box;
}

.glide__arrow {
background: rgba(0, 0, 0, 0.5);
border: 2px solid var(--border-color);
width: 40px;
height: 40px;
border-radius: 50%;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
z-index: 100;
position: absolute;
top: 50%;
transform: translateY(-50%);
}

.glide__arrow--left {
left: -10px; /* Adjust position */
}

.glide__arrow--right {
right: -10px; /* Adjust position */
}

@media (max-width: 768px) {
.live-games-section {
    padding: 15px;
}

.glide__track {
    margin: 0 15px;
}

.glide__slide {
    padding: 0 3px;
}

.live-game-card {
    min-height: 180px;
}

.glide__arrow {
    width: 30px;
    height: 30px;
}

.glide__arrow--left {
    left: -5px;
}

.glide__arrow--right {
    right: -5px;
}
}
.section-title {
color: #FFD700;
font-size: 1.5em;
margin-bottom: 20px;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.live-game-card .teams {
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin: 10px 0;
padding: 10px;
gap: 10px;
background: rgba(0, 0, 0, 0.2);
border-radius: 10px;
}

.live-game-card .team {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 5px;
min-width: 0; /* Add this to allow text truncation */
max-width: calc(50% - 20px); /* Ensure teams don't take too much space */
}

.live-game-card .team-name {
font-size: 0.9em;
text-align: center;
line-height: 1.2;
margin-bottom: 8px;
width: 100%;
color: var(--text-primary);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
word-wrap: break-word;
height: auto;
min-height: 2.4em;
}

.live-game-card .score {
font-size: 1.8em;
font-weight: bold;
color: #FFD700;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
margin: 5px 0;
padding: 2px 8px;
background: rgba(0, 0, 0, 0.2);
border-radius: 8px;
min-width: 45px;
text-align: center;
}

.live-game-card .vs {
margin: 0 5px;
align-self: center;
color: var(--text-secondary);
font-weight: bold;
opacity: 0.7;
flex-shrink: 0;
}

.sport-name {
color: #FFD700;
font-weight: 600;
font-size: 0.9em;
margin-bottom: 5px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

@media (max-width: 576px) {
.live-game-card {
    padding: 10px;
    min-height: 180px;
}

.live-game-card .team-name {
    font-size: 0.8em;
    -webkit-line-clamp: 2;
    min-height: 2em;
}

.live-game-card .score {
    font-size: 1.5em;
    min-width: 35px;
    padding: 2px 5px;
}

.live-game-card .teams {
    padding: 5px;
    margin: 5px 0;
}

.live-game-card .team {
    padding: 3px;
}
}

/* Glide slider adjustments */
.glide__slide {
height: auto;
padding-bottom: 15px;
}

.glide__track {
padding: 5px 0 20px 0;
overflow: visible;
}

.glide__slides {
align-items: stretch;
height: auto;
}
.my-bets-section {
padding: 30px;
background: linear-gradient(45deg, var(--card-bg) 0%, var(--primary-color) 100%);
border-radius: 15px;
margin-top: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.my-bets-section h3 {
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
font-size: 1.8em;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
}
.bet-card {
background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.bet-card:hover {
transform: translateY(-5px);
    border-color: var(--border-active);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.bet-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
}
.bet-card.pending::before {
background: #ffc107;
}
.bet-card.won::before {
background: #28a745;
}
.bet-card.lost::before {
background: #dc3545;
}
.bet-status {
padding: 8px 15px;
border-radius: 20px;
    font-size: 0.9em;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}
.bet-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
border: 1px solid #ffc107;
}
.bet-status.won {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
border: 1px solid #28a745;
}
.bet-status.lost {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
border: 1px solid #dc3545;
}
.bet-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bet-details {
color: var(--text-primary);
}
.event-info {
font-size: 1.2em;
font-weight: 600;
margin-bottom: 15px;
color: #FFD700;
}
.bet-info {
    display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
    margin: 15px 0;
    color: var(--text-secondary);
background: rgba(0, 0, 0, 0.2);
padding: 15px;
border-radius: 10px;
}
.bet-info span {
display: flex;
align-items: center;
gap: 10px;
}
.bet-info span::before {
content: 'â€¢';
color: #FFD700;
}
.stake-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(0, 0, 0, 0.2);
border-radius: 10px;
}
.stake-info span {
font-size: 1.1em;
font-weight: 600;
}
.stake-info .win-amount {
color: #28a745;
}
.stake-info .loss-amount {
color: #dc3545;
}
/* In-Progress Game Message */
.game-status-message {
padding: 20px;
text-align: center;
background: rgba(0, 0, 0, 0.2);
border-radius: 15px;
margin: 20px 0;
}
.game-status-message .alert {
background: rgba(23, 162, 184, 0.2);
border: 1px solid #17a2b8;
color: #17a2b8;
font-weight: 600;
padding: 15px 25px;
border-radius: 10px;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.game-status-message .alert::before {
content: 'ðŸƒ';
font-size: 1.2em;
}
/* Remove bookmaker titles */
.bookmaker-title {
display: none;
}
@media (max-width: 768px) {
    .bet-info {
        grid-template-columns: 1fr;
    }
    
    .stake-info {
        flex-direction: column;
        gap: 10px;
    text-align: center;
}
}
.glide__arrow {
    background: rgba(0, 0, 0, 0.5);
border: 2px solid var(--border-color);
width: 40px;
height: 40px;
    border-radius: 50%;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
z-index: 100;
}
.glide__arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--border-active);
}
.glide__arrow--left {
left: -20px;
}
.glide__arrow--right {
right: -20px;
}
@media (max-width: 768px) {
.nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.nav-tabs::-webkit-scrollbar {
    display: none;
}
.nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
}
.live-games-section {
    padding: 15px;
}
.bet-card {
    margin: 10px 0;
}
.stake-info {
    flex-direction: column;
    gap: 5px;
}
}
/* Updated Navigation Tabs */
.nav-tabs {
border-bottom: 2px solid var(--border-color);
margin-bottom: 20px;
    display: flex;
gap: 5px;
padding: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
padding: 5px;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
white-space: nowrap;
flex-wrap: nowrap;
}

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

.nav-tabs .nav-item {
margin: 0;
flex: 0 0 auto;
}

.nav-tabs .nav-link {
color: var(--text-secondary);
background: transparent;
border: 1px solid transparent;
    border-radius: 8px;
padding: 12px 25px;
font-weight: 600;
transition: all 0.3s ease;
text-transform: uppercase;
font-size: 0.9em;
letter-spacing: 0.5px;
white-space: nowrap;
min-width: max-content;
}

.nav-tabs .nav-link:hover {
color: #FFD700;
background: rgba(255, 255, 255, 0.1);
border-color: var(--border-color);
}

.nav-tabs .nav-link.active {
    color: #FFD700;
background: var(--card-bg);
border-color: var(--border-active);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
.nav-tabs {
    gap: 3px;
    padding: 5px;
}

.nav-tabs .nav-link {
    padding: 8px 15px;
    font-size: 0.85em;
}

.sport-select {
    padding: 15px 10px;
}
}
/* Updated Dropdown Styles */
.form-control {
background: rgba(0, 0, 0, 0.2);
border: 1px solid var(--border-color);
color: var(--text-primary);
    padding: 15px;
border-radius: 10px;
font-weight: 500;
transition: all 0.3s ease;
margin-top: 15px;
cursor: pointer;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 15px center;
background-size: 12px;
}
.form-control:focus {
background: rgba(0, 0, 0, 0.3);
border-color: var(--border-active);
box-shadow: 0 0 0 2px rgba(79, 54, 141, 0.25);
outline: none;
color: var(--text-primary);
}
.form-control option {
background: var(--card-bg);
color: var(--text-primary);
padding: 10px;
}
/* Updated Completed Games Section */
.completed-game-card {
background: linear-gradient(45deg, var(--card-bg) 0%, var(--primary-color) 100%);
border: 1px solid var(--border-color);
border-radius: 15px;
overflow: hidden;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.completed-game-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.completed-header {
background: rgba(0, 0, 0, 0.3);
padding: 20px;
text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.final-score-title {
    color: #FFD700;
font-size: 1.5em;
font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.completed-content {
    padding: 25px;
}
.team-scores {
    display: flex;
justify-content: space-between;
    align-items: center;
background: rgba(0, 0, 0, 0.2);
padding: 25px;
border-radius: 12px;
margin-bottom: 25px;
border: 1px solid var(--border-color);
}
.team-score-block {
    text-align: center;
flex: 1;
}
.team-score-block .team-name {
    color: var(--text-primary);
    font-size: 1.2em;
font-weight: 600;
margin-bottom: 15px;
}
.team-score-block .score {
font-size: 3.5em;
font-weight: 700;
    color: #FFD700;
text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    line-height: 1;
}
.score-divider {
padding: 0 30px;
}
.divider-line {
    width: 2px;
height: 100px;
    background: var(--border-color);
border-radius: 2px;
}
.betting-results {
margin-top: 25px;
}
.bookmaker-section {
background: rgba(0, 0, 0, 0.2);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
}
.markets-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.market-block {
background: rgba(0, 0, 0, 0.2);
border: 1px solid var(--border-color);
border-radius: 10px;
padding: 15px;
}
.market-block .market-title {
color: var(--text-secondary);
font-size: 1em;
text-align: center;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
}
.outcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
padding: 10px;
border-radius: 8px;
margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
}
.outcome-row.win {
background: rgba(40, 167, 69, 0.2);
border: 1px solid #28a745;
}
.outcome-row.loss {
background: rgba(220, 53, 69, 0.2);
border: 1px solid #dc3545;
}
.outcome-row .team-name {
color: var(--text-primary);
font-weight: 500;
}
.outcome-row .odds {
color: #FFD700;
    font-weight: 600;
}
.outcome-row.win .odds {
    color: #28a745;
}
.outcome-row.loss .odds {
    color: #dc3545;
}
@media (max-width: 992px) {
.markets-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.markets-grid {
    grid-template-columns: 1fr;
}

.team-scores {
    flex-direction: column;
    gap: 20px;
        padding: 15px;
    }

.score-divider {
    display: none;
    }

.team-score-block .score {
        font-size: 2.5em;
    }
}
/* Responsive Menu Adjustments */
@media (max-width: 576px) {
.nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 5px;
    gap: 2px;
}

.nav-tabs .nav-link {
    padding: 10px 15px;
    font-size: 0.8em;
    white-space: nowrap;
}

.form-control {
    font-size: 0.9em;
        padding: 12px;
}
}
#betForm input[type="number"] {
background: rgba(0, 0, 0, 0.2);
border: 1px solid var(--border-color);
color: var(--text-primary);
        padding: 12px;
border-radius: 8px;
    width: 100%;
}
#betForm input[type="number"]:focus {
background: rgba(0, 0, 0, 0.3);
border-color: var(--border-active);
color: var(--text-primary);
}
#betForm label {
color: var(--text-primary);
font-weight: 600;
margin-bottom: 8px;
display: block;
font-size: 1.1em;
}
#betForm .form-group {
margin-bottom: 15px;
background: rgba(0, 0, 0, 0.2);
padding: 10px;
border-radius: 8px;
border: 1px solid var(--border-color);
}
#betForm #totalOddsDisplay,
#betForm #potentialWin {
    color: #FFD700;
    font-weight: 600;
}
.live-game-card .score {
font-size: 2em;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
margin: 10px 0;
padding: 5px 10px;
background: rgba(0, 0, 0, 0.2);
border-radius: 8px;
display: inline-block;
min-width: 50px;
}

.live-game-card .team {
flex: 1;
    display: flex;
    flex-direction: column;
align-items: center;
min-height: 80px;
justify-content: space-between;
padding: 10px;
}

.live-game-card .team-name {
font-size: 1em;
text-align: center;
line-height: 1.2;
margin-bottom: 10px;
height: auto;
min-height: 2.4em;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
    width: 100%;
color: var(--text-primary);
}

.live-game-card .vs {
margin: 0 15px;
align-self: center;
color: var(--text-secondary);
font-weight: bold;
opacity: 0.7;
}

@media (max-width: 576px) {
.live-game-card .score {
    font-size: 1.5em;
    min-width: 40px;
}

.live-game-card .team-name {
    font-size: 0.9em;
}
}

.live-score, .score {
    color: #FFD700;
    font-size: 1.8em;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    display: inline-block;
}

@keyframes scoreUpdate {
    0% {
        transform: scale(1);
        background-color: transparent;
    }
    50% {
        transform: scale(1.2);
        background-color: rgba(76, 175, 80, 0.3);
        color: #4CAF50;
    }
    100% {
        transform: scale(1);
        background-color: transparent;
    }
}

.score-updated {
    animation: scoreUpdate 1s ease-in-out;
}

/* Add event ID to live game cards */
.live-game-card, .event-card {
position: relative;
}

.live-game-card[data-event-id], .event-card[data-event-id] {
transition: all 0.3s ease;
}

/* Mobile Bet Slip Styles */
@media (max-width: 768px) {
.bet-slip {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    max-height: 80vh;
    border-radius: 15px 15px 0 0;
    transform: translateY(calc(100% - 50px));
    transition: transform 0.3s ease-in-out;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-color) 100%);
}

.bet-slip.expanded {
    transform: translateY(0);
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.bet-slip-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.bet-type-toggle {
    display: flex;
    gap: 8px;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.mobile-place-bet {
    display: block;
    margin-left: auto;
}

.mobile-place-bet button {
    padding: 4px 12px;
    font-size: 0.9em;
    height: 100%;
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 600;
}

.mobile-place-bet button:hover {
    background: var(--accent-hover);
}

#betForm button[type="submit"] {
    display: none;
}
}

@media (min-width: 769px) {
.mobile-place-bet {
    display: none !important;
}

#betForm button[type="submit"] {
    display: block !important;
}
}

@media (min-width: 769px) {
/* 1. Fix the overall bet-slip height */
.bet-slip {
height: 98vh;
padding-top: 10px;

top: 20px;
}

/* 2. Ensure the inner content fills the bet-slip container */
.bet-slip-content {
height: 100vh;
display: flex;
flex-direction: column;
}

/* 3. Allow the selected bets container to grow and scroll if needed */
.selected-bets {
flex: 1;
overflow-y: auto;
max-height: none;
}

/* 4. Keep the bet form fixed at the bottom */
#betForm {
position: sticky;
bottom: 0;
width: 100%;
z-index: 2;
}
}

.bet-slip h4 {
    color: #FFD700;
margin-bottom: 15px;
font-weight: 600;
text-align: center;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
padding: 15px 15px 0;
flex-shrink: 0;
}

.bet-type-toggle {
padding: 0 10px 10px;
    display: flex;
gap: 8px;
    justify-content: center;
border-bottom: 1px solid var(--border-color);
margin-bottom: 10px;
flex-shrink: 0;
}

.bet-type-toggle button {
padding: 4px 10px;
border-radius: 4px;
min-width: 60px;
font-size: 0.75em;
font-weight: 600;
transition: all 0.3s ease;
border: 1px solid var(--border-color);
background: rgba(0, 0, 0, 0.2);
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.5px;
}

.bet-type-toggle button:hover {
background: rgba(0, 0, 0, 0.3);
border-color: var(--border-active);
color: #FFD700;
}

.bet-type-toggle button.active {
background: var(--accent-color);
border-color: var(--accent-hover);
color: white;
box-shadow: 0 0 15px rgba(7, 141, 7, 0.3);
}

.bet-slip-header {
background: linear-gradient(45deg, var(--card-bg) 0%, var(--primary-color) 100%);
border-bottom: 1px solid var(--border-color);
border-radius: 15px 15px 0 0;
padding: 15px;
    display: flex;
justify-content: center;
    align-items: center;
position: relative;
}

.bet-count-badge {
background: var(--accent-color);
color: white;
padding: 3px 10px;
border-radius: 15px;
font-size: 0.8em;
font-weight: bold;
margin-left: 10px;
min-width: 25px;
text-align: center;
box-shadow: 0 0 10px rgba(7, 141, 7, 0.3);
}

@media (min-width: 769px) {
.toggle-indicator {
display: none;
}

.bet-slip-header {
cursor: default;
}

.bet-type-toggle {
padding: 15px;
}

.bet-type-toggle button {
padding: 4px 12px;
font-size: 0.75em;
}
}

#betForm {
padding: 10px;
}

#betForm .form-group {
margin-bottom: 6px;
background: rgba(0, 0, 0, 0.2);
padding: 6px;
border-radius: 4px;
border: 1px solid var(--border-color);
}

#betForm label {
color: var(--text-primary);
font-weight: 500;
margin-bottom: 2px;
display: block;
font-size: 0.8em;
}

#betForm input[type="number"] {
width: 100%;
padding: 4px 6px;
border-radius: 3px;
border: 1px solid var(--border-color);
background: rgba(0, 0, 0, 0.2);
color: var(--text-primary);
font-size: 0.8em;
height: 24px;
}

#betForm button[type="submit"] {
width: 100%;
padding: 6px;
border-radius: 4px;
background: var(--accent-color);
border: none;
color: white;
font-weight: 600;
font-size: 0.9em;
transition: all 0.3s ease;
margin-top: 6px;
}

.bet-form-content {
background: var(--card-bg);
padding: 8px;
border-radius: 6px;
border: 1px solid var(--border-color);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#betForm #totalOddsDisplay,
#betForm #potentialWin {
font-size: 0.9em;
}

.live-indicator {
position: absolute;
top: 10px;
right: 10px;
background: rgba(220, 53, 69, 0.2);
color: #dc3545;
padding: 4px 12px;
border-radius: 15px;
font-size: 0.8em;
font-weight: 600;
border: 1px solid #dc3545;
text-transform: uppercase;
letter-spacing: 1px;
}

.game-time {
color: var(--text-secondary);
font-size: 0.9em;
text-align: center;
margin-top: 10px;
background: rgba(0, 0, 0, 0.2);
padding: 5px 10px;
border-radius: 5px;
width: fit-content;
margin: 10px auto 0;
}

.live-games-section {
position: relative;
padding: 30px;
margin: 20px 0;
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
overflow: hidden;
}

.glide {
position: relative;
width: 100%;
box-sizing: border-box;
}

.glide__track {
padding: 5px 0 20px 0;
overflow: visible;
margin: 0 40px;
}

.glide__slides {
align-items: stretch;
height: auto;
padding: 10px 0;
margin: 0;
list-style: none;
white-space: nowrap;
touch-action: pan-y;
display: flex;
}

.glide__slide {
height: auto;
padding: 0 5px;
box-sizing: border-box;
white-space: normal;
flex-shrink: 0;
width: 100%;
}

.live-game-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 15px;
margin: 0;
position: relative;
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
min-height: 220px;
overflow: hidden;
box-sizing: border-box;
}

.glide__arrow {
background: rgba(0, 0, 0, 0.5);
border: 2px solid var(--border-color);
width: 40px;
height: 40px;
border-radius: 50%;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
z-index: 100;
position: absolute;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}

.glide__arrow--left {
left: 5px;
}

.glide__arrow--right {
right: 5px;
}

@media (max-width: 768px) {
.live-games-section {
    padding: 15px;
}

.glide__track {
    margin: 0 30px;
}

.glide__slide {
    padding: 0 3px;
}

.live-game-card {
    min-height: 180px;
}

.glide__arrow {
    width: 30px;
    height: 30px;
}

.glide__arrow--left {
    left: 0;
}

.glide__arrow--right {
    right: 0;
}
}


</pre></body></html>