body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.ticket {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.ticket-header {
    background: linear-gradient(45deg, #ffcc00, #ff6600);
    color: white;
    padding: 20px;
    text-align: center;
}
.ticket-header2 {
    background: linear-gradient(45deg, #00ff95, #cc00ff);
    color: white;
    padding: 20px;
    text-align: center;
}

.ticket-header2 h2 {
    margin: 0;
    font-size: 24px;
}

.ticket-header2 p {
    margin: 10px 0 0;
    font-size: 18px;
}

.ticket-header h2 {
    margin: 0;
    font-size: 24px;
}

.ticket-header p {
    margin: 10px 0 0;
    font-size: 18px;
}

.ticket-footer {
    padding: 20px;
    text-align: center;
    color: #333;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background: linear-gradient(45deg, #3498db, #8e44ad);
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    color: white;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
}

.instagram-buttons {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.instagram-button {
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.instagram-button:hover {
    background-color: #f0f0f0;
}

.instagram-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.impressum {
    position: fixed;
    bottom: 3%;
    text-decoration: none;
    color: white;
}

ul {
    padding-left: 20px;
}
.agePopup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-family: Arial, sans-serif;
    z-index: 1000;
}
.popupContent {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}
button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.confirmBtn {
    background-color: #4CAF50;
    color: white;
}
.denyBtn {
    background-color: #f44336;
    color: white;
}