    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d3d 100%);
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #6c5ce7;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.balance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.coin-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
}

.header-right {
    display: flex;
    gap: 15px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Welcome Banner */
.welcome-banner {
    margin: 20px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.welcome-banner::before {
    content: '777';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.welcome-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.welcome-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.welcome-banner p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Section */
.section {
    padding: 0 20px;
    margin-top: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.tabs::-webkit-scrollbar {
    height: 3px;
}

.tabs::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Match Cards */
.match-card {
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.match-card:hover {
    transform: translateY(-5px);
}

.league-name {
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.team-logo.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.score-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.score {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.bet-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.bet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

/* Bet Details Page */
.bet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.match-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-left: 15px;
}

.match-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.match-title {
    font-size: 16px;
    font-weight: 600;
}

.live-badge {
    background: #ff0000;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

/* Match Score Section */
.bet-match-section {
    padding: 20px;
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    margin: 20px;
    border-radius: 15px;
}

.live-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.live-tag {
    background: #ff0000;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.match-date {
    font-size: 13px;
    color: #a0a0a0;
}

.team-scores {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 0;
}

.team-label {
    font-size: 14px;
    font-weight: 500;
}

.team-points {
    font-size: 14px;
    color: #a0a0a0;
}

/* Betting Options */
.betting-section {
    padding: 0 20px 20px;
}

.betting-category {
    margin-bottom: 25px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.bet-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bet-option {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.bet-option:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.bet-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bet-option-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.bet-odds {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

/* My Bet Page */
.my-bet-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.my-bet-title {
    font-size: 20px;
    font-weight: 600;
}

/* Bet Filter Tabs */
.bet-filter-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
}

.bet-filter-tab {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.bet-filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Bet History Cards */
.bet-history-container {
    padding: 0 20px 20px;
}

.bet-history-card {
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.bet-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.status-won {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
}

.status-lost {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
}

.status-pending {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
}

.bet-match-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.bet-match-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bet-match-details {
    flex: 1;
}

.bet-match-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.bet-match-time {
    font-size: 12px;
    color: #a0a0a0;
}

.bet-question-answer {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.bet-qa-label {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.bet-qa-value {
    font-size: 14px;
    font-weight: 600;
}

.bet-qa-odds {
    color: #ffc107;
    margin-left: 8px;
}

.bet-amounts {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.bet-amount-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.bet-amount-label {
    font-size: 11px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.bet-amount-value {
    font-size: 16px;
    font-weight: 700;
}

.amount-stake {
    color: #ffffff;
}

.amount-winning {
    color: #00ff88;
}

.amount-loss {
    color: #ff4444;
}

/* Place Bet Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay.active {
    display: flex;
}

.place-bet-modal {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    position: relative;
    animation: slideUpModal 0.3s ease-out;
}

@keyframes slideUpModal {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.close-modal {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.modal-match-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-match-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.modal-live-badge {
    background: #ff0000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.bet-question {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.question-label {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.question-answer {
    font-size: 15px;
    font-weight: 600;
}

.answer-team {
    color: #ffffff;
}

.answer-odds {
    color: #ffc107;
    margin-left: 8px;
}

.bet-amount-section {
    margin-bottom: 20px;
}

.amount-label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.amount-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.amount-input:focus {
    border-color: #667eea;
    background: rgba(0, 0, 0, 0.4);
}

.bet-summary {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label {
    font-size: 14px;
    color: #a0a0a0;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
}

.winning-value {
    color: #00ff88;
}

.place-bet-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.place-bet-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-item.active {
    color: #667eea;
}

.nav-item i {
    font-size: 20px;
}

.nav-item:hover {
    color: #667eea;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 480px) {
    .welcome-banner h1 {
        font-size: 28px;
    }

    .team-logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .score {
        font-size: 24px;
    }

    .place-bet-modal {
        width: 95%;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d3d 100%);
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #6c5ce7;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.balance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.coin-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
}

.header-right {
    display: flex;
    gap: 15px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Welcome Banner */
.welcome-banner {
    margin: 20px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.welcome-banner::before {
    content: '777';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.welcome-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.welcome-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.welcome-banner p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Section */
.section {
    padding: 0 20px;
    margin-top: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.tabs::-webkit-scrollbar {
    height: 3px;
}

.tabs::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Match Cards */
.match-card {
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.match-card:hover {
    transform: translateY(-5px);
}

.league-name {
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.team-logo.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.score-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.score {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.bet-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.bet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

/* Bet Details Page */
.bet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.match-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-left: 15px;
}

.match-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.match-title {
    font-size: 16px;
    font-weight: 600;
}

.live-badge {
    background: #ff0000;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

/* Match Score Section */
.bet-match-section {
    padding: 20px;
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    margin: 20px;
    border-radius: 15px;
}

.live-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.live-tag {
    background: #ff0000;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.match-date {
    font-size: 13px;
    color: #a0a0a0;
}

.team-scores {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 0;
}

.team-label {
    font-size: 14px;
    font-weight: 500;
}

.team-points {
    font-size: 14px;
    color: #a0a0a0;
}

/* Betting Options */
.betting-section {
    padding: 0 20px 20px;
}

.betting-category {
    margin-bottom: 25px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.bet-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bet-option {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.bet-option:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.bet-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bet-option-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.bet-odds {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

/* My Bet Page */
.my-bet-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.my-bet-title {
    font-size: 20px;
    font-weight: 600;
}

/* Bet Filter Tabs */
.bet-filter-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
}

.bet-filter-tab {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.bet-filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Bet History Cards */
.bet-history-container {
    padding: 0 20px 20px;
}

.bet-history-card {
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.bet-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.status-won {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
}

.status-lost {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
}

.status-pending {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
}

.bet-match-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.bet-match-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bet-match-details {
    flex: 1;
}

.bet-match-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.bet-match-time {
    font-size: 12px;
    color: #a0a0a0;
}

.bet-question-answer {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.bet-qa-label {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.bet-qa-value {
    font-size: 14px;
    font-weight: 600;
}

.bet-qa-odds {
    color: #ffc107;
    margin-left: 8px;
}

.bet-amounts {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.bet-amount-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.bet-amount-label {
    font-size: 11px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.bet-amount-value {
    font-size: 16px;
    font-weight: 700;
}

.amount-stake {
    color: #ffffff;
}

.amount-winning {
    color: #00ff88;
}

.amount-loss {
    color: #ff4444;
}

/* Place Bet Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay.active {
    display: flex;
}

.place-bet-modal {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    position: relative;
    animation: slideUpModal 0.3s ease-out;
}

@keyframes slideUpModal {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.close-modal {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.modal-match-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-match-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.modal-live-badge {
    background: #ff0000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.bet-question {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.question-label {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.question-answer {
    font-size: 15px;
    font-weight: 600;
}

.answer-team {
    color: #ffffff;
}

.answer-odds {
    color: #ffc107;
    margin-left: 8px;
}

.bet-amount-section {
    margin-bottom: 20px;
}

.amount-label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.amount-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.amount-input:focus {
    border-color: #667eea;
    background: rgba(0, 0, 0, 0.4);
}

.bet-summary {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label {
    font-size: 14px;
    color: #a0a0a0;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
}

.winning-value {
    color: #00ff88;
}

.place-bet-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.place-bet-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-item.active {
    color: #667eea;
}

.nav-item i {
    font-size: 20px;
}

.nav-item:hover {
    color: #667eea;
    transform: translateY(-3px);
}

/* Sports Page Styles */
.sports-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
    background: rgba(10, 14, 39, 0.5);
}

.sports-tab {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.sports-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Teams Container */
.teams-container {
    padding: 15px 20px 20px;
}

/* Team Card */
.team-card {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-logo-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Team Logo Colors */
.mi-logo {
    background: linear-gradient(135deg, #004BA0 0%, #0064C8 100%);
}

.csk-logo {
    background: linear-gradient(135deg, #F9CD05 0%, #FFC300 100%);
}

.kkr-logo {
    background: linear-gradient(135deg, #3A225D 0%, #2E0854 100%);
}

.rcb-logo {
    background: linear-gradient(135deg, #EC1C24 0%, #D71920 100%);
}

.pbks-logo {
    background: linear-gradient(135deg, #ED1B24 0%, #C8102E 100%);
}

.srh-logo {
    background: linear-gradient(135deg, #FF822A 0%, #FC4C02 100%);
}

.dc-logo {
    background: linear-gradient(135deg, #004C93 0%, #282968 100%);
}

.rr-logo {
    background: linear-gradient(135deg, #254AA5 0%, #EA1A85 100%);
}

.team-name-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.star-icon {
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s;
}

.star-icon:hover {
    transform: scale(1.2);
}

/* Players List */
.players-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.team-card.expanded .players-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.player-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
}

.player-item:hover {
    background: rgba(102, 126, 234, 0.1);
    padding-left: 25px;
}

.player-item:last-child {
    border-bottom: none;
}

/* Expanded State */
.team-card.expanded {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.team-card.expanded .team-header {
    background: rgba(102, 126, 234, 0.1);
}

/* Responsive Design */
@media (max-width: 480px) {
    .welcome-banner h1 {
        font-size: 28px;
    }

    .team-logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .score {
        font-size: 24px;
    }

    .place-bet-modal {
        width: 95%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d3d 100%);
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* ============================================
   HEADER SECTION
============================================ */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #6c5ce7;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.balance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.coin-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
}

.header-right {
    display: flex;
    gap: 15px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* ============================================
   WELCOME BANNER
============================================ */
.welcome-banner {
    margin: 20px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.welcome-banner::before {
    content: '777';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.welcome-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.welcome-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.welcome-banner p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ============================================
   SECTIONS & TABS
============================================ */
.section {
    padding: 0 20px;
    margin-top: 30px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.tabs::-webkit-scrollbar {
    height: 3px;
}

.tabs::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   MATCH CARDS (HOME PAGE)
============================================ */
.match-card {
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.match-card:hover {
    transform: translateY(-5px);
}

.league-name {
    text-align: center;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.team-logo.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.score-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.score {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.bet-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.bet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
}

/* ============================================
   BET DETAILS PAGE
============================================ */
.bet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.back-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.match-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    margin-left: 15px;
}

.match-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.match-title {
    font-size: 16px;
    font-weight: 600;
}

.live-badge {
    background: #ff0000;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

.bet-match-section {
    padding: 20px;
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    margin: 20px;
    border-radius: 15px;
}

.live-date {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.live-tag {
    background: #ff0000;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.match-date {
    font-size: 13px;
    color: #a0a0a0;
}

.team-scores {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 0;
}

.team-label {
    font-size: 14px;
    font-weight: 500;
}

.team-points {
    font-size: 14px;
    color: #a0a0a0;
}

/* Betting Options */
.betting-section {
    padding: 0 20px 20px;
}

.betting-category {
    margin-bottom: 25px;
}

.category-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.bet-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bet-option {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.bet-option:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.bet-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bet-option-label {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.bet-odds {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

/* ============================================
   MY BET PAGE
============================================ */
.my-bet-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.my-bet-title {
    font-size: 20px;
    font-weight: 600;
}

.bet-filter-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
}

.bet-filter-tab {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.bet-filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bet-history-container {
    padding: 0 20px 20px;
}

.bet-history-card {
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.bet-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.status-won {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
}

.status-lost {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
}

.status-pending {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
}

.bet-match-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.bet-match-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.bet-match-details {
    flex: 1;
}

.bet-match-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.bet-match-time {
    font-size: 12px;
    color: #a0a0a0;
}

.bet-question-answer {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.bet-qa-label {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.bet-qa-value {
    font-size: 14px;
    font-weight: 600;
}

.bet-qa-odds {
    color: #ffc107;
    margin-left: 8px;
}

.bet-amounts {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.bet-amount-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.bet-amount-label {
    font-size: 11px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.bet-amount-value {
    font-size: 16px;
    font-weight: 700;
}

.amount-stake {
    color: #ffffff;
}

.amount-winning {
    color: #00ff88;
}

.amount-loss {
    color: #ff4444;
}

/* ============================================
   PLACE BET MODAL
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay.active {
    display: flex;
}

.place-bet-modal {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    position: relative;
    animation: slideUpModal 0.3s ease-out;
}

@keyframes slideUpModal {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.close-modal {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-match-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.modal-match-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-match-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.modal-live-badge {
    background: #ff0000;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.bet-question {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.question-label {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.question-answer {
    font-size: 15px;
    font-weight: 600;
}

.answer-team {
    color: #ffffff;
}

.answer-odds {
    color: #ffc107;
    margin-left: 8px;
}

.bet-amount-section {
    margin-bottom: 20px;
}

.amount-label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.amount-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.amount-input:focus {
    border-color: #667eea;
    background: rgba(0, 0, 0, 0.4);
}

.bet-summary {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-label {
    font-size: 14px;
    color: #a0a0a0;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
}

.winning-value {
    color: #00ff88;
}

.place-bet-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.place-bet-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

/* ============================================
   SPORTS PAGE
============================================ */
.sports-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
    background: rgba(10, 14, 39, 0.5);
}

.sports-tab {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.sports-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.teams-container {
    padding: 15px 20px 20px;
}

.team-card {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-logo-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.mi-logo { background: linear-gradient(135deg, #004BA0 0%, #0064C8 100%); }
.csk-logo { background: linear-gradient(135deg, #F9CD05 0%, #FFC300 100%); }
.kkr-logo { background: linear-gradient(135deg, #3A225D 0%, #2E0854 100%); }
.rcb-logo { background: linear-gradient(135deg, #EC1C24 0%, #D71920 100%); }
.pbks-logo { background: linear-gradient(135deg, #ED1B24 0%, #C8102E 100%); }
.srh-logo { background: linear-gradient(135deg, #FF822A 0%, #FC4C02 100%); }
.dc-logo { background: linear-gradient(135deg, #004C93 0%, #282968 100%); }
.rr-logo { background: linear-gradient(135deg, #254AA5 0%, #EA1A85 100%); }

.team-name-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.star-icon {
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s;
}

.star-icon:hover {
    transform: scale(1.2);
}

.players-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.team-card.expanded .players-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.player-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s;
}

.player-item:hover {
    background: rgba(102, 126, 234, 0.1);
    padding-left: 25px;
}

.player-item:last-child {
    border-bottom: none;
}

.team-card.expanded {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.team-card.expanded .team-header {
    background: rgba(102, 126, 234, 0.1);
}

/* ============================================
   WALLET PAGE
============================================ */
.balance-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 20px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.balance-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.balance-amount {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.balance-subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.wallet-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 20px 20px;
}

.wallet-action-btn {
    padding: 18px;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.wallet-action-btn i {
    font-size: 28px;
}

.deposit-btn {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.deposit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

.withdraw-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.withdraw-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.transaction-tabs {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    overflow-x: auto;
}

.transaction-tab {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.transaction-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.transaction-container {
    padding: 0 20px 20px;
}

.transaction-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.transaction-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.transaction-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.deposit-icon {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000;
}

.withdraw-icon {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: #fff;
}

.transaction-details {
    flex: 1;
}

.transaction-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.transaction-date {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 3px;
}

.transaction-id {
    font-size: 11px;
    color: #6c757d;
}

.transaction-amount-section {
    text-align: right;
}

.transaction-amount {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.deposit-amount {
    color: #00ff88;
}

.withdraw-amount {
    color: #ff4444;
}

.transaction-status {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    display: inline-block;
}

.status-success {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-failed {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

.wallet-modal {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    padding: 25px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUpModal 0.3s ease-out;
}

.amount-input-section {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 15px;
    transition: all 0.3s;
}

.amount-input-wrapper:focus-within {
    border-color: #667eea;
}

.currency-symbol {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-right: 10px;
}

.wallet-amount-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 0;
    color: white;
    font-size: 24px;
    font-weight: 600;
    outline: none;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.quick-amount-btn {
    padding: 12px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-amount-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.payment-methods {
    margin-bottom: 25px;
}

.payment-method-title {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.payment-method-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-method-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method-item i {
    font-size: 28px;
    color: #667eea;
}

.payment-method-item span {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.payment-method-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-3px);
}

.payment-method-item.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.2);
}

.balance-info {
    background: rgba(102, 126, 234, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #a0a0a0;
}

.balance-value {
    color: #00ff88;
    font-weight: 700;
    font-size: 16px;
}

.bank-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-label {
    font-size: 13px;
    color: #a0a0a0;
}

.bank-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.confirm-transaction-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    border: none;
    border-radius: 15px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.confirm-transaction-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.6);
}

.withdraw-confirm-btn {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

.withdraw-confirm-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

/* ============================================
   PROFILE PAGE
============================================ */
.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.profile-title {
    font-size: 20px;
    font-weight: 600;
}

.search-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

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

.profile-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 20px;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.profile-pic-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.profile-email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.profile-menu {
    padding: 15px 0 100px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    margin: 0 15px 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.menu-item:hover {
    transform: translateX(5px);
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.menu-item.logout-item {
    margin-top: 20px;
}

.menu-item.logout-item .menu-icon {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
}

.menu-item.logout-item .menu-title {
    color: #ff4444;
}

.menu-icon {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #667eea;
    flex-shrink: 0;
    transition: all 0.3s;
}

.menu-item:hover .menu-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.menu-text {
    flex: 1;
}

.menu-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.menu-subtitle {
    font-size: 12px;
    color: #a0a0a0;
}

.menu-item i:last-child {
    color: #6c757d;
    font-size: 18px;
}

.theme-modal {
    background: linear-gradient(135deg, #2d2f4f 0%, #1a1d3d 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    animation: slideUpModal 0.3s ease-out;
}

.theme-options {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
}

.theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-preview {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.dark-preview {
    background: linear-gradient(135deg, #1a1d3d 0%, #0a0e27 100%);
}

.light-preview {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.theme-option span {
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
}

.theme-option.active .theme-preview {
    border-color: #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.theme-option.active span {
    color: #667eea;
}

.confirm-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

/* ============================================
   CHANGE PASSWORD PAGE
============================================ */
.password-container {
    padding: 20px;
    padding-bottom: 100px;
}

.password-form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-label i {
    font-size: 16px;
    color: #667eea;
}

.password-input-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 0 15px;
    transition: all 0.3s;
}

.password-input-wrapper:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
}

.form-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 0;
    color: white;
    font-size: 16px;
    outline: none;
}

.form-input::placeholder {
    color: #6c757d;
}

.toggle-password-btn {
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: all 0.3s;
}

.toggle-password-btn:hover {
    color: #764ba2;
    transform: scale(1.1);
}

.form-helper {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.password-strength {
    margin-top: 15px;
}

.strength-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s;
    border-radius: 10px;
}

.strength-text {
    font-size: 12px;
    color: #ff4444;
    font-weight: 600;
}

.password-requirements {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a0a0a0;
}

.requirement i {
    font-size: 16px;
    color: #6c757d;
}

.requirement.met {
    color: #00ff88;
}

.requirement.met i {
    color: #00ff88;
}

.password-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.btn-cancel,
.btn-submit {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.info-box {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

.info-box i {
    font-size: 20px;
    color: #667eea;
    flex-shrink: 0;
}

.info-box strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    font-size: 13px;
    color: #a0a0a0;
    padding: 4px 0;
}

.info-box li:before {
    content: "• ";
    color: #667eea;
    font-weight: bold;
    margin-right: 8px;
}

/* ============================================
   TERMS & CONDITIONS PAGE
============================================ */
.terms-container {
    padding-bottom: 100px;
}

.terms-content {
    padding: 20px;
}

.terms-version {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.1);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 25px;
}

.terms-version i {
    color: #667eea;
}

.terms-section {
    margin-bottom: 25px;
}

.terms-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-heading:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.terms-text {
    font-size: 14px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 12px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.terms-list li {
    font-size: 14px;
    color: #a0a0a0;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.terms-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.contact-info {
    background: linear-gradient(135deg, #1a1d3d 0%, #2d2f4f 100%);
    padding: 15px;
    border-radius: 12px;
    margin-top: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: #a0a0a0;
}

.contact-item i {
    font-size: 16px;
    color: #667eea;
    min-width: 20px;
}

.contact-item span {
    flex: 1;
}

.acceptance-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
}

.acceptance-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.acceptance-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00ff88;
}

.acceptance-checkbox label {
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    flex: 1;
}

.btn-accept {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    color: #667eea;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

/* ============================================
   BOTTOM NAVIGATION
============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-item.active {
    color: #667eea;
}

.nav-item i {
    font-size: 20px;
}

.nav-item:hover {
    color: #667eea;
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 480px) {
    .welcome-banner h1 {
        font-size: 28px;
    }

    .team-logo {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .score {
        font-size: 24px;
    }

    .place-bet-modal,
    .wallet-modal,
    .theme-modal {
        width: 95%;
    }

    .balance-amount {
        font-size: 36px;
    }

    .stats-card {
        gap: 10px;
        padding: 20px;
    }

    .stat-number {
        font-size: 24px;
    }
}