/* New Sports Betting Design - Based on Print */

.sports-betting-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr 350px;
    gap: 20px;
    padding: 20px;
    min-height: calc(100vh - 70px);
    background: var(--dark-bg, #0a0e27);
}

/* Left Sidebar - Sports Navigation */
.sports-sidebar {
    background: var(--dark-surface, #1a1f3a);
    border-radius: 10px;
    padding: 15px;
    height: fit-content;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.sports-sidebar-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.sports-sidebar-header h3 {
    color: var(--text-light, #ffffff);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.sports-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sport-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-light, #ffffff);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.sport-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

.sport-item.active {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
}

.sport-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sport-item span:first-of-type {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.sport-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.sport-item.active .sport-count {
    background: rgba(255, 255, 255, 0.2);
}

.loading-sports {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    color: var(--text-muted, #888);
    justify-content: center;
}

/* Main Content Area */
.sports-main-content {
    background: var(--dark-surface, #1a1f3a);
    border-radius: 10px;
    padding: 20px;
    overflow-y: auto;
    max-height: calc(100vh - 110px);
    min-height: 600px;
}

/* Content Tabs */
.sports-content-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
    padding-bottom: 10px;
}

.content-tab {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-muted, #888);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    margin-bottom: -12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-tab:hover {
    color: var(--text-light, #ffffff);
}

.content-tab.active {
    color: var(--primary-purple, #2563eb);
    border-bottom-color: var(--primary-purple, #2563eb);
}

.content-tab-panel {
    display: none;
}

.content-tab-panel.active {
    display: block;
}

/* Featured Match */
.featured-match-container {
    margin-bottom: 30px;
}

.featured-match {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    border: 2px solid var(--primary-purple, #2563eb);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.featured-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.featured-match-time {
    color: var(--text-muted, #888);
    font-size: 0.9rem;
}

.featured-match-league {
    color: var(--text-muted, #888);
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-match-status {
    padding: 6px 12px;
    background: #ff4444;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.featured-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.featured-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.featured-team-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple, #2563eb);
}

.featured-team-name {
    color: var(--text-light, #ffffff);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.featured-match-vs {
    color: var(--text-muted, #888);
    font-size: 1rem;
    margin: 0 20px;
}

.featured-match-odds {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.featured-odd-btn {
    flex: 1;
    max-width: 120px;
    padding: 15px;
    background: rgba(37, 99, 235, 0.2);
    border: 2px solid var(--primary-purple, #2563eb);
    border-radius: 10px;
    color: var(--text-light, #ffffff);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.featured-odd-btn:hover {
    background: var(--primary-purple, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.featured-odd-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted, #888);
    margin-bottom: 5px;
}

.featured-odd-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple, #2563eb);
}

.featured-odd-btn:hover .featured-odd-value {
    color: white;
}

/* Sport Header Section */
.sport-header-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
}

.back-button {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--text-light, #ffffff);
    cursor: pointer;
    transition: all 0.3s;
}

.back-button:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--primary-purple, #2563eb);
}

.sport-header-title {
    color: var(--text-light, #ffffff);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sport-total-count {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-purple, #2563eb);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

/* Featured Soccer Section */
.featured-soccer-section {
    margin-bottom: 30px;
}

.section-header-collapsible {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
}

.section-header-collapsible:hover {
    background: rgba(37, 99, 235, 0.05);
}

.section-title {
    color: var(--text-muted, #888);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.collapse-icon {
    color: var(--text-muted, #888);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.featured-leagues-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-country-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 10px;
}

.country-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-leagues {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-league-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.featured-league-item:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: var(--primary-purple, #2563eb);
    transform: translateX(5px);
}

.featured-league-item .country-name {
    color: var(--text-muted, #888);
    font-size: 0.85rem;
    min-width: 120px;
}

.featured-league-item .league-name {
    color: var(--text-light, #ffffff);
    font-size: 1rem;
    font-weight: 600;
    flex: 1;
}

.featured-league-item .league-count {
    color: var(--primary-purple, #2563eb);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* All Soccer Countries Section */
.all-soccer-section {
    margin-top: 30px;
}

.all-countries-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.country-group {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 10px;
    overflow: hidden;
}

.country-header-collapsible {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.country-header-collapsible:hover {
    background: rgba(37, 99, 235, 0.1);
}

.country-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.country-flag-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
}

.country-flag-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-header-collapsible .country-name {
    color: var(--text-light, #ffffff);
    font-size: 1rem;
    font-weight: 600;
}

.country-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.country-count {
    color: var(--text-light, #ffffff);
    font-size: 1rem;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.2);
    padding: 4px 12px;
    border-radius: 12px;
}

.country-leagues-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.country-leagues-list.expanded {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.country-leagues-list .league-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px 12px 50px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.1));
    cursor: pointer;
    transition: all 0.3s;
}

.country-leagues-list .league-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

.country-leagues-list .league-item.active {
    background: rgba(37, 99, 235, 0.2);
    border-left: 3px solid var(--primary-purple, #2563eb);
}

.league-item-name {
    color: var(--text-light, #ffffff);
    font-size: 0.95rem;
    font-weight: 500;
}

.league-item-count {
    color: var(--text-muted, #888);
    font-size: 0.85rem;
}

/* Popular Matches Section */
.popular-matches-section {
    margin-top: 30px;
}

.matches-by-league {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.league-group {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 10px;
    padding: 20px;
}

.league-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.league-name {
    color: var(--text-light, #ffffff);
    font-size: 1.1rem;
    font-weight: 600;
}

.league-matches-count {
    color: var(--text-muted, #888);
    font-size: 0.9rem;
}

.league-matches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.match-card-compact {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.match-card-compact:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-purple, #2563eb);
    transform: translateY(-2px);
}

.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.match-card-league {
    color: var(--text-muted, #888);
    font-size: 0.8rem;
}

.match-card-datetime {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.match-card-date {
    color: var(--text-muted, #888);
    font-size: 0.75rem;
}

.match-card-time {
    color: var(--text-light, #ffffff);
    font-size: 0.85rem;
    font-weight: 600;
}

.match-card-status {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    margin: 8px 0;
}

.match-card-status.live {
    background: #ff4444;
    color: white;
    animation: pulse 2s infinite;
}

.match-card-bookmakers {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.1));
    text-align: center;
    color: var(--text-muted, #888);
    font-size: 0.75rem;
}

.match-card-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.match-card-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.match-card-team-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.match-card-team-name {
    color: var(--text-light, #ffffff);
    font-size: 0.9rem;
    font-weight: 500;
}

.match-card-vs {
    color: var(--text-muted, #888);
    font-size: 0.8rem;
    margin: 0 10px;
}

.match-card-odds {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.match-card-odd {
    flex: 1;
    padding: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.match-card-odd:hover {
    background: var(--primary-purple, #2563eb);
    border-color: var(--primary-purple, #2563eb);
}

.match-card-odd-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted, #888);
    margin-bottom: 4px;
}

.match-card-odd-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-purple, #2563eb);
}

.match-card-odd:hover .match-card-odd-value {
    color: white;
}

/* Betting Slip (Cupom) */
.betting-slip {
    background: var(--dark-surface, #1a1f3a);
    border-radius: 10px;
    padding: 15px;
    height: fit-content;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.betting-slip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.betting-slip-header h3 {
    color: var(--text-light, #ffffff);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.clear-bets-btn {
    background: transparent;
    border: none;
    color: var(--text-muted, #888);
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: all 0.3s;
}

.clear-bets-btn:hover {
    color: var(--accent-red, #ff4444);
}

.betting-slip-content {
    flex: 1;
    min-height: 200px;
}

.empty-bet-slip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted, #888);
}

.empty-bet-slip i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.bet-item {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.bet-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.bet-item-match {
    color: var(--text-light, #ffffff);
    font-size: 0.85rem;
    font-weight: 500;
}

.bet-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted, #888);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 2px 5px;
}

.bet-item-selection {
    color: var(--text-muted, #888);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.bet-item-odd {
    color: var(--primary-purple, #2563eb);
    font-weight: 600;
    font-size: 0.9rem;
}

.betting-slip-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.bet-combination-warning {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    font-size: 0.85rem;
}

.bet-amount-input-section {
    margin-bottom: 15px;
}

.bet-amount-input-section label {
    display: block;
    color: var(--text-light, #ffffff);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bet-amount-input-wrapper {
    margin-bottom: 10px;
}

.bet-amount-input {
    width: 100%;
    padding: 12px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 8px;
    color: var(--text-light, #ffffff);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.bet-amount-input:focus {
    outline: none;
    border-color: var(--primary-purple, #2563eb);
    background: rgba(37, 99, 235, 0.2);
}

.quick-amount-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.quick-amount-btn {
    padding: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border-color, rgba(255,255,255,0.1));
    border-radius: 6px;
    color: var(--text-light, #ffffff);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.quick-amount-btn:hover {
    background: var(--primary-purple, #2563eb);
    border-color: var(--primary-purple, #2563eb);
}

.bet-summary-info {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.bet-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light, #ffffff);
    font-size: 0.9rem;
}

.bet-summary-row:last-child {
    margin-bottom: 0;
}

.bet-summary-row.total {
    padding-top: 10px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.1));
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-yellow, #ffd700);
}

.place-bets-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.place-bets-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.place-bets-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.odds-settings-link {
    text-align: center;
}

.odds-settings-link a {
    color: var(--text-muted, #888);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.odds-settings-link a:hover {
    color: var(--primary-purple, #2563eb);
}

/* Live Stream Section */
.live-stream-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.live-stream-section h4 {
    color: var(--text-light, #ffffff);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.live-stream-container {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    padding: 15px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-stream {
    text-align: center;
    color: var(--text-muted, #888);
}

.no-stream i {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.no-stream p {
    font-size: 0.85rem;
}

/* Loading and Empty States */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted, #888);
}

.loading-spinner i {
    font-size: 3rem;
    color: var(--primary-purple, #2563eb);
    margin-bottom: 20px;
    display: block;
}

.loading-spinner p {
    color: var(--text-muted, #888);
    font-size: 1rem;
    margin: 0;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted, #888);
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-muted, #888);
    margin-bottom: 20px;
    opacity: 0.5;
    display: block;
}

.empty-state p {
    color: var(--text-muted, #888);
    font-size: 1rem;
    margin: 0;
}

/* Featured Match Improvements */
.featured-match {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(30, 64, 175, 0.15) 100%);
    border: 2px solid var(--primary-purple, #2563eb);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.2);
}

.featured-match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    gap: 20px;
}

.featured-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.featured-team-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-purple, #2563eb);
    border: 2px solid var(--primary-purple, #2563eb);
}

.featured-team-name {
    color: var(--text-light, #ffffff);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.featured-match-vs {
    color: var(--text-muted, #888);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 15px;
}

.featured-match-odds {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 25px;
}

.featured-odd-btn {
    flex: 1;
    max-width: 140px;
    padding: 18px;
    background: rgba(37, 99, 235, 0.15);
    border: 2px solid var(--primary-purple, #2563eb);
    border-radius: 12px;
    color: var(--text-light, #ffffff);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.featured-odd-btn:hover {
    background: var(--primary-purple, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.4);
}

.featured-odd-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted, #888);
    margin-bottom: 8px;
    font-weight: 500;
}

.featured-odd-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple, #2563eb);
}

.featured-odd-btn:hover .featured-odd-value {
    color: white;
}

.featured-odd-btn:hover .featured-odd-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1400px) {
    .sports-betting-wrapper {
        grid-template-columns: 220px 1fr 320px;
    }
}

@media (max-width: 1200px) {
    .sports-betting-wrapper {
        grid-template-columns: 200px 1fr 300px;
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .sports-betting-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sports-sidebar,
    .betting-slip {
        position: relative;
        top: 0;
        max-height: none;
    }
}

