* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .event-card:hover,
    .category-card:hover,
    .artist-card:hover {
        transform: none;
    }
    
    .event-card:active,
    .category-card:active,
    .artist-card:active {
        transform: translateY(-5px);
    }
    
    .list-event-btn:hover {
        transform: none;
    }
    
    .list-event-btn:active {
        transform: translateY(-2px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.75rem 0;

    
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    width: 160px;
    height: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    
}

.nav-link:hover {
    color: #4A90E2;
    border:1px transparent;
    border-radius:10px;
    
    
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2a2a2a;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: #e0e0e0;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #1e1e1e;
    color: #4A90E2;
    
}

.list-event-btn {
    background: #4A90E2;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.list-event-btn:hover {
    background: #357ABD;
    transform: translateY(-2px);
}

.mobile-only {
    display: none;
}



/* Dark mode styling for sections and cards */
.upcoming-events {
    background-color: #1e1e1e;
}

.event-card {
    background: #2a2a2a;
    border: 1px solid #404040;
}

.event-card h3 {
    color: #ffffff;
}

.event-card p {
    color: #b0b0b0;
}

.statistics {
    background-color: #1e1e1e;
}

.stat-card {
    background: #2a2a2a;
    border: 1px solid #404040;
}

.stat-number {
    color: #4A90E2;
}

.stat-label {
    color: #b0b0b0;
}

.wiki-promotion {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
}

.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #404040;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        order: 1;
    }
    
    .footer-description {
        order: 2;
    }
    
    .social-links {
        order: 3;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-description p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        width: 80px;
        height: 32px;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}



h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    height: 60vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4A90E2;
}

.featured-events {
    padding: 6rem 0;
    background: #1e1e1e;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    color: #4A90E2;
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.event-info {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.event-price {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-price span {
    color: #4A90E2;
    font-weight: 600;
}

.event-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-details i {
    color: #4A90E2;
    width: 16px;
}

.browse-category {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.browse-category .section-title {
    color: white;
}

.browse-category .section-title::after {
    background: white;
}

.category-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-card {
    width: 140px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.category-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}

.category-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    width: 24px;
    height: 24px;
}

.category-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.upcoming-events {
    padding: 6rem 0;
    background: #1e1e1e;
}

.wiki-promotion {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.wiki-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.wiki-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wiki-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.wiki-action {
    flex-shrink: 0;
}

.wiki-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.wiki-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wiki-btn i {
    font-size: 1.2rem;
}

.events-slider {
    position: relative;
    overflow: hidden;
}

.events-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.events-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4A90E2;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.events-nav:hover {
    background: #357ABD;
    transform: translateY(-50%) scale(1.1);
}

.events-nav.prev {
    left: 10px;
}

.events-nav.next {
    right: 10px;
}

.artists {
    padding: 6rem 0;
    background: #1e1e1e;
}

.artists-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.artist-card {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.artist-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
}

.artist-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.artist-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.statistics {
    padding: 6rem 0;
    position: relative;
}

.stats-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('back-view-crowd-fans-watching-live-performance-music-concert-night-copy-space.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.stats-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('back-view-crowd-fans-watching-live-performance-music-concert-night-copy-space.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(1px);
    z-index: -1;
}

.stats-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4A90E2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.delhi-events {
    padding: 6rem 0;
    background: #1e1e1e;
}
.wiki-hero {
    position: relative;
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
    margin-top: 80px;
    overflow: hidden; /* Ensure blur doesn't bleed outside */
    z-index: 0;
}

.wiki-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSM57uVKS0iuy7E_6JpCLqmvuAluusKa-2JsBJG04iVMsfQgC5uTJGigYo&s=10") center/cover no-repeat;
    filter: blur(1px); /* Adjust blur level here */
    z-index: -1;
}
.wiki-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq {
    padding: 6rem 0;
    background: #1e1e1e;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-icon {
    color: #4A90E2;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Copyright Section */
.copyright {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a, #0f0f0f);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Copyright Responsive */
@media (max-width: 768px) {
    .copyright {
        padding: 1.8rem 0;
    }
    
    .copyright p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .copyright {
        padding: 1.5rem 0;
    }
    
    .copyright p {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #4A90E2;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #357ABD;
    transform: translateY(-3px);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .category-card {
        width: 130px;
        height: 75px;
    }
    
    .artists-grid {
        gap: 1.5rem;
    }
    
    .artist-image {
        width: 90px;
        height: 90px;
    }
}

/* Mobile overlay for menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile tablet styles */
@media (max-width: 768px) {
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        border-radius: 15px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-logo img {
        width: 140px;
        height: 70px;
    }
    
    .list-event-btn:not(.mobile-btn) {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .mobile-btn {
        width: 100%;
        margin: 0;
        padding: 0.8rem 1.5rem;
        border-radius: 12px;
        font-size: 0.9rem;
        font-weight: 600;
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        text-transform: none;
        letter-spacing: normal;
        border: none;
        color: white;
    }
    
    .mobile-btn i {
        font-size: 0.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: -100%;
        left: 20px;
        right: 20px;
        margin-top: 90px;
        flex-direction: column;
        background: #1e293b;
        backdrop-filter: blur(20px);
        border: none;
        border-radius: 16px;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
        padding: 0.2rem;
        z-index: 999;
        transform: translateY(-15px);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
    

    
    .nav-item {
        margin: 0;
        transform: translateY(10px);
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: none;
    }
    
    .nav-item:last-child {
        border-bottom: none;
        margin-top: 0.2rem;
    }
    
    .nav-menu.active .nav-item {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        
        
    }
    
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-menu .nav-link {
        padding: 0.75rem 0;
        border-radius: 0;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        font-weight: 500;
        color: #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        margin: 0;
        text-transform: none;
        letter-spacing: normal;
        text-align: left;
    }
    
    .nav-menu .nav-link i {
        font-size: 1rem;
        width: 20px;
        text-align: left;
        flex-shrink: 0;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #60a5fa;
        transform: none;
    }
    
    .nav-menu.active {
        top: 0;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;

    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .wiki-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .wiki-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .wiki-text h2 {
        font-size: 2rem;
    }
    
    .slider-nav {
        display: none;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .category-card {
        width: 120px;
        height: 70px;
    }
    
    .category-card h3 {
        font-size: 0.8rem;
    }
    
    .artists-grid {
        gap: 1rem;
        justify-content: center;
    }
    
    .artist-image {
        width: 80px;
        height: 80px;
    }
    
    .artist-name {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .events-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 0;
    }
    
    .events-nav.prev {
        left: 5px;
    }
    
    .events-nav.next {
        right: 5px;
    }
    
    .events-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .events-track::-webkit-scrollbar {
        display: none;
    }
    
    .events-track .event-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex: 0 0 280px;
    }
    
    .events-slider {
        padding: 0 3rem;
    }
    
    .upcoming-events {
        padding: 4rem 0;
    }
}

/* Large mobile phones */
@media (max-width: 480px) {
    .nav-logo img {
        width: 120px;
        height: 60px;
    }
    
    .nav-menu {
        left: 15px;
        right: 15px;
        margin-top: 75px;
        padding: 0.5rem;
    }
    

    
    .nav-menu {
        top: 65px;
        padding: 0.3rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .wiki-hero .hero-title {
        font-size: 2rem;
    }
    
    .wiki-text h2 {
        font-size: 1.75rem;
    }
    
    .wiki-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-grid {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .category-card {
        width: 140px;
        height: 65px;
    }
    
    .category-card h3 {
        font-size: 0.75rem;
    }
    
    .artists-grid {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .artist-image {
        width: 70px;
        height: 70px;
    }
    
    .artist-name {
        font-size: 0.75rem;
    }
    
    .event-info {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-details p {
        font-size: 0.8rem;
    }
    
.events-track .event-card {
        min-width: 260px;
        flex: 0 0 260px;
    }
    
    .events-slider {
        padding: 0 2.5rem;
    }
    
    .events-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small mobile phones */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        height: 40vh;
        min-height: 320px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .category-card {
        width: 250px;
        height: 55px;
    }
    
    .category-card h3 {
        font-size: 0.7rem;
    }
    
    .artists-grid {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .artist-image {
        width: 60px;
        height: 60px;
    }
    
    .artist-name {
        font-size: 0.7rem;
    }
    
    .event-info {
        padding: 0.8rem;
    }
    
    .event-title {
        font-size: 1rem;
    }
    
    .event-details p {
        font-size: 0.75rem;
    }
    
.events-track .event-card {
        min-width: 240px;
        flex: 0 0 240px;
    }
    
    .events-slider {
        padding: 0 2rem;
    }
    
    .events-nav {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .artists-grid {
        gap: 1rem;
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Extra large screens */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Active nav link styling */
.nav-link.active {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
}

/* Search Section */
.search-section {
    padding: 3rem 0 2rem;
    background: #0a0a0a;
    margin-top: 100px;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #4A90E2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.search-icon {
    color: #888;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    padding: 1rem 0;
    outline: none;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.search-btn:hover {
    background: linear-gradient(135deg, #357ABD, #2563EB);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

/* Enhanced Category Cards */
.categories {
    padding: 3rem 0;
    margin-top: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #4A90E2;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

.category-card:hover::before {
    opacity: 1;
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

.category-icon {
    font-size: 1.8rem;
    color: white;
}

.category-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.category-card.active {
    border-color: #4A90E2;
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-5px);
}

.category-card.active::before {
    opacity: 1;
}

/* Responsive Search and Categories */
@media (max-width: 768px) {
    .search-section {
        padding: 2rem 0 1.5rem;
        margin-top: 90px;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .search-box {
        padding: 0.4rem 0.8rem;
    }
    
    .search-input {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .categories {
        padding: 2rem 0;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .category-icon {
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding: 1.5rem 0 1rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .category-card {
        padding: 1.2rem 0.8rem;
    }
    
    .category-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .category-icon {
        font-size: 1.3rem;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}