:root {
            --primary-dark: #1a2a3a;
            --primary-blue: #2c3e50;
            --accent-gold: #d4af37;
            --accent-anemo: #74c7b8;
            --text-light: #f5f7fa;
            --text-gray: #bdc3c7;
            --bg-section: #0f1721;
            --border-color: #34495e;
            --hover-glow: rgba(116, 199, 184, 0.2);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-anemo);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--hover-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, var(--primary-dark), var(--primary-blue));
            padding: 1.2rem 0;
            border-bottom: 2px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(45deg, #d4af37, #f7ef8a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary-blue);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            background-color: rgba(26, 42, 58, 0.9);
            padding: 1rem 0;
            font-size: 0.95rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.7rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.7rem;
            color: var(--text-gray);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: var(--bg-section);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-header {
            margin-bottom: 2.5rem;
            text-align: center;
            border-bottom: 2px dashed var(--border-color);
            padding-bottom: 1.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--accent-anemo);
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(116, 199, 184, 0.3);
        }
        .article-header .meta {
            color: var(--text-gray);
            font-size: 0.95rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .article-header .meta span i {
            margin-right: 0.5rem;
            color: var(--accent-gold);
        }
        h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            color: var(--accent-gold);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        h3 {
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
            color: var(--text-light);
        }
        h4 {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
            color: var(--text-gray);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(116, 199, 184, 0.1);
            border-left: 4px solid var(--accent-anemo);
            padding: 1.5rem;
            margin: 1.8rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: var(--accent-anemo);
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            border: 2px solid var(--border-color);
        }
        .image-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-gray);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        em {
            color: var(--text-gray);
        }
        strong {
            color: var(--accent-gold);
            font-weight: 700;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--accent-anemo);
            text-align: center;
            margin: 2.5rem auto;
            max-width: 800px;
            padding: 2rem;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .quote::before, .quote::after {
            content: '"';
            font-size: 2rem;
            color: var(--accent-gold);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--bg-section);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 1.5rem;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        .sidebar-widget h3 i {
            color: var(--accent-anemo);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            background-color: #1e2b3a;
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 8px 0 0 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-anemo);
            color: var(--primary-dark);
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 1.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .search-form button:hover {
            background-color: #8fd9ca;
        }
        .quick-nav ul {
            list-style: none;
            margin-left: 0;
        }
        .quick-nav li {
            margin-bottom: 0.8rem;
        }
        .quick-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.03);
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .quick-nav a:hover {
            border-left-color: var(--accent-anemo);
            background-color: rgba(116, 199, 184, 0.1);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: var(--border-color);
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .rating-widget input,
        .rating-widget textarea {
            padding: 0.9rem;
            background-color: #1e2b3a;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .rating-widget button {
            padding: 1rem;
            background: linear-gradient(to right, var(--accent-anemo), #2a8c7c);
            color: var(--primary-dark);
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .rating-widget button:hover {
            transform: translateY(-3px);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .tabbed-content {
            margin: 2.5rem 0;
        }
        .tab-buttons {
            display: flex;
            border-bottom: 2px solid var(--border-color);
            overflow-x: auto;
        }
        .tab-btn {
            padding: 1rem 1.8rem;
            background: none;
            border: none;
            color: var(--text-gray);
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            white-space: nowrap;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .tab-btn:hover {
            color: var(--text-light);
        }
        .tab-btn.active {
            color: var(--accent-anemo);
            border-bottom-color: var(--accent-anemo);
        }
        .tab-panel {
            padding: 2rem;
            background-color: rgba(26, 42, 58, 0.7);
            border-radius: 0 0 8px 8px;
            display: none;
        }
        .tab-panel.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .footer-links {
            background-color: var(--primary-blue);
            padding: 3rem 0;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.03);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--accent-gold);
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.07);
        }
        .web-link a {
            color: var(--text-light);
            font-weight: 600;
            display: block;
        }
        .site-footer {
            text-align: center;
            padding: 2.5rem 0;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .site-footer .copyright {
            margin-top: 1rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .article-content { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: block; }
            .header-content { padding: 0 10px; }
            .article-header h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-content { padding: 1.5rem 0; }
            .article-content { padding: 1.5rem; }
            .breadcrumb { padding: 0.8rem 0; }
        }
        @media (max-width: 480px) {
            .tab-buttons { justify-content: flex-start; }
            .tab-btn { padding: 0.8rem 1.2rem; font-size: 1rem; }
            .sidebar-widget { padding: 1.5rem; }
            .footer-links .container { grid-template-columns: 1fr; }
        }
