 :root {
            /* Color Palette - Inspired by Horse Racing: Rich greens, gold accents, deep browns */
            --color-primary: #3d8a5a;
            --color-primary-light: #4fa06d;
            --color-primary-dark: #2d6a45;

            --color-accent: #e6c458;
            --color-accent-light: #f0d87a;
            --color-accent-dark: #c9a227;

            --color-surface: #1a1a18;
            --color-surface-alt: #252420;

            --color-text: #e8e4dc;
            --color-text-muted: #b0a898;
            --color-text-light: #7a7468;

            --color-border: #3a3830;
            --color-shadow: rgba(0, 0, 0, 0.4);

            /* Typography */
            --font-heading: "Georgia", "Times New Roman", serif;
            --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
            --line-height-body: 1.7;
            --line-height-heading: 1.25;

            /* Spacing */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;

            /* Layout */
            --content-width: 72ch;
            --content-width-wide: 90ch;

            /* Transitions */
            --transition-fast: 150ms ease;
            --transition-base: 250ms ease;
            --transition-slow: 400ms ease;

            /* Shadows */
            --shadow-sm: 0 1px 3px var(--color-shadow);
            --shadow-md: 0 4px 12px var(--color-shadow);
            --shadow-lg: 0 8px 30px var(--color-shadow);
        }

       

        /* Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            line-height: var(--line-height-body);
            color: var(--color-text);
            background-color: var(--color-surface);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Focus Styles for Accessibility */
        :focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 3px;
        }

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

        /* Header */
        .site-header {
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
            min-height: 4px;
        }

        /* Navigation */
        nav {
            background-color: var(--color-surface-alt);
            border-bottom: 1px solid var(--color-border);
            padding: var(--space-sm) var(--space-md);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-xs) var(--space-md);
            list-style: none;
            max-width: var(--content-width-wide);
            margin: 0 auto;
            justify-content: center;
        }

        nav a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: var(--space-xs) var(--space-sm);
            border-radius: 4px;
            transition: color var(--transition-fast), background-color var(--transition-fast);
        }

        nav a:hover {
            color: var(--color-primary);
            background-color: var(--color-border);
        }

        /* Main Content Area */
        main {
            flex: 1;
            width: 100%;
            max-width: var(--content-width-wide);
            margin: 0 auto;
            padding: var(--space-lg) var(--space-md) var(--space-xl);
        }

        /* Article Typography */
        main h1 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
            font-weight: 700;
            line-height: var(--line-height-heading);
            color: var(--color-primary-dark);
            margin-bottom: var(--space-md);
            max-width: var(--content-width);
            letter-spacing: -0.02em;
        }

        @media (prefers-color-scheme: dark) {
            main h1 {
                color: var(--color-accent-light);
            }
        }

        main h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
            font-weight: 600;
            line-height: var(--line-height-heading);
            color: var(--color-primary);
            margin-top: var(--space-xl);
            margin-bottom: var(--space-md);
            max-width: var(--content-width);
            padding-bottom: var(--space-xs);
            border-bottom: 2px solid var(--color-accent);
            position: relative;
        }

        main h2::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 60px;
            height: 2px;
            background-color: var(--color-primary);
        }

        main h3 {
            font-family: var(--font-heading);
            font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
            font-weight: 600;
            line-height: var(--line-height-heading);
            color: var(--color-text);
            margin-top: var(--space-lg);
            margin-bottom: var(--space-sm);
            max-width: var(--content-width);
        }

        main p {
            max-width: var(--content-width);
            margin-bottom: var(--space-md);
            text-align: left;
            hyphens: auto;
        }

        main p:last-child {
            margin-bottom: 0;
        }

        /* Strong and Emphasis */
        main strong {
            font-weight: 600;
            color: var(--color-primary-dark);
        }

        @media (prefers-color-scheme: dark) {
            main strong {
                color: var(--color-accent-light);
            }
        }

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

        /* Lists */
        main ul, main ol {
            max-width: var(--content-width);
            margin-bottom: var(--space-md);
            padding-left: var(--space-md);
        }

        main li {
            margin-bottom: var(--space-xs);
            padding-left: var(--space-xs);
        }

        main li::marker {
            color: var(--color-accent);
            font-weight: 600;
        }

        main ul li {
            list-style-type: square;
        }

        main ol li {
            list-style-type: decimal;
        }

        main li > ul, main li > ol {
            margin-top: var(--space-xs);
            margin-bottom: var(--space-xs);
        }

        /* Blockquote */
        main blockquote {
            max-width: var(--content-width);
            margin: var(--space-lg) 0;
            padding: var(--space-md) var(--space-lg);
            background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-surface) 100%);
            border-left: 4px solid var(--color-accent);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: var(--color-text-muted);
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        main blockquote::before {
            content: open-quote;
            font-family: var(--font-heading);
            font-size: 4rem;
            color: var(--color-accent);
            opacity: 0.3;
            position: absolute;
            top: -10px;
            left: 15px;
            line-height: 1;
        }

        main blockquote p {
            margin-bottom: var(--space-sm);
        }

        main blockquote p:last-child {
            margin-bottom: 0;
        }

        /* Figures and Images */
        main figure {
            max-width: var(--content-width-wide);
            margin: var(--space-lg) 0;
        }

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

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

        main .hero-image {
            max-width: 100%;
            margin-bottom: var(--space-lg);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        main .article-image {
            max-width: var(--content-width);
            margin: var(--space-md) 0;
        }

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

        /* Links within content */
        main a {
            color: var(--color-primary);
            text-decoration: underline;
            text-decoration-color: var(--color-accent);
            text-underline-offset: 3px;
            transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
        }

        main a:hover {
            color: var(--color-accent-dark);
            text-decoration-color: var(--color-primary);
        }

        /* Table of Contents styling */
        main ul:first-of-type {
            background-color: var(--color-surface-alt);
            padding: var(--space-md) var(--space-lg);
            border-radius: 8px;
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
        }

        main ul:first-of-type li {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: var(--space-xs);
        }

        main ul:first-of-type li::before {
            content: "\2192";
            color: var(--color-accent);
            margin-right: var(--space-xs);
            font-weight: bold;
        }

        /* Horizontal Rule */
        main hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
            margin: var(--space-xl) auto;
            max-width: 200px;
        }

        /* Code and preformatted */
        main code {
            font-family: "Consolas", "Monaco", monospace;
            font-size: 0.9em;
            background-color: var(--color-surface-alt);
            padding: 0.15em 0.4em;
            border-radius: 4px;
            border: 1px solid var(--color-border);
        }

        main pre {
            max-width: var(--content-width);
            overflow-x: auto;
            padding: var(--space-md);
            background-color: var(--color-surface-alt);
            border-radius: 8px;
            border: 1px solid var(--color-border);
            margin-bottom: var(--space-md);
        }

        main pre code {
            background: none;
            padding: 0;
            border: none;
        }

        /* Decorative Elements */
        main h2 + p::first-letter {
            font-family: var(--font-heading);
            font-size: 3.5em;
            float: left;
            line-height: 0.8;
            padding-right: var(--space-sm);
            padding-top: 0.1em;
            color: var(--color-primary);
            font-weight: 700;
        }

        @media (prefers-color-scheme: dark) {
            main h2 + p::first-letter {
                color: var(--color-accent);
            }
        }

        /* Footer */

        /* Footer Content */
        .footer-content {
            max-width: var(--content-width-wide);
            margin: 0 auto;
            padding: var(--space-md);
        }

        .disclaimer {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            line-height: 1.6;
            text-align: center;
        }

        footer {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            min-height: 60px;
            margin-top: auto;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            main {
                padding: var(--space-md) var(--space-sm);
            }

            main h2 {
                margin-top: var(--space-lg);
            }

            main h3 {
                margin-top: var(--space-md);
            }

            main blockquote {
                padding: var(--space-sm) var(--space-md);
                margin: var(--space-md) 0;
            }

            main blockquote::before {
                font-size: 2.5rem;
                top: -5px;
                left: 10px;
            }

            main h2 + p::first-letter {
                font-size: 2.5em;
            }

            nav ul {
                gap: var(--space-xs);
            }

            nav a {
                font-size: 0.8rem;
                padding: var(--space-xs);
            }
        }

        @media (max-width: 480px) {
            :root {
                --space-md: 1rem;
                --space-lg: 1.5rem;
                --space-xl: 2.5rem;
            }

            main h2 + p::first-letter {
                float: none;
                font-size: 1em;
                padding: 0;
            }

            main ul:first-of-type {
                padding: var(--space-sm);
            }
        }

        /* Print Styles */
        @media print {
            body {
                font-size: 12pt;
                line-height: 1.5;
                color: #000;
                background: #fff;
            }

            header, footer, nav {
                display: none;
            }

            main {
                max-width: 100%;
                padding: 0;
            }

            main a {
                text-decoration: none;
                color: #000;
            }

            main a::after {
                content: " (" attr(href) ")";
                font-size: 0.8em;
                color: #666;
            }

            main h1, main h2, main h3 {
                page-break-after: avoid;
            }

            main figure, main blockquote {
                page-break-inside: avoid;
            }
        }

        /* Reduced Motion */
        @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;
            }
        }

        /* Стили для изображений статьи о ставках на скачки */

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 0 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(26, 71, 42, 0.15);
}

.article-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 71, 42, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 71, 42, 0.18);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-image {
        margin: 0 0 1.5rem;
        border-radius: 8px;
    }
    
    .article-image {
        margin: 1.5rem 0;
        border-radius: 6px;
    }
}

/* Тёмная тема */
@media (prefers-color-scheme: dark) {
    .hero-image,
    .article-image {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .article-image:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
}

/* Печать */
@media print {
    .hero-image,
    .article-image {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* =========================================
   1. Burger Button Styles
   ========================================= */
.mobile-controls {
    display: flex;
    align-items: center;
    /* Show on mobile, usually hidden on desktop via media query */
}

/* Hide burger on desktop (adjust width as needed) */
@media (min-width: 992px) {
    .mobile-controls {
        display: none;
    }
}

.burger {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    position: relative;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px; /* Spacing between lines */
}

/* Burger lines */
.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #e8d585; /* Gold color to match headings */
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Burger Animation (Transform into X) */
.burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   2. Overlay (Backdrop)
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px); /* Modern blurred background effect */
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   3. Mobile Menu Panel
   ========================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0; /* Slide in from right */
    width: 85%;
    max-width: 350px;
    height: 100%;
    background-color: #1a2e1f; /* Dark Green (matches your site theme) */
    z-index: 999;
    transform: translateX(100%); /* Hidden off-screen */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth easing */
    box-shadow: -5px 0 20px rgba(0,0,0,0.4);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateX(0); /* Slide in */
}

/* Close Button inside menu */
.mobile-menu__close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #e8d585; /* Gold */
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    margin-bottom: 30px;
    padding: 0;
    transition: transform 0.3s ease;
}

.mobile-menu__close:hover {
    transform: rotate(90deg);
}

/* =========================================
   4. Menu Links Styling (FIXED)
   ========================================= */
.mobile-menu__inner {
    overflow-y: auto; /* Scroll if menu is too long */
    height: 100%;
    width: 100%;
}

/* The list container - Forced Column Layout */
.menu-mobile {
    display: flex;           /* Use flexbox */
    flex-direction: column;  /* Stack items vertically */
    width: 100%;             /* Full width */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List Items */
.menu-mobile li {
    display: block;          /* Ensure block behavior */
    width: 100%;             /* Full width */
    border-bottom: 1px solid rgba(232, 213, 133, 0.15); /* Faint gold separator */
    margin: 0;
    opacity: 0;              /* Initial state for animation */
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Staggered animation for list items when menu opens */
.mobile-menu.is-open .menu-mobile li {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.mobile-menu.is-open .menu-mobile li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .menu-mobile li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.is-open .menu-mobile li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.is-open .menu-mobile li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.is-open .menu-mobile li:nth-child(5) { transition-delay: 0.5s; }

/* Link Styles */
.menu-mobile li a {
    display: block;          /* Make the whole area clickable */
    width: 100%;
    color: #f0f0f0;          /* Off-white text */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 0;
    text-align: left;        /* Align text to the left */
    font-family: serif;      /* Matches the "Old Money" aesthetic */
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.menu-mobile li a:hover {
    color: #e8d585;          /* Gold on hover */
    padding-left: 10px;      /* Slight movement effect */
}

@media (min-width: 992px) {
    main h2, 
    main h3 {
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    main p {
        text-align: left; 
        max-width: 700px; 
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6; 
    }

    
    main h2::after {
        margin-left: auto;
        margin-right: auto;
        right: 0;
        left: 0;
    }
}

/* =========================================
   Center Images on Desktop
   ========================================= */
@media (min-width: 992px) {
    /* Target the specific class from your screenshot and generic images */
    main .article-image,
    main figure,
    main img {
        display: block; /* Ensures margin: auto works */
        margin-left: auto !important;
        margin-right: auto !important;
        
        /* Optional: limit width to match text readable width or slightly wider */
        max-width: 800px; 
        width: 100%; /* Responsive */
        
        /* Optional: Add a subtle shadow for the "premium" look */
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    /* If the image is inside a figure tag, center the caption too */
    main figure figcaption {
        text-align: center;
        margin-top: 10px;
        font-style: italic;
        color: #aaa;
    }
}

@media (min-width: 992px) {
    main ul:first-of-type {
        margin-left: auto !important;
        margin-right: auto !important;
        
        max-width: 700px; 
    }
}

/* =========================================
   Remove underlines in Table of Contents
   ========================================= */
main ul:first-of-type li a {
    text-decoration: none !important; /* Removes standard text underline */
    border-bottom: none !important;   /* Removes border if used */
    box-shadow: none !important;      /* Removes shadow underline if used */
}

/* Optional: Keep links readable on hover */
main ul:first-of-type li a:hover {
    color: #e8d585 !important; /* Change text to gold on hover instead of underline */
    text-decoration: none !important;
}

/* =========================================
   FOOTER STYLES (4 Columns)
   ========================================= */

.site-footer {
    background-color: #0d1a12; 
    color: #b0b0b0; 
    font-size: 15px;
    margin-top: 60px; 
    border-top: 3px solid #e8d585; 
}

.footer-widgets {
    padding: 60px 0 40px;
}

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

.footer-heading {
    color: #e8d585; 
    font-family: serif; 
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: bold;
    text-transform: capitalize;
}

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

.footer-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-list li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #e8d585; 
}

.warning-list li {
    position: relative;
    padding-left: 15px;
    color: #e0e0e0;
}

.warning-list li::before {
    content: "•";
    color: #ff4d4d; 
    position: absolute;
    left: 0;
    font-weight: bold;
}

.warning-list li a {
    color: #ff4d4d;
    font-weight: bold;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: #08100b; 
    font-size: 14px;
    color: rgb(255, 255, 255);
}

.site-info p {
    margin: 0;
}

/* =========================================
   RESPONSIVE FOOTER
   ========================================= */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-heading {
        margin-bottom: 15px;
        font-size: 18px;
    }
}



.footer-nav,
.footer-nav ul,
.footer-nav li {
    background: transparent !important; 
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    display: block !important;
    width: auto !important;
    text-align: left !important; 
}

.footer-nav ul li {
    margin-bottom: 12px !important; 
}

.footer-nav ul li a {
    color: #b0b0b0 !important; 
    text-decoration: none !important;
    font-weight: normal !important;
    font-size: 15px !important;
    display: inline-block; 
    padding: 0 !important; 
}

.footer-nav ul li a:hover {
    color: #e8d585 !important;
}

/* =========================================
   FIX: Center Copyright Text
   ========================================= */

/* Override grid layout specifically for the copyright section */
.site-info .footer-container {
    display: block !important;      
    text-align: center !important;  
    width: 100% !important;         
    max-width: 100% !important;     
}

.site-info p {
    margin: 0 auto !important;      
    max-width: 800px;              
}

/* =========================================
   Center Page Titles (H1) on Desktop
   ========================================= */
@media (min-width: 992px) {
    h1.betting-title,
    h1.entry-title,
    .page h1 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
    }

    h1.betting-title::after,
    h1.entry-title::after,
    .page h1::after {
        margin-left: auto !important;
        margin-right: auto !important;
        left: 0;
        right: 0;
    }
}

/* =========================================
   404 PAGE STYLES (Old Money Style)
   ========================================= */

.error-404-page {
    background-color: #1a2e1f; 
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.error-content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-family: 'Times New Roman', serif; 
    font-size: 120px;
    line-height: 1;
    color: #e8d585; 
    margin: 0 0 20px 0;
    font-weight: bold;
    opacity: 0.9;
}

.error-title {
    font-family: serif;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.error-text {
    font-family: sans-serif; 
    font-size: 18px;
    color: #b0b0b0; 
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e8d585; 
    color: #0d1a12;
    font-family: serif;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px; 
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #c9b05a; 
    color: #000;
    transform: translateY(-2px); 
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }
    .error-title {
        font-size: 24px;
    }
}

#crumbs {
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    text-align: center; 
}

#crumbs a {
    text-decoration: none;
    color: #0073aa; 
}

#crumbs a:hover {
    text-decoration: underline;
}

#crumbs .current {
    font-weight: bold;
    color: rgb(255, 255, 255);
}