* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

.matches-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.match-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: white;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.team-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.team-flag {
    font-size: 36px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.bet-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.bet-options .btn {
    flex: 1;
    transition: all 0.3s;
    font-weight: 500;
}

.bet-options .btn:hover {
    transform: scale(1.02);
}

.bet-options input[type="radio"] {
    margin-right: 8px;
}

.btn-modern {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.text-white {
    color: white !important;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.precio-total {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 15px;
    padding: 20px;
    color: white;
    text-align: center;
}

.precio-total .monto {
    font-size: 42px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .team {
        flex-direction: column;
        text-align: center;
    }
    
    .bet-options {
        flex-direction: column;
    }
    
    .matches-container {
        padding: 15px;
    }
    
    .team-flag {
        font-size: 28px;
    }
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.match-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Alertas y badges */
.badge-acierto {
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.badge-acierto.correcto {
    background: #28a745;
    color: white;
}

.badge-acierto.incorrecto {
    background: #dc3545;
    color: white;
}

.badge-acierto.pendiente {
    background: #ffc107;
    color: #000;
}