/* Global Styles */
        body {
            background-color: #0A0611;
            color: #E0E0E0;
            font-family: BlinkMacSystemFont, Segoe UI, sans-serif;
            text-align: center;
            padding: 50px 20px;
            margin: 0;
            line-height: 1.6;
        }
        
        h1 {
            color: #FF4C4C;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        p {
            font-size: 16px;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 20px;
        }
        
        .reason {
            color: #FF4C4C;
            font-weight: 500;
            font-size: 18px;
            margin-top: 30px;
            border-top: 1px solid #FF4C4C;
            padding-top: 15px;
            display: inline-block;
        }
        
        /* Return Home Button */
        .home-button {
            font-size: 20px;
            color: #FF4C4C;
            text-decoration: none;
            background-color: #16122B;
            padding: 8px 16px;
            border-radius: 8px;
            margin: 10px 0 30px 0;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .home-button:hover {
            background-color: #FF4C4C;
            color: #0A0611;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 76, 76, 0.3);
        }
        
        /* Macro List Container */
        .macro-container {
            max-width: 800px;
            margin: 40px auto;
            display: grid;
            gap: 30px;
        }
        
        /* Section Headers */
        .section-header {
            color: #FF4C4C;
            font-size: 24px;
            font-weight: 600;
            text-align: center;
            margin-bottom: -10px;
        }
        
        .section-subheader {
            color: #B0B0B0;
            font-size: 16px;
            font-weight: 400;
            text-align: center;
        }
        
        /* MO Macros Section */
        .mo-macros {
            background: linear-gradient(135deg, #16122B, #1A1635);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border: 1px solid #2A2550;
        }
        
        .mo-macros h3 {
            color: #5EA8FF;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .macro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .macro-item {
            background: #0F0B1A;
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #2A2550;
            transition: all 0.3s ease;
        }
        
        .macro-item:hover {
            border-color: #5EA8FF;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(94, 168, 255, 0.2);
        }
        
        .macro-item a {
            color: #5EA8FF;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }
        
        .macro-item a:hover {
            color: #FF4C4C;
        }
        
        /* Active Projects Section */
        .active-projects {
            background: linear-gradient(135deg, #1A2B16, #1E3518);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            border: 1px solid #2A5020;
        }
        
        .active-projects h3 {
            color: #4CAF50;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .github-link {
            color: #4CAF50;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .github-link:hover {
            color: #66BB6A;
        }
        
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .project-item {
            background: #0F1A0F;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #2A5020;
            transition: all 0.3s ease;
        }
        
        .project-item:hover {
            border-color: #4CAF50;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
        }
        
        .project-item a {
            color: #4CAF50;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }
        
        .project-item a:hover {
            color: #66BB6A;
        }
        
        .project-description {
            color: #B0B0B0;
            font-size: 14px;
            margin-top: 8px;
            text-align: left;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .macro-grid {
                grid-template-columns: 1fr;
            }
            
            .project-grid {
                grid-template-columns: 1fr;
            }
            
            .mo-macros, .active-projects {
                padding: 20px;
            }
        }