/* Ticket Page Styles */
.container {
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 32px 24px 40px 24px;
}

h1 {
    text-align: center;
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    text-align: center;
    color: #4CAF50;
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px 32px;
}

.ticket-card {
    padding: 22px 12px 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}

.ticket-card:hover {
    box-shadow: 0 6px 24px rgba(76, 175, 80, 0.18);
}

.ticket-img {
    width: 230px;
    height: 230px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.ticket-name {
    font-weight: bold;
    color: #222;
    font-size: 1.13rem;
    text-align: center;
    margin-bottom: 2px;
}

.ex-glow-purple {
    box-shadow: 0 0 0 6px #d6b6ff, 0 0 16px 4px #d6b6ff;
    animation: exGlowPurple 1.6s infinite alternate;
}

@keyframes exGlowPurple {
    0% {
        box-shadow: 0 0 0 6px #d6b6ff, 0 0 16px 4px #d6b6ff;
    }
    100% {
        box-shadow: 0 0 0 12px #e7c2ff, 0 0 32px 8px #e7c2ff;
    }
}

.ticket-link-img {
    transition: transform 0.25s cubic-bezier(.4, 2, .6, 1), box-shadow 0.25s;
    border-radius: 18px;
}

.ticket-link-img:hover {
    transform: scale(1.13) rotate(-2deg);
    box-shadow: 0 8px 32px 0 rgba(76, 175, 80, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.footer {
    background-color: #2c3e50;
    padding: 30px 0;
    margin-top: 50px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
    gap: 10px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-copyright {
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 900px) {
    .ticket-img {
        width: 160px;
        height: 160px;
    }
    .ticket-grid {
        gap: 24px 12px;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 10px;
    }
    .ticket-img {
        width: 110px;
        height: 110px;
    }
}
