  /* FIX HORIZONTAL SCROLL ISSUE - ADDED FROM INDEX.HTML */
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }
        
        /* DARK THEME VARIABLES - EXACTLY MATCHING EVENTS.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 EVENTS.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 EVENTS.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 EVENTS.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 - UPDATED TO MATCH EVENTS.HTML */
        .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: 'GUIDES!';
            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;
        }
        
        /* GUIDES GRID - UPDATED STYLING */
        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 60px 0;
        }
        .guide-card {
            background: var(--card-dark);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid var(--border);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        .guide-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
        }
        .guide-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }
        .guide-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            height: 90px;
            width: 90px;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        .guide-card h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--text);
            font-family: 'Bangers', cursive;
            letter-spacing: 1px;
        }
        .guide-card p {
            color: var(--text-muted);
            margin-bottom: 25px;
            line-height: 1.6;
        }
        
        /* GUIDE CONTENT - UPDATED STYLING */
        .guide-content {
            padding: 40px 0 80px;
        }
        .guide-article {
            background: var(--card-dark);
            border-radius: 15px;
            padding: 50px;
            margin-bottom: 60px;
            border: 2px solid var(--border);
            transition: all 0.3s;
        }
        .guide-article:hover {
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
        }
        .guide-article h2 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 2.5rem;
        }
        .guide-article h3 {
            color: var(--text);
            margin: 30px 0 15px;
            font-size: 1.8rem;
            font-family: 'Bangers', cursive;
            letter-spacing: 1px;
        }
        .guide-article p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .guide-article ul, .guide-article ol {
            color: var(--text-muted);
            margin: 20px 0 20px 30px;
            line-height: 1.8;
        }
        .guide-article li {
            margin-bottom: 10px;
        }
        .guide-article strong {
            color: var(--text);
        }
        .guide-article a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }
        .guide-article a:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .tip-box {
            background: rgba(52, 152, 219, 0.1);
            border-left: 4px solid var(--secondary);
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            color: var(--text);
        }
        .warning-box {
            background: rgba(231, 76, 60, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            color: var(--text);
        }
        .success-box {
            background: rgba(46, 204, 113, 0.1);
            border-left: 4px solid #2ecc71;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            color: var(--text);
        }
        
        /* UPDATED FOOTER - EXACTLY MATCHING EVENTS.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 EVENTS.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 */
            .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 EVENTS.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;
            }
            .guides-grid {
                grid-template-columns: 1fr;
            }
            .guide-article {
                padding: 30px;
            }
        }
        
        @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;
            }
            .guide-article {
                padding: 25px;
            }
            
            /* MOBILE NAVIGATION ADJUSTMENTS */
            .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;
            }
            .page-header {
                padding: 30px 0;
            }
            .guide-card {
                padding: 30px 20px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social {
                justify-content: center;
            }
        }
        
        /* SCROLLBAR STYLING - FROM EVENTS.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);
        }