* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 20px;
}

.container {
    max-width: 1300px;
    margin: auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.header {
    background: #f5b042;
    color: #2c3e50;
    padding: 25px;
    text-align: center;
    border-bottom: 5px solid #e67e22;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contacto {
    background: #fff3e0;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 15px;
    font-weight: bold;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    padding: 30px;
    background: #ecf0f1;
}

.boleto {
    background: white;
    border-radius: 16px;
    padding: 12px 5px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.boleto:hover {
    transform: translateY(-5px);
}

.numero {
    font-size: 1.8rem;
    font-weight: bold;
    background: #34495e;
    color: white;
    display: inline-block;
    width: 70px;
    margin-bottom: 8px;
    border-radius: 40px;
    padding: 5px;
}

.disponible {
    background: #d5f5e3;
    border-left: 8px solid #2ecc71;
}

.pagada {
    background: #f9e79f;
    border-left: 8px solid #f1c40f;
    opacity: 0.9;
}

.nombre {
    font-size: 0.85rem;
    font-weight: bold;
    background: #f39c12;
    color: white;
    padding: 4px;
    border-radius: 20px;
    margin: 5px 0;
}

.estado {
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: bold;
}

form input {
    width: 90%;
    padding: 6px;
    margin: 5px 0;
    border: 1px solid #bdc3c7;
    border-radius: 20px;
    text-align: center;
}

form button {
    background: #2ecc71;
    border: none;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    width: 90%;
}

form button:hover {
    background: #27ae60;
}

.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}