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

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 2px solid #ff8c00;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.logo-icon {
    color: #ff8c00;
    font-size: 20px;
}

.logo-accent {
    color: #ff8c00;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.1);
}

.header-right {
    display: flex;
    align-items: center;
}

.user-panel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.user-name {
    font-size: 13px;
    color: #cccccc;
    font-weight: 500;
}

.user-balance {
    font-size: 16px;
    font-weight: 700;
    color: #ff8c00;
}

.user-actions {
    display: flex;
    gap: 8px;
}

.btn-secondary {
    background: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #444444;
    border-color: #ff8c00;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 70px - 200px);
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 14px;
    color: #999999;
    font-weight: 400;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff8c00, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: #ff8c00;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
}

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

.game-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #333333;
}

.match-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.home-team,
.away-team {
    flex: 1;
    text-align: center;
}

.vs {
    color: #ff8c00;
    font-weight: 700;
    font-size: 14px;
}

.match-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: #999999;
}

.match-date,
.match-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.match-date::before {
    content: '📅';
}

.match-time::before {
    content: '⏰';
}

/* Betting Section */
.betting-section {
    margin-top: 20px;
}

.odds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.odd-item {
    position: relative;
}

.odd-label {
    display: block;
    cursor: pointer;
}

.odd-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.odd-content {
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.odd-team {
    font-size: 12px;
    color: #cccccc;
    font-weight: 500;
}

.odd-value {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.odd-label:hover .odd-content {
    border-color: #ff8c00;
    background: #333333;
}

.odd-label input[type="radio"]:checked + .odd-content {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-color: #ff8c00;
    color: #000000;
}

.odd-label input[type="radio"]:checked + .odd-content .odd-team,
.odd-label input[type="radio"]:checked + .odd-content .odd-value {
    color: #000000;
}

.bet-controls {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.amount-input {
    flex: 1;
}

.amount-input label {
    display: block;
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 4px;
    font-weight: 500;
}

.amount-input input {
    width: 100%;
    padding: 10px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.amount-input input:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}

.amount-input input::placeholder {
    color: #666666;
}

.btn-bet {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

/* Potential Win Display */
.potential-win {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(255, 140, 0, 0.1);
    border-left: 3px solid #ff8c00;
    border-radius: 4px;
    font-size: 12px;
    color: #ff8c00;
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #666666;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 18px;
    color: #999999;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    border-top: 1px solid #333333;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #999999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff8c00;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
}

.footer-section p {
    font-size: 13px;
    color: #999999;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: #666666;
}

.disclaimer {
    color: #555555 !important;
}

/* Bet Cards for other pages */
.bets-container, .results-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.bet-card, .result-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.bet-card:hover, .result-card:hover {
    transform: translateY(-4px);
    border-color: #ff8c00;
    box-shadow: 0 8px 32px rgba(255, 140, 0, 0.15);
}

.bet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333333;
}

.bet-header h3, .bet-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.bet-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(128, 128, 128, 0.2);
    color: #cccccc;
}

.status-won {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
}

.status-lost {
    background: rgba(255, 255, 255, 0.1);
    color: #999999;
}

.bet-details p {
    font-size: 13px;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.4;
}

.bet-details strong {
    color: #ff8c00;
    font-weight: 600;
}

.bet-date {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #333333;
    font-size: 11px;
    color: #666666;
}

/* Admin Section */
.admin-section {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    border: 2px solid #ff8c00;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.admin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.05), transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.admin-section h2, .admin-section h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.btn-simulate {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-simulate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

/* Result Form */
.result-form {
    margin-top: 20px;
}

.result-options {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.result-options label {
    padding: 8px 16px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.result-options label:hover {
    background: #333333;
    border-color: #ff8c00;
}

.result-options input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
    border-color: #ff8c00;
}

.result-form button {
    background: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-form button:hover {
    background: #444444;
    border-color: #ff8c00;
}

.result-info {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.result-label {
    font-size: 13px;
    color: #cccccc;
}

.result-value {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Messages */
.message {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ff8c00;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card {
    animation: slideInUp 0.6s ease forwards;
}

.game-card:nth-child(2) { animation-delay: 0.1s; }
.game-card:nth-child(3) { animation-delay: 0.2s; }
.game-card:nth-child(4) { animation-delay: 0.3s; }
.game-card:nth-child(5) { animation-delay: 0.4s; }

/* Stats Overview */
.stats-overview {
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.stat-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: #ff8c00;
}

.stat-card.profit {
    border-color: #ff8c00;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 165, 0, 0.05));
}

.stat-card.loss {
    border-color: #666666;
}

.stat-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #999999;
    font-weight: 500;
}

/* Bet Info Grid */
.bet-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bet-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
}

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

.info-label {
    font-size: 12px;
    color: #999999;
    font-weight: 500;
}

.info-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    text-align: right;
}

.odds-highlight {
    color: #ff8c00 !important;
}

.potential-highlight {
    color: #ff8c00 !important;
}

/* Admin Section Styles */
.admin-desc {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
}

.quick-action {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.admin-games {
    margin-top: 20px;
}

.admin-card {
    border-color: #444444;
}

.admin-card:hover {
    border-color: #ff8c00;
}

/* Result Form Styles */
.result-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.result-option:hover {
    background: #333333;
    border-color: #ff8c00;
}

.result-option input[type="radio"] {
    margin-right: 8px;
}

.result-option input[type="radio"]:checked + .option-text {
    color: #ff8c00;
    font-weight: 600;
}

.option-text {
    flex: 1;
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
}

.option-odds {
    font-size: 12px;
    color: #999999;
    font-weight: 600;
}

.btn-set-result {
    width: 100%;
    background: #333333;
    color: #ffffff;
    border: 1px solid #555555;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-set-result:hover {
    background: #444444;
    border-color: #ff8c00;
}

/* Results Section */
.results-section {
    margin-top: 40px;
}

.results-section h2 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: left;
}

.results-section h2::after {
    display: none;
}

.result-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333333;
}

.result-display {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.final-result {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ff8c00 !important;
}

.odds-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.odds-item {
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.odds-item.winning {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 165, 0, 0.1));
    border-color: #ff8c00;
}

.odds-label {
    display: block;
    font-size: 11px;
    color: #999999;
    font-weight: 500;
    margin-bottom: 4px;
}

.odds-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.odds-item.winning .odds-label,
.odds-item.winning .odds-value {
    color: #ff8c00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Charge/Withdraw Page Styles */
.charge-layout, .withdraw-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.charge-main, .withdraw-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.balance-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid #ff8c00;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.balance-header {
    position: relative;
    z-index: 1;
}

.balance-header h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.balance-amount {
    font-size: 28px;
    font-weight: 700;
    color: #ff8c00;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.balance-note {
    margin-top: 12px;
}

.balance-note p {
    color: #cccccc;
    font-size: 12px;
    margin: 0;
}

.charge-form-card, .withdraw-form-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.charge-form-card:hover, .withdraw-form-card:hover {
    border-color: #444444;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.charge-form-card h3, .withdraw-form-card h3 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

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

.form-section label {
    display: block;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.amount-selection {
    margin-bottom: 25px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.amount-btn {
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #444444;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.amount-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.amount-btn:hover::before {
    left: 100%;
}

.amount-btn:hover, .amount-btn.active {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
    border-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.custom-amount {
    margin-top: 16px;
}

.custom-amount input {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-amount input:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

.amount-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.amount-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.amount-input-group input:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

.btn-all {
    background: linear-gradient(135deg, #444444, #555555);
    color: #ffffff;
    border: 1px solid #666666;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-all:hover {
    background: linear-gradient(135deg, #555555, #666666);
    border-color: #777777;
    transform: translateY(-1px);
}

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

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

.method-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.method-content {
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.method-option:hover .method-content::before {
    left: 100%;
}

.method-option:hover .method-content {
    border-color: #ff8c00;
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.15);
}

.method-option input[type="radio"]:checked + .method-content {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 165, 0, 0.1));
    border-color: #ff8c00;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
}

.method-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.method-name {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.method-desc {
    display: block;
    color: #999999;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.charge-summary, .withdraw-summary {
    background: linear-gradient(135deg, #2a2a2a, #333333);
    border: 1px solid #444444;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.charge-summary::before, .withdraw-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ffa500, #ff8c00);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

.summary-row.total {
    border-top: 1px solid #555555;
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    color: #ffffff;
    font-size: 16px;
}

.summary-row.total span:last-child {
    color: #ff8c00;
    text-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
}

.btn-charge, .btn-withdraw {
    width: 100%;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
    border: none;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-charge::before, .btn-withdraw::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-charge:hover::before, .btn-withdraw:hover::before {
    left: 100%;
}

.btn-charge:hover, .btn-withdraw:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.btn-charge:active, .btn-withdraw:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.charge-sidebar, .withdraw-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card, .history-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.info-card:hover, .history-card:hover {
    border-color: #444444;
    transform: translateY(-2px);
}

.info-card h4, .history-card h4 {
    color: #ff8c00;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.info-card li {
    color: #cccccc;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li:hover {
    color: #ffffff;
    padding-left: 8px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 14px;
    transition: all 0.3s ease;
}

.history-item:hover {
    border-color: #555555;
    background: #333333;
}

.history-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.history-amount {
    font-weight: 700;
    color: #ff8c00;
    font-size: 14px;
}

.history-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

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

.status-completed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-rejected {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.history-method, .history-bank {
    font-size: 11px;
    color: #999999;
    margin-top: 2px;
}

.history-date {
    font-size: 11px;
    color: #666666;
    margin-top: 4px;
}

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

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.terms-checkbox:hover {
    background: rgba(255, 140, 0, 0.05);
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #ff8c00;
}

.terms-checkbox span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.terms-content {
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 16px;
    margin-top: 10px;
}

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

.terms-content li {
    color: #cccccc;
    font-size: 12px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terms-content li:last-child {
    border-bottom: none;
}

/* Select Styles */
select {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

select option {
    background: #2a2a2a;
    color: #ffffff;
}

/* Form Input Styles */
input[type="text"], input[type="number"] {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

input[type="text"]:focus, input[type="number"]:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

input[type="text"]::placeholder, input[type="number"]::placeholder {
    color: #666666;
}

/* Small text */
small {
    color: #999999;
    font-size: 11px;
    display: block;
    margin-top: 6px;
}

/* Active button states */
.btn-secondary.active {
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    color: #000000;
    border-color: #ff8c00;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 0 16px;
        height: auto;
        min-height: 70px;
        flex-direction: column;
        gap: 20px;
        padding-top: 16px;
        padding-bottom: 16px;
    }
    
    .header-left {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .user-panel {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    
    .user-info {
        align-items: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .odds-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .bet-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .bets-container, .results-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .bet-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .odds-display {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .charge-layout, .withdraw-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
}