@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    text-align: center;
    position: relative;
    z-index: 10;
}

img {
    max-width: 200px;
    height: auto;
    margin-bottom: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-weight: bold;
    margin-bottom: 60px;
    transform: scale(3);
    line-height: 0.8;
}

h1 span:nth-child(2) {
    margin-bottom: 20px;
}

h2 {
    font-weight: bold;
    margin-bottom: 60px;
    font-size: 40px;
    line-height: 0.8;
}


p {
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
}

.buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

button {
    background-color: white;
    color: black;
    border: none;
    width: 200px;
    height: 70px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    border-radius: 10px;
}

.ticket-link {
    background-color: white;
    color: black;
    border: none;
    width: 200px;
    height: 70px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    border-radius: 10px;
    text-decoration: none;
}

a {
    background-color: white;
    color: black;
    border: none;
    width: 200px;
    height: 70px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    border-radius: 10px;
    text-decoration: none;
}
button:hover {
    background-color: #cccccc;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.ticket-link:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    h1 {
        transform: scale(2);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        max-width: 90vw;
    }
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    button, a {
        width: 150px;
        height: 75px;
        font-size: 16px;
    }
    .container {
        padding-top: 50px;
    }
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -999;
}

#video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    height: 100px;
    resize: vertical;
}

button[type="submit"] {
    margin-top: 20px;
    padding: 10px;
    background-color: #cccccc;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #aaaaaa;
}

.modal-content h2,
.modal-content label,
.modal-content input,
.modal-content textarea,
.modal-content button[type="submit"] {
    color: black;
}
