* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

header {
    padding: 2rem 10%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    color: #38bdf8; 
}

#hero {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

#hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 2rem;
}

#openModal {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

#openModal:hover {
    background-color: #7dd3fc;
    transform: translateY(-3px);
}

.modal {
    display: none; 
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1e293b;
    margin: 10% auto;
    padding: 2.5rem;
    border: 1px solid #334155;
    width: 90%;
    max-width: 450px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
}


h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 0.8rem;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: white;
    outline: none;
}

.input-group input:focus {
    border-color: #38bdf8;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #38bdf8;
    color: #0f172a;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #7dd3fc;
}

.ticket-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ticket-card {
    background: linear-gradient(135deg, #334155 0%, #0f172a 100%);
    border: 2px dashed #38bdf8;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 12px;
    text-align: left;
}

.ticket-card h3 {
    color: #38bdf8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #334155;
    font-size: 0.8rem;
    color: #94a3b8;
}

@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 5%;
    }
    
    #hero h1 {
        font-size: 2.8rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 20% auto;
    }
}


@media (max-width: 480px) {
    #hero h1 {
        font-size: 2.2rem;
    }
    
    #hero p {
        font-size: 1rem;
    }

    #openModal {
        width: 100%;
        max-width: 300px;
    }
}

