        * {
            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.7;
            color: #333;
            background-color: #f8f9fa;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        ul, ol {
            list-style-position: inside;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: #1a365d;
        }
        h1 {
            font-size: 2.8rem;
            border-left: 6px solid #f59e0b;
            padding-left: 1rem;
            margin-top: 2rem;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 3px solid #e2e8f0;
            padding-bottom: 0.5rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #2d3748;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #4a5568;
        }
        .highlight {
            background-color: #fffbeb;
            border-left: 4px solid #f59e0b;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fbbf24;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            color: #f59e0b;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a:hover {
            color: #fbbf24;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: 0.3s;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #2d3748;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 1rem 2rem;
            border-bottom: 1px solid #4a5568;
        }
        .nav-mobile a:hover {
            background-color: #4a5568;
            color: #fbbf24;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
        }
        .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: #718096;
        }
        .breadcrumb a:hover {
            color: #f59e0b;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            color: #718096;
            font-size: 0.95rem;
        }
        .article-meta i {
            margin-right: 5px;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background-color: #f7fafc;
            color: #4a5568;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e2e8f0;
            color: #1a365d;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex: 1;
            padding: 0.9rem 1rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-input:focus {
            border-color: #f59e0b;
        }
        .search-btn {
            background-color: #f59e0b;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #d97706;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            direction: rtl; 
        }
        .star {
            font-size: 2rem;
            color: #cbd5e0;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star:hover ~ .star {
            color: #fbbf24;
        }
        .rating-form input[type="radio"] {
            display: none;
        }
        .rating-form input[type="radio"]:checked ~ .star {
            color: #f59e0b;
        }
        .rating-form button {
            background-color: #1a365d;
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .rating-form button:hover {
            background-color: #2d3748;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #4a5568;
        }
        .form-group input,
        .form-group textarea {
            padding: 0.9rem;
            border: 2px solid #cbd5e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f59e0b;
        }
        .comment-form button {
            background-color: #10b981;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #059669;
        }
        .footer-links {
            background-color: #edf2f7;
            padding: 3rem 0;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: white;
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .web-link a {
            color: #2d3748;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .web-link a:hover {
            color: #f59e0b;
        }
        .web-link a::before {
            content: '🚗';
        }
        .site-footer {
            background-color: #1a365d;
            color: #cbd5e0;
            padding: 3rem 0 2rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 2rem;
        }
        .copyright {
            font-size: 0.95rem;
            color: #a0aec0;
            border-top: 1px solid #2d3748;
            padding-top: 2rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .nav-desktop { display: none; }
            .hamburger { display: flex; }
            .article-content { padding: 1.5rem; }
            .main-content { padding: 1.5rem 0; }
            .widget { padding: 1.2rem; }
        }
        .tip-box {
            background-color: #e6fffa;
            border: 2px solid #81e6d9;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .tip-title {
            color: #285e61;
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .keyboard-key {
            display: inline-block;
            background-color: #2d3748;
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 5px;
            font-family: monospace;
            font-weight: bold;
            margin: 0 3px;
            box-shadow: 0 3px 0 #1a202c;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
