:root {
            --primary-dark: #0a1a2a;
            --primary-gold: #d4af37;
            --primary-maroon: #740001;
            --secondary-slate: #2c3e50;
            --accent-teal: #1abc9c;
            --text-light: #ecf0f1;
            --text-gray: #bdc3c7;
            --bg-section: rgba(10, 26, 42, 0.95);
            --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.7);
            --shadow-light: 0 5px 15px rgba(212, 175, 55, 0.3);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2b3c 50%, #2c3e50 100%);
            background-attachment: fixed;
            overflow-x: hidden;
        }
        .site-header {
            background-color: rgba(10, 26, 42, 0.98);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 3px solid var(--primary-gold);
            box-shadow: var(--shadow-heavy);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            letter-spacing: 1.5px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #fff;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
        }
        .logo-icon {
            color: var(--primary-maroon);
            font-size: 2.5rem;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover {
            background-color: rgba(212, 175, 55, 0.15);
            color: var(--primary-gold);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: var(--transition);
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--primary-gold);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            max-width: 1400px;
            margin: 1rem auto 2rem;
            padding: 0 2rem;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--accent-teal);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        .search-section {
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem;
            background: var(--bg-section);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--secondary-slate);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .search-btn {
            padding: 1rem 2rem;
            background: linear-gradient(to right, var(--primary-gold), #f1c40f);
            color: var(--primary-dark);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-light);
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }
        .main-content {
            background: var(--bg-section);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .article-header {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(212, 175, 55, 0.4);
        }
        h1 {
            font-size: 3.2rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: 'Cinzel', serif;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        .article-meta {
            display: flex;
            gap: 2rem;
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-top: 1rem;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--accent-teal);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(26, 188, 156, 0.4);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin: 2.5rem 0 1rem;
            padding-left: 1rem;
            border-left: 4px solid var(--primary-maroon);
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
            color: var(--text-light);
        }
        .lead {
            font-size: 1.4rem;
            color: var(--text-gray);
            font-weight: 300;
            line-height: 1.9;
            background: rgba(212, 175, 55, 0.05);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary-gold);
            margin-bottom: 3rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
            border-left: 5px solid var(--accent-teal);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            box-shadow: var(--shadow-light);
        }
        .content-img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2.5rem 0;
            box-shadow: var(--shadow-heavy);
            transition: var(--transition);
            border: 3px solid transparent;
        }
        .content-img:hover {
            transform: scale(1.01);
            border-color: var(--primary-gold);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: -1.5rem;
            margin-bottom: 2.5rem;
            font-size: 1rem;
        }
        ul, ol {
            margin: 1.5rem 0 1.5rem 2.5rem;
            color: var(--text-light);
        }
        li {
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        strong {
            color: var(--primary-gold);
            font-weight: 700;
        }
        em {
            color: var(--accent-teal);
        }
        .internal-link {
            color: var(--primary-gold);
            text-decoration: none;
            border-bottom: 1px dotted var(--primary-gold);
            transition: var(--transition);
            padding-bottom: 2px;
        }
        .internal-link:hover {
            color: #fff;
            border-bottom: 2px solid var(--primary-gold);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--bg-section);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-heavy);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(212, 175, 55, 0.4);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: var(--primary-gold);
        }
        .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover {
            transform: scale(1.3);
            color: #f1c40f;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form select, .rating-form textarea {
            padding: 0.8rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--secondary-slate);
            color: var(--text-light);
            font-size: 1rem;
        }
        .rating-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            padding: 1rem;
            background: linear-gradient(to right, var(--primary-maroon), #c0392b);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(192, 57, 43, 0.4);
        }
        .related-links {
            list-style: none;
            margin: 0;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .related-links a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary-gold);
            padding-left: 10px;
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 3px solid var(--primary-maroon);
        }
        .comment-form {
            background: rgba(10, 26, 42, 0.7);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin-bottom: 3rem;
            box-shadow: var(--shadow-heavy);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-gray);
            font-weight: 600;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--secondary-slate);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .comment {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-gold);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .comment-author {
            color: var(--primary-gold);
            font-weight: 700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 3rem auto 0;
            padding: 2rem;
            background: var(--primary-dark);
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            border-top: 3px solid var(--primary-gold);
        }
        .web-link a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.95rem;
            line-height: 1.6;
            transition: var(--transition);
            display: block;
            padding: 0.5rem;
            border-radius: 6px;
        }
        .web-link a:hover {
            color: var(--primary-gold);
            background: rgba(212, 175, 55, 0.1);
        }
        .site-footer {
            background-color: #0a141f;
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--primary-gold);
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 1.5rem;
            line-height: 1.6;
        }
        @media (max-width: 1200px) {
            .container {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            .main-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .mobile-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                padding: 1.5rem;
                box-shadow: var(--shadow-heavy);
                border-top: 2px solid var(--primary-gold);
            }
            .mobile-nav.active {
                display: flex;
            }
            .mobile-nav .nav-link {
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }
        @media (max-width: 768px) {
            .header-container, .breadcrumb, .container, .search-section {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .main-content {
                padding: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                justify-content: center;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
                padding: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .logo a {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .main-content {
                padding: 1.5rem;
            }
            .sidebar-widget {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content, .sidebar-widget, .search-section {
            animation: fadeIn 0.8s ease-out;
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .emoji { font-size: 1.2em; margin: 0 3px; }
