 :root {
            --color-bg: #0a0f0d;
            --color-bg-alt: #111a16;
            --color-bg-card: #162019;
            --color-text: #e8efe9;
            --color-text-muted: #9aab9e;
            --color-text-subtle: #6b7c6f;
            --color-primary: #2ecc71;
            --color-primary-dark: #27ae60;
            --color-primary-glow: rgba(46, 204, 113, 0.15);
            --color-accent: #f1c40f;
            --color-accent-dark: #d4a50c;
            --color-accent-glow: rgba(241, 196, 15, 0.12);
            --color-border: #243d2e;
            --color-border-light: #2d4a38;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 30px var(--color-primary-glow);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-serif: Georgia, 'Times New Roman', serif;
            --transition-fast: 0.15s ease;
            --transition-base: 0.25s ease;
            --transition-slow: 0.4s ease;
            --content-width: min(72ch, 90vw);
            --content-width-wide: min(90ch, 95vw);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 100%;
        }

        body {
            font-family: var(--font-sans);
            font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        ::selection {
            background: var(--color-primary);
            color: var(--color-bg);
        }

        :focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 3px;
        }

        a {
            color: var(--color-primary);
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover {
            color: var(--color-accent);
        }

        header {
            position: relative; /* Changed from sticky to relative */
            /* top: 0; - Removed */
            z-index: 1; /* Lower z-index so it doesn't cover the menu */
            background: linear-gradient(to bottom, var(--color-bg) 0%, var(--color-bg) 70%, transparent 100%);
            padding: 1rem 0 2rem;
        }

        main {
            flex: 1;
            width: var(--content-width);
            margin: 0 auto;
            padding: 0 1rem 4rem;
        }

        main h1 {
            font-family: var(--font-sans);
            font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
            color: var(--color-text);
            margin-bottom: 1.5rem;
            text-wrap: balance;
        }

        main h1::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            border-radius: 2px;
            margin-top: 1rem;
        }

        main h2 {
            font-family: var(--font-sans);
            font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
            font-weight: 700;
            line-height: 1.25;
            color: var(--color-text);
            margin: 3rem 0 1.25rem;
            padding-left: 1rem;
            border-left: 4px solid var(--color-primary);
            position: relative;
        }

        main h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
            border-radius: 2px;
        }

        main h3 {
            font-family: var(--font-sans);
            font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
            font-weight: 600;
            line-height: 1.35;
            color: var(--color-text);
            margin: 2.5rem 0 1rem;
        }

        main h3::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--color-accent);
            border-radius: 50%;
            margin-right: 0.75rem;
            vertical-align: middle;
        }

        main p {
            margin-bottom: 1.25rem;
            color: var(--color-text);
        }

        main strong {
            font-weight: 600;
            color: var(--color-text);
            background: linear-gradient(to bottom, transparent 60%, var(--color-primary-glow) 60%);
            padding: 0 0.15em;
        }

        main em {
            font-style: italic;
            color: var(--color-text-muted);
        }

        main ul, main ol {
            margin: 1.5rem 0;
            padding-left: 0;
            list-style: none;
        }

        main ul li, main ol li {
            position: relative;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            margin-bottom: 0.5rem;
            background: var(--color-bg-card);
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        }

        main ul li:hover, main ol li:hover {
            transform: translateX(4px);
            box-shadow: var(--shadow-sm);
        }

        main ul li::before {
            content: '';
            position: absolute;
            left: 1rem;
            top: 1.1rem;
            width: 8px;
            height: 8px;
            background: var(--color-primary);
            border-radius: 2px;
            transform: rotate(45deg);
        }

        main ol {
            counter-reset: list-counter;
        }

        main ol li {
            counter-increment: list-counter;
        }

        main ol li::before {
            content: counter(list-counter);
            position: absolute;
            left: 0.75rem;
            top: 0.65rem;
            width: 1.5rem;
            height: 1.5rem;
            background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
            color: var(--color-bg);
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        main blockquote {
            position: relative;
            margin: 2rem 0;
            padding: 1.5rem 1.5rem 1.5rem 2rem;
            background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-alt));
            border-radius: var(--radius-md);
            border-left: 4px solid var(--color-accent);
            font-style: italic;
            color: var(--color-text-muted);
            box-shadow: var(--shadow-sm);
        }

        main blockquote::before {
            content: '"';
            position: absolute;
            top: -0.5rem;
            left: 1rem;
            font-size: 4rem;
            font-family: var(--font-serif);
            color: var(--color-accent);
            opacity: 0.3;
            line-height: 1;
        }

        main blockquote p {
            margin-bottom: 0;
        }

        main figure {
            margin: 2.5rem 0;
            width: 100%;
        }

        main figure img,
        main .hero-image,
        main .article-image {
            width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }

        main figure img:hover,
        main .article-image:hover {
            transform: scale(1.01);
            box-shadow: var(--shadow-lg);
        }

        main .hero-image {
            width: calc(100% + 2rem);
            margin: 0 -1rem 2rem;
            border-radius: var(--radius-lg);
            max-height: 450px;
            object-fit: cover;
        }

        main figcaption {
            margin-top: 0.75rem;
            font-size: 0.875rem;
            color: var(--color-text-subtle);
            text-align: center;
            font-style: italic;
        }

        main a {
            position: relative;
            font-weight: 500;
        }

        main a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform var(--transition-base);
        }

        main a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        main table {
            width: 100%;
            margin: 2rem 0;
            border-collapse: collapse;
            background: var(--color-bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        main thead {
            background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
            color: var(--color-bg);
        }

        main th, main td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--color-border);
        }

        main th {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.05em;
        }

        main tbody tr {
            transition: background var(--transition-fast);
        }

        main tbody tr:hover {
            background: var(--color-primary-glow);
        }

        main tbody tr:last-child td {
            border-bottom: none;
        }

        main code {
            font-family: 'SF Mono', Consolas, monospace;
            font-size: 0.9em;
            padding: 0.2em 0.4em;
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-sm);
            color: var(--color-accent);
        }

        main pre {
            margin: 2rem 0;
            padding: 1.5rem;
            background: var(--color-bg-alt);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            overflow-x: auto;
        }

        main pre code {
            padding: 0;
            background: none;
            border: none;
            color: var(--color-text);
        }

        main hr {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-border-light), transparent);
            margin: 3rem 0;
        }

        nav[aria-label="Table of contents"] {
            margin: 2rem 0;
            padding: 1.5rem;
            background: var(--color-bg-card);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }

        nav[aria-label="Table of contents"] ol {
            margin: 0;
        }

        nav[aria-label="Table of contents"] li {
            background: transparent;
            border: none;
            padding: 0.5rem 0 0.5rem 2rem;
        }

        nav[aria-label="Table of contents"] li:hover {
            transform: none;
            box-shadow: none;
        }

        nav[aria-label="Table of contents"] li::before {
            background: var(--color-accent);
            top: 0.85rem;
        }

        nav[aria-label="Table of contents"] a {
            color: var(--color-text-muted);
            font-weight: 400;
        }

        nav[aria-label="Table of contents"] a:hover {
            color: var(--color-primary);
        }

        footer {
            background: var(--color-bg-alt);
            border-top: 1px solid var(--color-border);
            padding: 2rem;
            text-align: center;
            color: var(--color-text-subtle);
            font-size: 0.875rem;
        }

        @media (max-width: 640px) {
            main {
                padding: 0 0.75rem 3rem;
            }

            main h1::after {
                width: 60px;
            }

            main h2 {
                padding-left: 0.75rem;
                margin: 2.5rem 0 1rem;
            }

            main h3 {
                margin: 2rem 0 0.75rem;
            }

            main ul li, main ol li {
                padding: 0.6rem 0.75rem 0.6rem 2rem;
            }

            main ul li::before {
                left: 0.6rem;
                width: 6px;
                height: 6px;
            }

            main ol li::before {
                left: 0.4rem;
                width: 1.25rem;
                height: 1.25rem;
                font-size: 0.7rem;
            }

            main blockquote {
                padding: 1.25rem 1rem 1.25rem 1.25rem;
            }

            main blockquote::before {
                font-size: 3rem;
                top: -0.25rem;
                left: 0.5rem;
            }

            main .hero-image {
                width: calc(100% + 1.5rem);
                margin: 0 -0.75rem 1.5rem;
                border-radius: var(--radius-md);
            }

            main th, main td {
                padding: 0.75rem 0.5rem;
                font-size: 0.875rem;
            }
        }

        @media (min-width: 1024px) {
            main {
                padding: 0 2rem 5rem;
            }

            main h2 {
                margin: 4rem 0 1.5rem;
            }

            main figure {
                margin: 3rem -2rem;
                width: calc(100% + 4rem);
            }

            main .hero-image {
                width: calc(100% + 4rem);
                margin: 0 -2rem 2.5rem;
                max-height: 500px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        /* ==========================================================================
   HIDE MOBILE ELEMENTS ON DESKTOP
   ========================================================================== */

@media (min-width: 992px) {
    /* Hide the mobile menu container */
    .mobile-menu {
        display: none !important;
    }

    /* Hide the dark overlay */
    .mobile-menu-overlay {
        display: none !important;
    }

    /* Hide the burger button wrapper */
    .mobile-controls {
        display: none !important;
    }
}

body.home .menu-item-home,
body.home li.current-menu-item.menu-item-home {
  display: none !important;
}

/* ==========================================================================
   MOBILE VIEW: Hide Desktop Menu & Show Burger
   ========================================================================== */

@media (max-width: 991px) {
    /* 1. Hide the horizontal desktop menu */
    .site-nav--desktop {
        display: none !important;
    }

    /* 2. Make sure the burger button is visible */
    .mobile-controls {
        display: block !important;
    }
    
    /* 3. Make sure the burger itself is visible */
    .burger {
        display: block !important;
    }
}

/* =========================================
   1. Header Layout & Sticky Behavior
   ========================================= */
.site-header {
    background-color: rgba(11, 15, 14, 0.95); /* Dark semi-transparent background */
    padding: 15px 0;
    width: 100%;
    
    /* Sticky Positioning */
    position: sticky;
    top: 0;
    z-index: 1000;
    
    /* Blur effect for modern glass look */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-navigation-bar {
    display: flex;
    justify-content: space-between; /* Space between Logo/Nav/Burger */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. HIDING Desktop Menu on Mobile
   ========================================= */
/* By default (mobile), we HIDE the desktop list */
.site-nav--desktop {
    display: none; 
}

/* By default (mobile), we SHOW the burger button container */
.mobile-controls {
    display: block;
    margin-left: auto; /* Push to the right */
}

/* --- Burger Button Styling (FORCED) --- */
.burger {
    /* Reset all theme defaults aggressively */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    
    width: 30px !important;
    height: 20px !important;    /* Fixed height is crucial for spacing */
    
    background: transparent !important; /* No background color */
    border: none !important;            /* No border */
    border-radius: 0 !important;
    padding: 0 !important;              /* REMOVE padding from theme */
    margin: 0 !important;
    box-shadow: none !important;
    
    cursor: pointer;
    z-index: 1001;
}

/* --- The 3 Lines --- */
.burger span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;        /* Line thickness */
    background-color: #ffffff !important;
    border-radius: 2px;
    margin: 0 !important;          /* Ensure no margins on lines */
    padding: 0 !important;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

/* --- Burger Animation (Active State) --- */
.burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
    opacity: 0;
}
.burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================================
   4. Mobile Menu Overlay (The Popup)
   ========================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0b0f0e; /* Deep dark background */
    z-index: 999; /* Below the burger button */
    
    /* Animation: Slide in from right or fade in */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* State: Open */
.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* The Close Button inside menu (optional, since burger transforms) */
.mobile-menu__close {
    display: none; /* We use the burger to close, so hide this */
}

/* Mobile Menu Links Styling */
.mobile-menu__inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu__inner ul li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Staggered animation for links when menu opens */
.mobile-menu.is-open .mobile-menu__inner ul li {
    opacity: 1;
    transform: translateY(0);
}
/* Delays for each item */
.mobile-menu.is-open li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.is-open li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.is-open li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.is-open li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu__inner ul li a {
    color: #fff;
    font-size: 24px; /* Large text for mobile */
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu__inner ul li a:hover {
    color: #4ade80; /* Green accent on touch/hover */
}

/* Overlay dark background (if you used it in HTML) */
.mobile-menu-overlay {
    display: none; /* Not strictly needed with full screen menu */
}

/* =========================================
   5. DESKTOP VIEW (Min-width: 992px)
   ========================================= */
@media (min-width: 992px) {
    
    /* Show Desktop Menu */
    .site-nav--desktop {
        display: flex; 
        justify-content: center;
        width: 100%;
    }
    
    /* Hide Mobile Controls */
    .mobile-controls {
        display: none;
    }
    
    /* Hide Mobile Menu Container */
    .mobile-menu {
        display: none;
    }

    /* Desktop Menu List Styles */
    .menu-desktop {
        display: flex;
        list-style: none;
        gap: 30px;
        margin: 0;
        padding: 0;
    }

    .menu-desktop li a {
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        text-transform: uppercase;
        position: relative;
        padding: 10px 0;
        transition: color 0.3s;
    }

    /* Desktop Hover Line Effect */
    .menu-desktop li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #4ade80;
        transition: width 0.3s;
    }

    .menu-desktop li a:hover {
        color: #4ade80;
    }
    .menu-desktop li a:hover::after {
        width: 100%;
    }
}

.site-footer {
    background-color: #050807; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    margin-top: 50px; 
    font-family: sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;
}

.footer-nav {
    width: 100%;
    order: 1; 
    margin-bottom: 30px; 
}

.footer-menu-list {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 30px;
}

.footer-menu-list li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-menu-list li a:hover {
    color: #4ade80; 
}

.footer-content p {
    order: 2; 
    font-size: 12px;
    line-height: 1.6;
    color: #6b7280; 
    max-width: 800px; 
    margin: 0;
}

.footer-content p strong {
    color: #9ca3af; 
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
    }

    .footer-menu-list {
        flex-direction: column; 
        gap: 15px;
    }
    
    .footer-nav {
        margin-bottom: 25px;
    }
}

/* =========================================
   LOGO STYLES
   ========================================= */
.site-logo {
    flex-shrink: 0; 
    margin-right: 20px; 
    max-width: 200px; 
}

.site-logo img {
    max-height: 40px; 
    width: auto;      
    display: block;   
}

.site-logo a {
    text-decoration: none;
}

.site-title {
    color: #ffffff;
    font-family: sans-serif; 
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   DESKTOP LAYOUT ADJUSTMENT (Grid)
   ========================================= */
@media (min-width: 992px) {
    .top-navigation-bar {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .site-logo {
        justify-self: start;
    }

    .site-nav--desktop {
        justify-self: center;
        width: auto; 
    }
    
}

/* =========================================
   MOBILE LAYOUT ADJUSTMENT
   ========================================= */
@media (max-width: 991px) {
    .site-title {
        font-size: 20px;
    }
}

/* =========================================
   404 PAGE STYLES
   ========================================= */

/* Main container: Centers everything vertically and horizontally */
.error-404-wrapper {
    min-height: 70vh; /* Takes up most of the screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, var(--color-bg-alt) 0%, var(--color-bg) 70%);
    padding: 20px;
    text-align: center;
}

.error-404-content {
    max-width: 600px;
    padding: 40px;
    /* Optional: Subtle border card effect */
    /* border: 1px solid var(--color-border); */
    /* border-radius: var(--radius-lg); */
}

/* The Huge 404 Number */
.error-404-title {
    font-size: clamp(6rem, 15vw, 12rem); /* Responsive giant text */
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: var(--color-primary); /* Green color */
    
    /* Neon Glow Effect */
    text-shadow: 0 0 20px var(--color-primary-glow), 
                 0 0 60px rgba(46, 204, 113, 0.1);
    
    /* Subtle animation */
    animation: glowPulse 3s infinite alternate;
}

/* Subtitle "Page not found" */
.error-404-subtitle {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--color-text);
    margin: 10px 0 20px;
    font-weight: 700;
}

/* Description Text */
.error-404-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Button Styling */
.btn-404 {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-primary);
    color: #ffffff; /* Always white text on green button */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-404:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    color: #ffffff;
}

/* Animation Keyframes */
@keyframes glowPulse {
    from {
        text-shadow: 0 0 20px var(--color-primary-glow);
        opacity: 0.9;
    }
    to {
        text-shadow: 0 0 40px var(--color-primary-glow), 0 0 10px var(--color-primary);
        opacity: 1;
    }
}

.site-footer {
    background-color: #000000;
    color: #e0e0e0;
    padding: 60px 20px 30px;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px;
    margin-bottom: 50px;
}

.footer-heading {
    color: #ffffff; 
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f5c518;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
}

.footer-links-list a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links-list a:hover {
    color: #f5c518; 
    padding-left: 5px; 
}

.help-link {
    color: #ff4444 !important; 
}

.warning-text {
    color: #cccccc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: left;
    font-size: 12px;
    color: #777;
}

.footer-bottom-content p {
    margin-bottom: 15px;
}

.copyright-text {
    text-align: center;
    color: #555;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-heading {
        border-bottom: none; 
        margin-bottom: 10px;
    }

    .footer-bottom {
        text-align: center;
    }
}