
/* header {
    background-color: #000;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #0fe63e;
} */


.tickets-container {
    text-align: center;
    margin: 190px auto;
    max-width: 1200px;
}

.tickets-container h2 {
    font-size: 45px;
    text-shadow: 0px 0px 10px #0f0;
    color: #24a20e;
    margin-bottom: 20px;
}

.tickets-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ticket {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease-in-out;
}

.ticket:hover {
    transform: scale(1.05);
}

.ticket img {
    width: 250px;  /* Adjust based on actual image size */
    height: auto;
    border-radius: 8px;
}

.register-btn {
    background: #00cc66;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.register-btn:hover {
    background: #00994d;
}


/* Set Background to Black */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: Arial, sans-serif;
    text-align: center;
    background: black; /* Black Background */
    color: white; /* White Text for Contrast */
}

/* Footer */
footer {
    background-color: #000;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #39ff14;
}

footer p {
    color: #39ff14;
    text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
}



@media screen and (max-width: 768px) {
    .ticket {
       width: 60% !important;
       height: fit-content;
    }
    .ticket img {
        width: 190px; 
    }
}