   :root {
            --primary: #4CAF50;
            --secondary: #2196F3;
            --accent: #FF9800;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gradient: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            --gradient-vibrant: linear-gradient(135deg, #ff00cc, #3333ff,yellow, #00ccff);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Social */
        #ling { text-decoration: none !important;}
        /* Hero Banner */
        .events-hero {
            background: var(--gradient-vibrant);
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 70px;
        }
        
        .events-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .events-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }
        
        /* Event Filters */
        .event-filters {
            background-color: white;
            padding: 20px 0;
            position: flex;
            top: 40px;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .filter-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .filter-group {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 30px;
            padding: 6px 12px;
        }
        
        .filter-group i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .filter-group select {
            border: none;
            background: transparent;
            font-weight: 600;
            padding: 5px;
            outline: none;
        }
        
        .view-toggle {
            display: flex;
            background: #f8f9fa;
            border-radius: 30px;
            overflow: hidden;
        }
        
        .view-toggle button {
            border: none;
            background: transparent;
            padding: 8px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-toggle button.active {
            background: var(--gradient);
            color: white;
        }
        
        /* Events Grid/List View */
        .events-container {
            background-color: white;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .events-list {
            display: none;
            flex-direction: column;
            gap: 20px;
        }
        
        .events-list.active,
        .events-grid.active {
            display: grid;
        }
        
        .events-list.active {
            display: flex;
        }
        
        /* Event Card - Grid View */
        .event-card {
            background: wheat;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        #special{ color: palevioletred;}
        .event-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .event-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 5px 15px;
            background-color: var(--primary);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .event-badge.live {
            background-color: #f44336;
        }
        
        .event-badge.upcoming {
            background-color: var(--accent);
        }
        
        .event-badge.free {
            background-color: var(--primary);
        }
        
        .event-content {
            padding: 25px;
        }
        
        .event-date {
            display: flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .event-date i {
            margin-right: 8px;
        }
        
        .event-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .event-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .event-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: #666;
        }
        
        .event-meta span {
            display: flex;
            align-items: center;
        }
        
        .event-meta i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        /* Event Card - List View */
        .event-card-list {
            display: flex;
            background: lightcyan;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .event-card-list:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .event-image-list {
            width: 250px;
            min-height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .event-content-list {
            padding: 25px;
            flex-grow: 1;
            color: #00ccff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .event-meta-list {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .event-meta-list span {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .event-meta-list i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        /* Featured Event */
        .featured-event {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 50px;
        }
        
        .featured-content {
            padding: 60px;
            max-width: 600px;
        }
        
        .featured-badge {
            display: inline-block;
            padding: 5px 15px;
            background-color: var(--accent);
            color: white;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .featured-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .featured-content p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .featured-meta {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .featured-meta div {
            display: flex;
            align-items: center;
        }
        
        .featured-meta i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        /* Calendar Section */
        .calendar-section {
            background-color: lawngreen;
        }
        
        .calendar-container {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
        }
        
        .mini-calendar {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .calendar-header h3 {
            margin: 0;
            font-size: 1.2rem;
        }
        
        .calendar-nav button {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: #666;
        }
        
        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 10px;
            color: #666;
        }
        
        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .calendar-day:hover {
            background: #f0f0f0;
        }
        
        .calendar-day.event {
            background: rgba(76, 175, 80, 0.1);
            color: var(--primary);
            font-weight: 600;
        }
        
        .calendar-day.today {
            background: var(--primary);
            color: white;
        }
        
        .calendar-day.other-month {
            color: #ccc;
        }
        
        .calendar-events {
            flex-grow: 1;
        }
        
        /* Past Events */
        .past-events {
            background-color: white;
        }
        
        .past-event-card {
            display: flex;
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .past-event-date {
            min-width: 80px;
            text-align: center;
            margin-right: 20px;
        }
        
        .past-event-date .month {
            font-size: 0.9rem;
            color: #666;
        }
        
        .past-event-date .day {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .past-event-content h3 {
            color: darkorange;
            margin-bottom: 10px;
        }
        
        .past-event-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .watch-now {
            display: inline-flex;
            align-items: center;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
        }
        .watch-now:hover {
  background-color: #00f0ff;
  color: pink;
  box-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  text-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff;
  transform: scale(1.05);}
        .watch-now i {
            margin-right: 8px;
           
        }
        
        /* CTA Section */
        .events-cta {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1540932239986-30128078f3c5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .events-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .events-cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* Footer (same as other pages) */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #eee;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .newsletter input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 30px;
            margin-bottom: 10px;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .newsletter input::placeholder {
            color: #ccc;
        }
        
        .newsletter button {
            width: 100%;
            border: none;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .partners {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .partner-logo {
            height: 40px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .partner-logo:hover {
            opacity: 1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .event-container{width: 80%; margin: auto; margin-top: 1px;}
        /* Mobile Styles */
        @media (max-width: 1024px) {
            .calendar-container {
                grid-template-columns: 1fr;
            }
            
            .event-image-list {
                width: 150px;
            }
        }
                      /* Mobile Styles */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
          
        }
        @media (max-width: 480px) {
  .featured-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
    padding: 0 10px;
    text-align: center;
  }
  .events-container,
  .featured-event{width: 100%;}
}
        @media (max-width: 768px) {
         
            .events-hero {
                padding: 150px 0 80px;
                margin-top: 60px;
            }
            
            .events-hero h1 {
                font-size: 2.5rem;
            }
            
            .filter-container {
                flex-direction: row;
                align-items: stretch;
            }
            
            .filter-group, 
            .view-toggle {
               
                width: auto;
            }
            .event-meta-list{
                font-size: 4px;
            }
            .event-card-list {
                flex-direction: column;
            }
            
            .event-image-list {
                width: 100%;
                height: 150px;
            }
            
            .featured-content {
                padding: 40px 20px;
            }
            
            .featured-content h2 {
                font-size: 2rem;
            }
        }
         .social-links a{
        text-decoration: none;
    }