        * { 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;
        }
        img { max-width: 100%; height: auto; display: block; }
        :root {
            --primary: #003594; 
            --secondary: #c60c30; 
            --accent: #ffcc00; 
            --light: #f1f3f5;
            --dark: #212529;
            --shadow: 0 5px 15px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary), #001b4d);
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover { color: white; transform: scale(1.03); }
        .my-logo i { font-size: 2rem; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
        }
        .main-nav a:hover,
        .main-nav a.active { border-bottom-color: var(--accent); color: var(--accent); }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: var(--transition);
        }
        .breadcrumb {
            background-color: var(--light);
            padding: 1rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        main { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: var(--shadow); }
        aside { align-self: start; }
        h1, h2, h3, h4 { color: var(--primary); margin-top: 2rem; margin-bottom: 1rem; line-height: 1.3; }
        h1 { font-size: 2.8rem; border-left: 6px solid var(--accent); padding-left: 1rem; }
        h2 { font-size: 2.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--light); }
        h3 { font-size: 1.8rem; color: var(--secondary); }
        h4 { font-size: 1.4rem; }
        p { margin-bottom: 1.5rem; text-align: justify; }
        .lead {
            font-size: 1.3rem;
            color: var(--dark);
            background: linear-gradient(to right, var(--light), transparent);
            padding: 1.5rem;
            border-radius: 8px;
            font-weight: 500;
            margin: 2rem 0;
        }
        .highlight {
            background-color: #fff9db;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 53, 148, 0.3);
            color: white;
        }
        .search-form, .comment-form, .rating-form {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .form-group { margin-bottom: 1rem; }
        label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
        input, select, textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-family: inherit;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 53, 148, 0.1);
        }
        .stars { color: var(--accent); font-size: 1.5rem; cursor: pointer; }
        .stars:hover { color: #e6b800; }
        .article-img {
            width: 100%;
            border-radius: 12px;
            margin: 2.5rem auto;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        .sidebar-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .widget-title {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #ddd;
        }
        .link-list { list-style: none; }
        .link-list li { margin-bottom: 0.8rem; }
        .link-list a {
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .link-list a:hover {
            background-color: var(--light);
            color: var(--secondary);
            padding-left: 1rem;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .footer-section h3 { color: var(--accent); border: none; }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link a {
            color: #ccc;
            text-decoration: none;
            display: block;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            .container { grid-template-columns: 1fr; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
        }
        @media (max-width: 768px) {
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: var(--transition);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            .hamburger { display: flex; }
            .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
            .hamburger.active span:nth-child(2) { opacity: 0; }
            .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
            .header-container { padding: 0.5rem 1rem; }
            .container, .breadcrumb { padding: 0 1rem; }
            main { padding: 1.5rem; }
        }
