:root {
    --bg: #F5F7FA;
    --card-bg: #FFFFFF;
    --border: rgba(0, 0, 0, 0.04);
    --text: #111827;
    --text-muted: #6b7280;
    --text-dim: #9ca3af;
    
    /* Soft Colors */
    --concerts: #ec4899;
    --concerts-glow: rgba(236, 72, 153, 0.15);
    --movies: #3b82f6; 
    --movies-glow: rgba(59, 130, 246, 0.15);
    --sports: #f59e0b; 
    --sports-glow: rgba(245, 158, 11, 0.15);
    --clubs: #8b5cf6; 
    --clubs-glow: rgba(139, 92, 246, 0.15);
    --fests: #10b981; 
    --fests-glow: rgba(16, 185, 129, 0.15);
    --house-parties: #f43f5e;
    --house-parties-glow: rgba(244, 63, 94, 0.15);
    
    --font: 'Red Hat Display', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    position: relative;
}

/* Clean Theme - No Globs */

/* Header */
.header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: var(--bg);
}

.back-btn, .icon-btn {
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border-radius: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover, .icon-btn:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.header h1 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Main */
.main {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    line-height: 1.1;
}

.word {
    display: inline-block;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }

.word.accent {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Entertainment Cards - ALWAYS VISIBLE, NO DISAPPEAR ON SCROLL */
.ent-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    animation: cardFadeIn 0.6s ease forwards;
}

.ent-card:nth-child(1) { animation-delay: 0.2s; }
.ent-card:nth-child(2) { animation-delay: 0.3s; }
.ent-card:nth-child(3) { animation-delay: 0.4s; }
.ent-card:nth-child(4) { animation-delay: 0.5s; }
.ent-card:nth-child(5) { animation-delay: 0.6s; }

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ent-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Card Glow Effects */
.card-glow {
    display: none; /* remove glow logic to match clean UI */
}

/* Card Content - Stunning Sexy Glassmorphism */
.card-content {
    background: transparent;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08); /* deeper punchier shadow */
    position: relative;
    overflow: hidden;
    height: 240px; /* Nice tall cards */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(0); /* Force GPU acceleration */
}

/* Base Image - Full Bleed Background */
.card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ent-card:hover .card-image img {
    transform: scale(1.08);
}

/* Gradient Overlay - To make the glass panel pop */
.image-overlay {
    display: block !important;
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, transparent 100%);
    z-index: 1;
}

/* Card Info - Floating Frost Glass Panel */
.card-info {
    position: relative;
    z-index: 2;
    margin: 12px; /* Floating look */
    padding: 12px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.85); /* Frost glass */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #fff;
}

.card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.concerts-card .card-icon {
    background: linear-gradient(135deg, var(--concerts), #ff4d9e);
    box-shadow: 0 8px 30px var(--concerts-glow);
}

.movies-card .card-icon {
    background: linear-gradient(135deg, var(--movies), #4de8ff);
    box-shadow: 0 8px 30px var(--movies-glow);
}

.sports-card .card-icon {
    background: linear-gradient(135deg, var(--sports), #ffcc4d);
    box-shadow: 0 8px 30px var(--sports-glow);
}

.clubs-card .card-icon {
    background: linear-gradient(135deg, var(--clubs), #e44dff);
    box-shadow: 0 8px 30px var(--clubs-glow);
}

.fests-card .card-icon {
    background: linear-gradient(135deg, var(--fests), #ec4899);
    box-shadow: 0 8px 30px var(--fests-glow);
}

.house-parties-card .card-icon {
    background: linear-gradient(135deg, var(--house-parties), #ff4d9e);
    box-shadow: 0 8px 30px var(--house-parties-glow);
}

.card-text {
    flex: 1;
}

.card-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.card-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
}



.ent-card:hover .card-arrow {
    background: var(--text);
    color: #fff;
    transform: translateX(4px);
}

/* Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 10;
}

.ent-card:hover .card-shine {
    left: 150%;
}

/* Featured Section */
.featured-section {
    margin-top: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, var(--movies), var(--concerts));
    border-radius: 2px;
}

.featured-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.featured-scroll::-webkit-scrollbar {
    display: none;
}

.featured-card {
    flex: 0 0 300px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    animation: featuredFadeIn 0.6s ease forwards;
}

.featured-card:nth-child(1) { animation-delay: 0.6s; }
.featured-card:nth-child(2) { animation-delay: 0.7s; }
.featured-card:nth-child(3) { animation-delay: 0.8s; }
.featured-card:nth-child(4) { animation-delay: 0.9s; }

@keyframes featuredFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.featured-image {
    height: 160px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-info {
    padding: 1.25rem;
}

.featured-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.concerts-tag {
    background: rgba(255, 0, 110, 0.15);
    color: var(--concerts);
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.movies-tag {
    background: rgba(0, 212, 255, 0.15);
    color: var(--movies);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.sports-tag {
    background: rgba(255, 170, 0, 0.15);
    color: var(--sports);
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.clubs-tag {
    background: rgba(189, 0, 255, 0.15);
    color: var(--clubs);
    border: 1px solid rgba(189, 0, 255, 0.3);
}

.fests-tag {
    background: rgba(139, 92, 246, 0.15);
    color: var(--fests);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.featured-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.featured-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-info p i {
    color: var(--movies);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .main {
        padding: 1.5rem 1rem;
    }
    
    .title {
        font-size: 2rem;
        gap: 0.5rem;
    }
    
    .subtitle {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .card-content {
        height: 220px; /* Tall cards on mobile */
        padding: 0;
        gap: 0;
        border-radius: 32px;
    }
    
    .card-image {
        height: 100%;
        border-radius: 0;
    }
    
    .card-info {
        padding: 10px 14px;
        margin: 10px;
        border-radius: 18px;
        gap: 0.75rem;
    }
    
    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .card-text h3 {
        font-size: 1.05rem;
        margin-bottom: 2px;
    }
    
    .card-text p {
        font-size: 0.8rem;
    }
    
    .card-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .ambient-glow {
        filter: blur(100px);
        opacity: 0.1;
    }
    
    .concerts-glow { width: 250px; height: 250px; }
    .movies-glow { width: 200px; height: 200px; }
    .sports-glow { width: 220px; height: 220px; }
    .clubs-glow { width: 280px; height: 280px; }
    .fests-glow { width: 250px; height: 250px; }
    
    .featured-card {
        flex: 0 0 260px;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .title {
        font-size: 1.75rem;
    }
    
    .card-content {
        height: 200px;
    }
    
    .card-image {
        height: 100%;
    }
}