        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%);
            border-bottom: 3px solid #e44d26;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: linear-gradient(90deg, #e44d26, #f0a500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0b7c3;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #fff;
            background-color: #2a3343;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a1f2e;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a3343;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #b0b7c3;
            text-decoration: none;
            padding: 15px;
            border-bottom: 1px solid #2a3343;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: #fff;
            background-color: #2a3343;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #151a24;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li {
            color: #8a94a6;
        }
        .breadcrumb li a {
            color: #4d9fff;
            text-decoration: none;
        }
        .breadcrumb li a:hover {
            text-decoration: underline;
        }
        .breadcrumb li::after {
            content: "›";
            margin-left: 10px;
        }
        .breadcrumb li:last-child::after {
            content: "";
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(rgba(26,31,46,0.9), rgba(26,31,46,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            border-radius: 12px;
            border-left: 6px solid #e44d26;
        }
        .article-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .article-header .meta {
            color: #8a94a6;
            font-style: italic;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background-color: #1a1f2e;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-body h2 {
            color: #f0a500;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3343;
        }
        .article-body h3 {
            color: #4d9fff;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #d1d9e8;
        }
        .article-body strong {
            color: #fff;
            font-weight: 700;
        }
        .article-body em {
            color: #a3d977;
            font-style: italic;
        }
        .highlight-box {
            background-color: #252d3d;
            border-left: 5px solid #e44d26;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .map-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            border: 3px solid #2a3343;
            transition: transform 0.4s, box-shadow 0.4s;
        }
        .map-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #1a1f2e;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #2a3343;
        }
        .widget h3 {
            color: #f0a500;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            margin-top: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            background-color: #252d3d;
            border: 1px solid #3a4559;
            border-radius: 6px 0 0 6px;
            color: #fff;
        }
        .search-form button {
            background-color: #e44d26;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ff6b3d;
        }
        .rating-widget .stars {
            display: flex;
            gap: 8px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #3a4559;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.2);
        }
        .rating-form button,
        .comment-form button {
            width: 100%;
            padding: 12px;
            background-color: #2a7de1;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background-color: #3d8ef7;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            background-color: #252d3d;
            border: 1px solid #3a4559;
            border-radius: 6px;
            color: #fff;
            resize: vertical;
            margin-top: 10px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 4rem 0 2rem;
            padding: 2.5rem;
            background-color: #151a24;
            border-radius: 12px;
        }
        .web-link {
            background-color: #1a1f2e;
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #e44d26;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.4);
        }
        .web-link a {
            color: #4d9fff;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #7ab8ff;
            text-decoration: underline;
        }
        .site-footer {
            background-color: #0d1117;
            padding: 3rem 0 2rem;
            text-align: center;
            border-top: 3px solid #2a3343;
        }
        .copyright {
            color: #8a94a6;
            font-size: 0.95rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3343;
        }
        .tag {
            display: inline-block;
            background-color: #2a3343;
            color: #b0b7c3;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(90deg, #e44d26, transparent);
            margin: 2.5rem 0;
            border: none;
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2.2rem;
            }
            .article-body {
                padding: 1.5rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
