/* =========================================
   Tickera Unique Events – Styles
   ========================================= */

/* Grid */
.tue-grid {
    display: grid;
    gap: 24px;
    padding: 20px 0;
}

.tue-columns-2 { grid-template-columns: repeat(2, 1fr); }
.tue-columns-3 { grid-template-columns: repeat(3, 1fr); }
.tue-columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
    .tue-columns-2,
    .tue-columns-3,
    .tue-columns-4 {
        grid-template-columns: 1fr;
    }
}

/* Card */
.tue-event-card {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #111;
}

.tue-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* Image */
.tue-event-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 7 / 4;
    background: #1a1a1a;
}

.tue-event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tue-event-card:hover .tue-event-img {
    transform: scale(1.03);
}

.tue-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Badge */
.tue-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f59e0b;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buy Bar */
.tue-buy-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1da8c7;
    padding: 14px 20px;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.tue-event-card:hover .tue-buy-bar {
    background: #1591ad;
}

.tue-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    flex-shrink: 0;
    animation: tue-pulse 1.5s infinite;
}

@keyframes tue-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

.tue-hand {
    font-size: 20px;
}

/* No events */
.tue-no-events {
    text-align: center;
    color: #888;
    padding: 40px;
}

/* Card as anchor – reset link styles */
a.tue-event-card {
    text-decoration: none;
    color: inherit;
    display: block;
}


