        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a237e;
            --secondary-color: #d50000;
            --accent-color: #ffab00;
            --dark-color: #0d1430;
            --light-color: #f5f5f5;
            --text-color: #333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
            --max-width: 1200px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #f9f9f9;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-color);
        }
        header {
            background-color: var(--dark-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        .logo i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 2rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: var(--accent-color);
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-color);
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.5rem;
            border-radius: var(--border-radius);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background-color: var(--light-color);
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--text-light);
        }
        main {
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        article {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        article h1 {
            color: var(--dark-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        article .meta {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 1rem;
        }
        article h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-color);
        }
        article h3 {
            color: var(--dark-color);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        article h4 {
            color: var(--text-color);
            font-size: 1.2rem;
            margin: 1.2rem 0 0.6rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        article strong {
            color: var(--primary-color);
            font-weight: 600;
        }
        article em {
            color: var(--secondary-color);
            font-style: italic;
        }
        article .highlight-box {
            background-color: #e8f4fd;
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .featured-image {
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: var(--secondary-color);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent-color);
        }
        .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
        }
        .rating-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover {
            background-color: var(--secondary-color);
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
        }
        .comment-form textarea {
            resize: vertical;
            min-height: 120px;
        }
        .comment-form button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: var(--primary-color);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        .related-links a {
            color: var(--text-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .related-links a:hover {
            color: var(--secondary-color);
        }
        .related-links i {
            color: var(--accent-color);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin-top: 1rem;
        }
        friend-link h4 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        friend-link li {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: var(--transition);
        }
        friend-link li:hover {
            background-color: rgba(255, 171, 0, 0.2);
        }
        friend-link a {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
        }
        @media (max-width: 768px) {
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            article {
                padding: 1rem;
            }
            article h1 {
                font-size: 1.7rem;
            }
            article h2 {
                font-size: 1.5rem;
            }
            .logo a {
                font-size: 1.5rem;
            }
        }
