* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f5f5;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.logo {
    width: 90px;
    margin-bottom: 20px;
}

.btn {
    margin-top: 25px;
    padding: 14px 35px;
    background: #ff9800;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

/* BUY TICKET */
.ticket-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ticket-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.ticket-container input,
.ticket-container select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.price {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}

button {
    width: 100%;
    padding: 14px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #222;
}

@media(max-width: 600px){
    .ticket-container {
        margin: 40px 15px;
    }
}


.btn {
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,152,0,0.6);
}
