:root {
            --primary-dark: #0d1b2a;
            --primary-blue: #1b3a6f;
            --accent-gold: #c9a95e;
            --accent-bronze: #a87c3d;
            --text-light: #e0e1dd;
            --text-gray: #b0b7c3;
            --card-bg: #162447;
            --border-color: #2a3d5f;
            --success-green: #3a7d34;
            --warning-orange: #e09f3e;
            --hover-transition: all 0.3s ease;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        * {
            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.6;
            color: var(--text-light);
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2b42 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
            transition: var(--hover-transition);
        }
        .logo a:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(201, 169, 94, 0.7);
        }
        .logo span {
            color: var(--text-light);
            font-size: 1.8rem;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--hover-transition);
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-gold);
            background-color: rgba(27, 58, 111, 0.3);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--accent-gold);
            transition: var(--hover-transition);
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            flex-direction: column;
            padding: 20px;
            gap: 15px;
            transform: translateY(-100%);
            opacity: 0;
            transition: var(--hover-transition);
            z-index: 999;
            box-shadow: var(--shadow-lg);
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            display: flex;
        }
        .breadcrumb {
            background-color: rgba(22, 36, 71, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 10px;
            color: var(--text-gray);
        }
        .breadcrumb a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--hover-transition);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb .current {
            color: var(--accent-gold);
            font-weight: 600;
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .search-section {
            background-color: var(--card-bg);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 14px 20px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background-color: rgba(13, 27, 42, 0.7);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--hover-transition);
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(201, 169, 94, 0.2);
        }
        .search-btn {
            padding: 0 25px;
            background: linear-gradient(to right, var(--accent-bronze), var(--accent-gold));
            border: none;
            border-radius: 8px;
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--hover-transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-btn:hover {
            background: linear-gradient(to right, var(--accent-gold), #e0c87c);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 20px;
        }
        @media (max-width: 768px) {
            article h1 {
                font-size: 2.2rem;
            }
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.95rem;
            flex-wrap: wrap;
            gap: 15px;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .article-content h2 {
            font-size: 2rem;
            color: var(--accent-gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: var(--text-light);
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
        }
        .article-content p.lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-light);
            background-color: rgba(27, 58, 111, 0.3);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(27, 58, 111, 0.5), rgba(13, 27, 42, 0.7));
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: var(--shadow-sm);
        }
        .highlight-box h4 {
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .featured-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 30px 0;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
            transition: var(--hover-transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: var(--shadow-lg);
        }
        .content-link {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--accent-gold);
            transition: var(--hover-transition);
        }
        .content-link:hover {
            color: #fff;
            border-bottom-style: solid;
        }
        .step-list {
            list-style-type: none;
            counter-reset: step-counter;
            margin: 30px 0;
        }
        .step-list li {
            counter-increment: step-counter;
            margin-bottom: 25px;
            padding-left: 50px;
            position: relative;
        }
        .step-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 36px;
            height: 36px;
            background: linear-gradient(to bottom right, var(--accent-bronze), var(--accent-gold));
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background-color: rgba(13, 27, 42, 0.7);
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: var(--hover-transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-md);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            display: block;
            margin-bottom: 5px;
        }
        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        @media (max-width: 992px) {
            aside {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
        }
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }
        .sidebar-title {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }
        .rating-widget {
            text-align: center;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        .star {
            font-size: 2rem;
            color: var(--border-color);
            cursor: pointer;
            transition: var(--hover-transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
            transform: scale(1.1);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-input {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            background-color: rgba(13, 27, 42, 0.7);
            color: var(--text-light);
        }
        .rating-btn {
            background: linear-gradient(to right, var(--primary-blue), #2a4a8a);
            border: none;
            border-radius: 6px;
            padding: 12px;
            color: var(--text-light);
            font-weight: 600;
            cursor: pointer;
            transition: var(--hover-transition);
        }
        .rating-btn:hover {
            background: linear-gradient(to right, #2a4a8a, var(--primary-blue));
            transform: translateY(-2px);
        }
        .comments-widget {
            max-height: 500px;
            overflow-y: auto;
            padding-right: 10px;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        .comment-input {
            padding: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background-color: rgba(13, 27, 42, 0.7);
            color: var(--text-light);
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
        }
        .comment-submit {
            align-self: flex-start;
            background: linear-gradient(to right, var(--accent-bronze), var(--accent-gold));
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            color: var(--primary-dark);
            font-weight: 700;
            cursor: pointer;
            transition: var(--hover-transition);
        }
        .comment-submit:hover {
            background: linear-gradient(to right, var(--accent-gold), #e0c87c);
            transform: translateY(-2px);
        }
        .comment {
            background-color: rgba(13, 27, 42, 0.5);
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 3px solid var(--accent-gold);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .comment-author {
            font-weight: 600;
            color: var(--accent-gold);
        }
        .web-links-section {
            background-color: var(--card-bg);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(13, 27, 42, 0.7);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: var(--hover-transition);
        }
        .web-link:hover {
            border-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .web-link a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .web-link a:hover {
            color: var(--accent-gold);
        }
        footer {
            background-color: var(--primary-dark);
            padding: 40px 0 20px;
            border-top: 1px solid var(--border-color);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
        }
        .footer-nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .footer-nav a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--hover-transition);
        }
        .footer-nav a:hover {
            color: var(--accent-gold);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .text-bold {
            font-weight: 700;
        }
        .text-accent {
            color: var(--accent-gold);
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(to right, var(--accent-bronze), var(--accent-gold));
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            transition: var(--hover-transition);
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(to right, var(--accent-gold), #e0c87c);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .btn-block {
            display: block;
            width: 100%;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: rgba(13, 27, 42, 0.5);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-bronze);
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 25px;
            }
            .header-container {
                padding: 12px 0;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-nav {
                justify-content: center;
            }
        }
