* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #2c1810;
            --primary-main: #8b4513;
            --primary-light: #d2691e;
            --secondary-dark: #1a472a;
            --secondary-main: #2e8b57;
            --accent-gold: #daa520;
            --text-light: #f5f5f5;
            --text-muted: #b0b0b0;
            --bg-body: #121212;
            --bg-card: #1e1e1e;
            --border-color: #444;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--bg-body);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent-gold);
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(18, 18, 18, 0.95);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary-light), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .search-form {
            display: flex;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            background-color: var(--bg-card);
            color: var(--text-light);
            outline: none;
        }
        .search-form button {
            background-color: var(--primary-main);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: var(--primary-light);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        nav ul {
            display: flex;
            list-style: none;
            background-color: var(--primary-dark);
            border-radius: 4px;
            overflow: hidden;
        }
        nav li {
            flex: 1;
        }
        nav a {
            display: block;
            padding: 15px 25px;
            text-align: center;
            color: var(--text-light);
            font-weight: 500;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        nav a:last-child {
            border-right: none;
        }
        nav a:hover {
            background-color: var(--primary-main);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 2px solid var(--primary-main);
            padding-bottom: 30px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--accent-gold);
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: var(--bg-card);
            border-radius: 8px;
            padding: 35px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .article-content h2 {
            color: var(--primary-light);
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: var(--secondary-main);
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-content strong {
            color: var(--accent-gold);
            font-weight: 600;
        }
        .article-content em {
            color: var(--text-muted);
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(139,69,19,0.1), rgba(42, 21, 11, 0.1));
            border-left: 4px solid var(--primary-main);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .map-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            margin: 25px 0;
            transition: transform 0.5s ease;
        }
        .map-image:hover {
            transform: scale(1.01);
        }
        .interactive-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }
        .interactive-links a {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--secondary-dark);
            color: white;
            border-radius: 4px;
            font-weight: 500;
        }
        .interactive-links a:hover {
            background-color: var(--secondary-main);
            text-decoration: none;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background-color: var(--bg-card);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .widget h3 {
            color: var(--primary-light);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            font-size: 1.3rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: var(--border-color);
            cursor: pointer;
            margin-bottom: 10px;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-gold);
        }
        .rating-widget input, .rating-widget textarea, .comment-widget textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-light);
            resize: vertical;
        }
        .rating-widget button, .comment-widget button {
            padding: 12px;
            background-color: var(--primary-main);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background-color: var(--primary-light);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 10px;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            transition: all 0.3s;
        }
        .quick-links a:hover {
            background-color: rgba(139, 69, 19, 0.2);
            padding-left: 15px;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: var(--bg-card);
            padding: 15px;
            border-radius: 4px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s;
        }
        .web-link:hover {
            border-color: var(--primary-light);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--primary-dark);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid var(--primary-main);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            gap: 20px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .longtail-links {
                grid-template-columns: repeat(3, 1fr);
            }
            .article-header h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                margin: 15px 0 0;
                max-width: 100%;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
                border-radius: 0;
            }
            nav.active ul {
                display: flex;
            }
            nav a {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .article-header h1 {
                font-size: 1.8rem;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 20px;
            }
        }
