 /* FIX HORIZONTAL SCROLL ISSUE - ADDED FROM INDEX.HTML */
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }
        
        /* DARK THEME VARIABLES - COMPLETE SET FROM INDEX.HTML */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #e74c3c;    --primary-dark: #c0392b;
            --secondary: #3498db;  --accent: #f1c40f;
            --dark: #121212;       --darker: #0a0a0a;
            --card-dark: #1e1e1e;  --card-darker: #171717;
            --text: #ffffff;       --text-muted: #aaaaaa;
            --border: #333333;     --hover: #2c2c2c;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--dark);
            overflow-x: hidden;
            position: relative;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* COMIC TEXT STYLES - FROM INDEX.HTML */
        h1, h2, h3, h4 {
            font-family: 'Bangers', cursive;
            letter-spacing: 2px;
            line-height: 1.2;
            text-transform: uppercase;
        }
        h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 0 var(--primary),
                        6px 6px 0 rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '!';
            color: var(--primary);
            animation: blink 1s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        /* BUTTONS - COMIC STYLE FROM INDEX.HTML */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }
        .btn:hover::before {
            left: 100%;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--text);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4),
                        inset 0 1px 0 rgba(255,255,255,0.2);
        }
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6),
                        inset 0 1px 0 rgba(255,255,255,0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.2);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: var(--text);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .btn-large {
            padding: 18px 36px;
            font-size: 1.1rem;
        }
        .btn-small {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
        .btn-discord {
            background: linear-gradient(135deg, #5865F2, #4752C4);
            color: var(--text);
            font-weight: 700 !important;
        }
        .btn-discord:hover {
            background: linear-gradient(135deg, #4752C4, #3C45A5);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
        }
        
        /* UPDATED NAVIGATION - EXACTLY MATCHING INDEX.HTML */
        .navbar {
            background: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
        
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            min-height: 70px;
            gap: 20px;
        }
        
        /* UPDATED LOGO - EXACTLY MATCHING INDEX.HTML */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            transition: transform 0.3s ease;
            margin-right: 20px;
            flex-shrink: 0;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .logo-icon {
            width: 90px;
            height: 90px;
            background-image: url('https://res.cloudinary.com/dq4gl4bmg/image/upload/v1765482796/Firefly_Gemini_Flash_Can_you_remove_the_background_and_just_leave_the_explosion_and_LCS-_Easy_to_upload_ri_564460_2_pdi4gf.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.5));
            animation: pulse 2s infinite;
            margin-right: 15px;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .logo-text {
            font-family: 'Bangers', cursive;
            font-size: 1.8rem;
            letter-spacing: 3px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }
        
        /* UPDATED NAVIGATION LINKS - EXACTLY MATCHING INDEX.HTML */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: nowrap;
            flex: 1;
            justify-content: flex-start;
            margin-left: 20px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding-bottom: 2px;
        }
        
        .nav-links::-webkit-scrollbar {
            display: none;
        }
        
        .nav-link {
            color: var(--text);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            position: relative;
            padding: 8px 0;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .nav-link i {
            color: var(--primary);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text);
            cursor: pointer;
            margin-left: 15px;
        }
        
        /* PAGE HEADER - KEEPING YOUR STYLES */
        .page-header {
            margin-top: 70px; /* Fixed to account for navbar height */
            padding: 60px 0;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(52, 152, 219, 0.1));
            text-align: center;
            border-bottom: 3px solid var(--primary);
            position: relative;
            overflow: hidden;
        }
        .page-header::before {
            content: 'EVENTS!';
            position: absolute;
            font-family: 'Bangers', cursive;
            font-size: 15rem;
            color: rgba(231, 76, 60, 0.03);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
            pointer-events: none;
        }
        .page-header h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .page-header p {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* EVENTS CONTROLS - KEEPING YOUR STYLES */
        .loading {
            text-align: center;
            padding: 60px 0;
        }
        .loading-spinner {
            border: 5px solid var(--card-dark);
            border-top: 5px solid var(--primary);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .events-controls {
            background: var(--card-dark);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px solid var(--border);
            position: relative;
            z-index: 1;
        }
        .controls-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 20px;
        }
        .view-toggle {
            display: flex;
            gap: 10px;
        }
        .view-btn {
            padding: 8px 20px;
            background: var(--darker);
            border: 2px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .view-btn:hover,
        .view-btn.active {
            background: var(--primary);
            border-color: var(--primary);
        }
        .filters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }
        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .filter-group label {
            color: var(--text);
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .filter-select {
            padding: 10px 15px;
            background: var(--darker);
            border: 2px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 0.95rem;
            cursor: pointer;
        }
        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
        }
        .controls-actions {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .events-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .event-stat {
            background: var(--card-dark);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .event-stat:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }
        .event-stat h3 {
            font-size: 2.5rem;
            margin: 0;
            color: var(--primary);
        }
        .event-stat p {
            margin: 10px 0 0;
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .event-card {
            background: var(--card-dark);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid var(--border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .event-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2),
                        0 0 0 1px rgba(231, 76, 60, 0.1);
        }
        .event-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--primary);
            color: var(--text);
            padding: 10px 15px;
            border-radius: 8px;
            z-index: 2;
            text-align: center;
            min-width: 70px;
        }
        .event-date .day {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1;
            font-family: 'Bangers', cursive;
        }
        .event-date .month {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        .event-img {
            height: 200px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        .event-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, var(--card-dark) 90%);
            z-index: 1;
        }
        .event-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .event-card:hover .event-img img {
            transform: scale(1.1);
        }
        .event-content {
            padding: 20px;
            position: relative;
            z-index: 2;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .event-category {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(52, 152, 219, 0.1);
            color: var(--secondary);
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .event-content h3 {
            color: var(--text);
            margin-bottom: 12px;
            font-size: 1.6rem;
            line-height: 1.3;
        }
        .event-location {
            color: var(--text-muted);
            margin-bottom: 12px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .event-location i {
            color: var(--primary);
        }
        .event-description {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: 0.9rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 67.5px;
            flex-grow: 1;
        }
        .event-details {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }
        .event-time-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .event-time {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .event-price {
            color: var(--primary);
            font-weight: 600;
            font-size: 1rem;
            background: rgba(231, 76, 60, 0.1);
            padding: 5px 12px;
            border-radius: 20px;
            white-space: nowrap;
        }
        .event-actions {
            display: flex;
            gap: 10px;
            width: 100%;
        }
        .event-actions .btn {
            flex: 1;
            min-width: 0;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 12px 16px;
            font-size: 0.9rem;
        }
        
        .events-list {
            display: none;
            flex-direction: column;
            gap: 20px;
            margin: 40px 0;
        }
        .event-list-item {
            background: var(--card-dark);
            border-radius: 15px;
            padding: 25px;
            border: 2px solid var(--border);
            transition: all 0.3s;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 25px;
            align-items: center;
        }
        .event-list-item:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
        }
        .list-date {
            background: var(--primary);
            color: var(--text);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            min-width: 90px;
        }
        .list-date .day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
            font-family: 'Bangers', cursive;
        }
        .list-date .month {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        .list-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex: 1;
        }
        .list-content h3 {
            color: var(--text);
            margin: 0;
            font-size: 1.5rem;
        }
        .list-content .event-location {
            margin: 0;
        }
        .list-details {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .list-time-price {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .list-actions {
            display: flex;
            gap: 10px;
            min-width: 200px;
        }
        .list-actions .btn {
            flex: 1;
            min-width: 0;
            text-align: center;
            white-space: nowrap;
            padding: 12px 16px;
            font-size: 0.9rem;
        }
        
        .featured-events {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(52, 152, 219, 0.05));
            padding: 60px 0;
            margin: 60px 0;
            border-top: 3px solid var(--primary);
            border-bottom: 3px solid var(--primary);
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: var(--text);
        }
        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .upcoming-events {
            margin: 60px 0;
        }
        
        .no-results {
            text-align: center;
            padding: 60px 20px;
            background: var(--card-dark);
            border-radius: 15px;
            border: 2px dashed var(--border);
            margin: 40px 0;
        }
        .no-results i {
            font-size: 4rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        .no-results h3 {
            color: var(--text);
            margin-bottom: 15px;
        }
        .no-results p {
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto 25px;
        }
        
        .results-info {
            text-align: center;
            color: var(--text-muted);
            margin: 20px 0;
            font-size: 1.1rem;
        }
        .results-info span {
            color: var(--primary);
            font-weight: 700;
        }
        
        .event-type-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .type-filter-btn {
            padding: 8px 20px;
            background: var(--darker);
            border: 2px solid var(--border);
            border-radius: 50px;
            color: var(--text);
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .type-filter-btn:hover,
        .type-filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        
        /* UPDATED FOOTER - EXACTLY MATCHING INDEX.HTML */
        .footer {
            background: var(--darker);
            color: var(--text);
            padding: 80px 0 30px;
            border-top: 1px solid var(--border);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-col h4 {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            display: inline-block;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }
        .footer-col p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: var(--text-muted);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .footer-col ul li a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        .social {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        .social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--card-dark);
            border-radius: 50%;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        .social a:hover {
            background: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-bottom p {
            margin-bottom: 10px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--primary-dark);
        }
        
        /* RESPONSIVE DESIGN - UPDATED TO MATCH INDEX.HTML */
        @media (max-width: 1200px) {
            .page-header h1 {
                font-size: 3.5rem;
            }
            .page-header::before {
                font-size: 10rem;
            }
        }
        
        @media (max-width: 992px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            
            /* UPDATED NAVIGATION FOR TABLET - MATCHING INDEX.HTML */
            .navbar .container {
                padding: 5px 15px;
            }
            
            .logo-icon {
                width: 70px;
                height: 70px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .nav-link {
                font-size: 0.9rem;
            }
            
            /* MOBILE NAVIGATION - EXACTLY MATCHING INDEX.HTML */
            .nav-links {
                display: none;
                position: fixed;
                top: 70px; /* Fixed height to match navbar */
                left: 0;
                right: 0;
                background: var(--card-darker);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-top: 2px solid var(--primary);
                box-shadow: 0 10px 30px rgba(0,0,0,0.5);
                backdrop-filter: blur(10px);
                z-index: 999;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            
            .nav-links.show {
                display: flex;
            }
            
            .nav-link {
                padding: 12px 0;
                font-size: 1rem;
                justify-content: center;
            }
            
            .menu-toggle {
                display: block;
                margin-left: auto;
            }
            
            .page-header {
                margin-top: 70px;
                padding: 40px 0;
            }
            .page-header h1 {
                font-size: 3rem;
            }
            .controls-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .filters-grid {
                grid-template-columns: 1fr;
            }
            .events-grid {
                grid-template-columns: 1fr;
            }
            .event-list-item {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .list-actions {
                min-width: auto;
                justify-content: flex-start;
            }
            .event-time-price {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                margin-top: 70px; /* Fixed for mobile */
                padding: 30px 0;
            }
            .page-header h1 {
                font-size: 2.5rem;
            }
            .page-header p {
                font-size: 1.1rem;
            }
            .events-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .event-actions {
                flex-direction: column;
            }
            .list-actions {
                flex-direction: column;
            }
            .type-filter-btn {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
            .list-details {
                flex-direction: column;
                gap: 10px;
            }
            
            /* MOBILE NAVIGATION ADJUSTMENTS - MATCHING INDEX.HTML */
            .navbar .container {
                padding: 5px 10px;
                min-height: 60px;
            }
            
            .logo-icon {
                width: 60px;
                height: 60px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            .nav-links {
                top: 60px; /* Fixed for smaller mobile navbar */
                max-height: calc(100vh - 60px);
            }
            
            /* Adjust page header for mobile navbar */
            .page-header {
                margin-top: 60px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 2rem;
            }
            .events-stats {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social {
                justify-content: center;
            }
            .event-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .event-actions .btn,
            .list-actions .btn {
                width: 100%;
            }
        }
        
        @media (min-width: 577px) and (max-width: 768px) {
            .event-actions {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
        }
        
        /* SCROLLBAR STYLING - FROM INDEX.HTML */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--darker);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }