        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --primary-accent: #ff5500;
            --secondary-accent: #00a8ff;
            --light-bg: #f8f9fa;
            --dark-text: #222222;
            --light-text: #f1f1f1;
            --gray-border: #e0e0e0;
            --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition-fast: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--secondary-accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: var(--light-text);
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-accent);
            transition: width var(--transition-fast);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            padding: 1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            color: var(--light-text);
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--primary-accent);
            padding-left: 1rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin: 0 8px;
            color: #6c757d;
        }
        .breadcrumb a {
            color: #495057;
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        article h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: var(--primary-dark);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--gray-border);
        }
        article h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #333;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.75rem;
            background-color: #f8f9fa;
            color: #666;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-left: 5px solid var(--secondary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box h4 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--card-shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-accent);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 2px solid var(--gray-border);
            border-right: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color var(--transition-fast);
        }
        .search-form button:hover {
            background-color: #e04a00;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .rating-widget label {
            font-weight: 600;
        }
        .stars {
            display: flex;
            gap: 0.25rem;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars:hover .star {
            color: #ffc107;
        }
        .star:hover,
        .star:hover ~ .star {
            color: #ffc107;
        }
        .star.active {
            color: #ffc107;
        }
        .rating-widget select,
        .rating-widget textarea {
            padding: 0.75rem;
            border: 1px solid var(--gray-border);
            border-radius: 5px;
            font-size: 1rem;
        }
        .rating-widget button {
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color var(--transition-fast);
        }
        .rating-widget button:hover {
            background-color: #0097e6;
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--gray-border);
        }
        .comment-form {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .comment-form h3 {
            margin-bottom: 1rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--gray-border);
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-list .comment {
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray-border);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            color: #666;
        }
        .footer-links {
            background-color: #2d3748;
            color: #cbd5e0;
            padding: 3rem 0 2rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            padding: 0.75rem;
            background-color: #4a5568;
            border-radius: 5px;
            transition: transform var(--transition-fast), background-color var(--transition-fast);
        }
        .web-link:hover {
            transform: translateY(-3px);
            background-color: var(--primary-accent);
        }
        .web-link a {
            color: #e2e8f0;
            display: block;
        }
        .site-footer {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: var(--light-text);
            transition: color var(--transition-fast);
        }
        .social-links a:hover {
            color: var(--primary-accent);
        }
        .copyright {
            font-size: 0.9rem;
            color: #a0aec0;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.7rem;
            }
            .main-content {
                gap: 2rem;
            }
        }
