        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #1a365d; 
            --secondary: #c53030; 
            --accent: #ecc94b; 
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #a0aec0;
            --transition: all 0.3s ease;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --radius: 8px;
            --max-width: 1200px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        .site-header {
            background: var(--primary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: white;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: white;
            font-weight: 600;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:hover {
            color: var(--accent);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .search-bar {
            display: flex;
            max-width: 400px;
            margin: 20px auto;
        }
        .search-bar input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid var(--gray);
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
        }
        .search-bar button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-bar button:hover {
            background: var(--primary);
        }
        .breadcrumb {
            background: #edf2f7;
            padding: 12px 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 5px;
        }
        .article-header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, var(--primary), #2d3748);
            color: white;
            margin-bottom: 40px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--accent);
        }
        .article-header .meta {
            color: var(--gray);
            font-size: 0.95rem;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: white;
            padding: 25px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            align-self: start;
        }
        h1, h2, h3, h4 {
            color: var(--primary);
            margin-top: 2em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; border-left: 5px solid var(--secondary); padding-left: 15px; }
        h3 { font-size: 1.6rem; color: var(--dark); }
        h4 { font-size: 1.3rem; color: var(--dark); }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #ecc94b30, #c5303030);
            border-left: 4px solid var(--accent);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .featured-img {
            margin: 30px auto;
            text-align: center;
        }
        .featured-img figcaption {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 8px;
        }
        .related-links {
            background: #f8f9fa;
            padding: 20px;
            border-radius: var(--radius);
            margin: 30px 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .related-links li {
            background: white;
            padding: 10px 15px;
            border-radius: 50px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .related-links a {
            color: var(--primary);
        }
        .related-links a:hover {
            color: var(--secondary);
        }
        .rating-module, .comments-module {
            background: #f8f9fa;
            padding: 30px;
            border-radius: var(--radius);
            margin-top: 50px;
        }
        .rating-module h3, .comments-module h3 {
            margin-top: 0;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
        }
        .stars i {
            color: var(--gray);
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent);
        }
        form {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary);
        }
        button[type="submit"] {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: var(--radius);
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            justify-self: start;
        }
        button[type="submit"]:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .site-footer {
            background: var(--primary);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-col h3 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 10px;
        }
        .footer-col a {
            color: #cbd5e0;
        }
        .footer-col a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: var(--radius);
            margin: 10px 0;
            border-left: 3px solid var(--accent);
        }
        friend-link a {
            color: var(--accent);
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hamburger {
                display: block;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .article-header {
                padding: 30px 15px;
            }
            .main-content {
                padding: 25px;
            }
            .related-links ul {
                flex-direction: column;
            }
        }
