/* ==========================================================================
   Punjabi Mania - Premium Glassmorphic Events Hub Stylesheet
   ========================================================================== */

:root {
    --color-primary: #eb1c24;
    --color-primary-hover: #c81016;
    --color-dark: #090d16;
    --color-dark-muted: #111827;
    --color-border: rgba(226, 232, 240, 0.8);
    --color-text-main: #475569;
    --color-text-title: #0f172a;
    --container-width: 1200px;
    --glass-blur: 20px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.02);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 15px 25px -10px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Page Reset */
.events-hub {
    padding-bottom: 80px;
    background: #f8fafc;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif !important;
}

.events-hub .container {
    display: block !important;
    max-width: var(--container-width) !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding: 0 24px !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   🏷️ CINEMATIC GLASS HERO SECTION
   ========================================================================== */

.pm-hero-punjabi-glass {
    background: radial-gradient(circle at 50% 50%, #1e1114 0%, #060911 100%) !important;
    border-bottom: 2px solid rgba(237, 30, 36, 0.18) !important;
    padding: 100px 20px 110px !important;
    text-align: center;
    color: white !important;
    overflow: hidden;
    isolation: isolate;
    position: relative;
    width: 100%;
}

.pm-hero-punjabi-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

.pm-hero-punjabi-blob-1 {
    background: rgba(237, 30, 36, 0.28);
    width: 420px;
    height: 420px;
    filter: blur(120px);
    top: -140px;
    left: 6%;
    animation: pulseBlob 9s ease-in-out infinite alternate;
}

.pm-hero-punjabi-blob-2 {
    background: rgba(253, 224, 71, 0.14);
    width: 360px;
    height: 360px;
    filter: blur(100px);
    bottom: -120px;
    right: 6%;
    animation: pulseBlob 7s ease-in-out infinite alternate-reverse;
}

@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.18) translate(25px, 20px); }
}

.pm-hero-glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(var(--glass-blur)) !important;
    -webkit-backdrop-filter: blur(var(--glass-blur)) !important;
    padding: 60px 40px !important;
    border-radius: 32px !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45) !important;
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.pm-hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
    pointer-events: none;
}

.pm-hero-glass-card h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.4rem, 6vw, 4rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.8px !important;
    background: linear-gradient(135deg, #ffffff 40%, #fde047 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.15 !important;
    color: transparent !important;
}

.pm-hero-glass-card p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.7 !important;
    font-weight: 500 !important;
}

/* ==========================================================================
   🔍 LIVE SEARCH & COUNTDOWN TICKER
   ========================================================================== */

.hero-search-wrapper {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.hero-search-bar:focus-within {
    border-color: rgba(237, 30, 36, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(237, 30, 36, 0.25), 0 0 0 4px rgba(237, 30, 36, 0.1);
}

.hero-search-bar .search-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    margin-right: 12px;
    pointer-events: none;
    line-height: 1;
}

.hero-search-bar input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 500;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 0;
}

.hero-search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.hero-search-bar #clearFrontendSearch {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px;
    display: none;
    margin-right: 4px;
    transition: var(--transition-smooth);
    line-height: 1;
}

.hero-search-bar #clearFrontendSearch:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Countdown Ticker Bar */
.next-event-countdown-bar {
    background: linear-gradient(90deg, #0f1118 0%, #20080b 50%, #0f1118 100%);
    border-bottom: 1px solid rgba(237, 30, 36, 0.15);
    color: white;
    padding: 14px 20px;
    position: relative;
    z-index: 10;
}

.countdown-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: var(--container-width);
    margin: 0 auto;
}

.badge-live-alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(237, 30, 36, 0.12);
    color: #f87171;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(237, 30, 36, 0.35);
    animation: pulseAlert 2.5s infinite;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #eb1c24;
}

.event-title-ticker {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
}

#event-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.time-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 4px 8px;
    min-width: 44px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.time-block span {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fde047;
    display: block;
    line-height: 1.1;
}

.time-block label {
    font-size: 0.62rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    display: block;
    margin-top: 2px;
}

.ticker-btn {
    background: var(--color-primary);
    color: white !important;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(237, 30, 36, 0.3);
}

.ticker-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(237, 30, 36, 0.5);
}

.ticker-btn span.material-symbols-outlined {
    font-size: 1rem;
}

@keyframes pulseAlert {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(237, 30, 36, 0.3); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(237, 30, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(237, 30, 36, 0); }
}

/* ==========================================================================
   📌 STICKY FILTER NAVIGATION BAR
   ========================================================================== */

.events-filter-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    box-shadow: 0 8px 30px -15px rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

.filter-pills-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 6px;
    align-items: center;
}

.filter-pills-scroll::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    color: #475569 !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--transition-smooth);
    white-space: nowrap;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.filter-pill:hover {
    background: white;
    border-color: rgba(237, 30, 36, 0.4);
    color: var(--color-primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, #b91c1c 100%);
    border-color: var(--color-primary);
    color: white !important;
    box-shadow: 0 8px 24px rgba(237, 30, 36, 0.3);
}

/* ==========================================================================
   🎬 MODERN CARD LAYOUT
   ========================================================================== */

.row-section {
    padding: 60px 0 20px;
    scroll-margin-top: 90px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 24px;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.section-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text-title);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -0.5px;
}

.section-title-modern::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 32px;
    background: linear-gradient(180deg, var(--color-primary) 0%, #f87171 100%);
    border-radius: 4px;
}

/* Event Cards Layout */
.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    text-decoration: none !important;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(237, 30, 36, 0.12);
    border-color: rgba(237, 30, 36, 0.25);
}

.event-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111827;
    flex-shrink: 0; /* Crucial to prevent flexbox from collapsing image box in height constraints */
}

.event-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.event-card:hover .event-img-box img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

/* Linear Overlay for better contrast */
.event-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

/* Tags on Image */
.event-type-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 3;
}

.ticket-status-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ticket-status-live {
    background: #10b981; /* Solid premium emerald green */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: glowBadge 2s infinite alternate;
}

.ticket-status-tba {
    background: rgba(100, 116, 139, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes glowBadge {
    0% { box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2); }
    100% { box-shadow: 0 4px 24px rgba(16, 185, 129, 0.7); }
}

/* Glassmorphic date square */
.event-date-sq {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 56px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: var(--transition-smooth);
    z-index: 3;
}

.event-card:hover .event-date-sq {
    background: white;
    transform: scale(1.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.date-month {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-primary);
    line-height: 1;
}

.date-day {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--color-text-title);
    line-height: 1;
    margin-top: 4px;
}

/* Card Content styling */
.event-info {
    padding: 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
    justify-content: space-between;
}

.event-title-modern {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 20px 0;
    color: var(--color-text-title);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.event-card:hover .event-title-modern {
    color: var(--color-primary);
}

.event-meta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-meta-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 600;
}

.event-meta-line .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Card Footer CTA and Pricing */
.event-card-action {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.event-card:hover .event-card-action {
    border-top-color: rgba(237, 30, 36, 0.15);
}

.action-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.event-card:hover .action-text {
    transform: translateX(4px);
}

.price-badge {
    font-size: 0.72rem;
    font-weight: 800;
    background: #fee2e2;
    color: #b91c1c;
    padding: 4px 10px;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.event-card:hover .price-badge {
    background: var(--color-primary);
    color: white;
}

/* ==========================================================================
   🎡 GRID & CAROUSEL UTILITIES
   ========================================================================== */

/* Overriding conflict with main.css to allow event cards to expand height dynamically */
.events-hub .featured-grid,
.events-hub .row-section .featured-grid {
    grid-template-rows: auto !important;
}

/* Featured Grid for Highlights */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Carousel Setup */
.carousel-container {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 15px 0 45px;
    margin-top: -15px;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 0 max(24px, calc((100vw - var(--container-width)) / 2 + 24px));
}

.carousel-item {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

/* ==========================================================================
   🎬 PAST EVENTS (DARK MEMORIES HUB)
   ========================================================================== */

.past-events {
    background: #060911;
    background-image: radial-gradient(circle at top right, rgba(237,30,36,0.08), transparent 50%);
    padding: 85px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.past-events .section-title-modern {
    color: white;
}

.past-events .event-card {
    background: #0f131f !important;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.past-events .event-card:hover {
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.65), 0 5px 20px rgba(237, 30, 36, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.past-events .event-info {
    background: #0f131f !important;
}

.past-events .event-title-modern {
    color: #ffffff !important;
}

.past-events .event-meta-line {
    color: #94a3b8 !important;
}

.past-events .event-img-box {
    filter: grayscale(12%) brightness(0.92);
}

.past-events .event-date-sq {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
}

.past-events .date-day {
    color: white;
}

.past-events .date-month {
    color: #94a3b8;
}

.past-events .event-type-tag {
    background: rgba(0, 0, 0, 0.65);
}

.past-events .event-card-action {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.past-events .event-card:hover .event-card-action {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.past-events .action-text {
    color: #f87171;
}

/* Empty State Styling */
.no-events-box {
    text-align: center;
    padding: 70px 24px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    max-width: 580px;
    margin: 40px auto;
}

.no-events-box span.material-symbols-outlined {
    font-size: 3.5rem;
    color: #94a3b8;
    margin-bottom: 18px;
}

.no-events-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-title);
    margin: 0 0 10px 0;
}

.no-events-box p {
    color: #64748b;
    margin: 0;
    font-size: 0.96rem;
}

/* ==========================================================================
   📱 MOBILE & TABLET ADAPTATION
   ========================================================================== */

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

@media (max-width: 768px) {
    .row-section {
        padding: 40px 0 15px;
    }
    
    .pm-hero-punjabi-glass {
        padding: 60px 16px 70px !important;
    }
    
    .pm-hero-glass-card {
        padding: 40px 24px !important;
        border-radius: 24px !important;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 22px;
    }
    
    .carousel-item {
        flex: 0 0 calc(100vw - 64px);
    }
    
    .carousel-track {
        padding: 0 20px;
        gap: 18px;
    }
    
    .carousel-container {
        padding: 10px 0 30px;
        margin-top: -10px;
    }
    
    .section-header {
        padding: 0 20px;
        margin-bottom: 20px;
    }
    
    .section-title-modern {
        font-size: 1.7rem;
    }
    
    .section-title-modern::before {
        height: 24px;
        width: 5px;
    }
    
    .events-filter-bar {
        padding: 12px 0;
    }
    
    .filter-pill {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   🔥 TRENDING EVENTS SECTION STYLING (Premium Netflix style)
   ========================================================================== */

.trending-events-bg {
    background: linear-gradient(135deg, #0f0c1b 0%, #1a0b12 50%, #0d0b1a 100%) !important;
    border-top: 1px solid rgba(237, 30, 36, 0.15);
    border-bottom: 1px solid rgba(237, 30, 36, 0.15);
    padding: 60px 0;
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 -20px 40px rgba(0, 0, 0, 0.5);
}

.trending-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.trending-event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trending-event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(237, 30, 36, 0.35);
    box-shadow: 0 15px 40px rgba(237, 30, 36, 0.18), 0 0 0 1px rgba(237, 30, 36, 0.2);
}

.trending-rank {
    font-family: 'Montserrat', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    width: 80px;
    text-align: center;
    user-select: none;
    transition: var(--transition-smooth);
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.trending-event-card:hover .trending-rank {
    color: rgba(237, 30, 36, 0.4);
    transform: scale(1.1);
}

.trending-img-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trending-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.trending-event-card:hover .trending-img-wrapper img {
    transform: scale(1.08);
}

.trending-event-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trending-event-type {
    font-size: 0.65rem;
    font-weight: 800;
    color: #fde047;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.trending-event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 10px 0;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.trending-event-card:hover .trending-event-title {
    color: #fde047;
}

.trending-event-meta {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    gap: 6px;
}

.trending-event-meta span.material-symbols-outlined {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .trending-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .trending-rank {
        font-size: 4rem;
        width: 60px;
    }
}
