header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #222;
    padding-bottom: 2rem;
}

h1 {
    font-family: var(--font-mono);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--secondary);
    padding: 3rem;
    border: 1px solid #222;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section h2 {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
}

input,
select,
textarea {
    background: #050505;
    border: 1px solid #333;
    color: #fff;
    padding: 0.8rem;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.full-width {
    grid-column: span 2;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.btn-submit {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 1.2rem;
    width: 100%;
    font-weight: bold;
    font-family: var(--font-mono);
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 2rem;
    transition: 0.3s;
}

.btn-submit:hover {
    box-shadow: 0 0 20px var(--accent);
    transform: translateY(-2px);
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.8rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
}

.back-link:hover {
    color: var(--accent);
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

/* Modal Ticket */
#ticket-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    text-align: center;
}

.ticket-box {
    background: #111;
    padding: 4rem;
    border: 2px solid var(--accent);
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.2);
    max-width: 90%;
}

.ticket-number-huge {
    font-size: 4rem;
    color: var(--accent);
    font-family: var(--font-mono);
    margin: 2rem 0;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    letter-spacing: 5px;
}

.ticket-box p {
    font-size: 1.2rem;
    color: #ccc;
}
