        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --gray-color: #95a5a6;
            --success-color: #27ae60;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --max-width: 1200px;
            --header-height: 70px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: var(--accent-color);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav li {
            margin-left: 30px;
        }
        nav a {
            font-weight: 600;
            color: var(--dark-color);
            padding: 5px 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f1f1f1;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin: 0 10px;
            color: var(--gray-color);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary-color), #1a2530);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            box-shadow: var(--shadow);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-form input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #c0392b;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        article {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            color: var(--primary-color);
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--secondary-color);
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        strong {
            color: var(--dark-color);
            font-weight: 700;
        }
        em {
            color: var(--accent-color);
            font-style: italic;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 25px;
            border-left: 5px solid #f1c40f;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .pull-quote {
            font-size: 1.4rem;
            color: var(--secondary-color);
            text-align: center;
            padding: 30px;
            font-style: italic;
            border-top: 3px solid var(--light-color);
            border-bottom: 3px solid var(--light-color);
            margin: 40px 0;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 10px;
        }
        .article-image {
            margin: 30px auto;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        aside {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-color);
        }
        .related-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        .rating-widget, .comment-widget {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: var(--border-radius);
            margin-top: 40px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: var(--gray-color);
            cursor: pointer;
        }
        .stars .active {
            color: #f1c40f;
        }
        input, textarea, select {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }
        button, .btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
        }
        button:hover, .btn:hover {
            background-color: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-accent {
            background-color: var(--accent-color);
        }
        .btn-accent:hover {
            background-color: #c0392b;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
        }
        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #bdc3c7;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-bottom: 10px;
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            nav ul {
                position: fixed;
                top: var(--header-height);
                left: -100%;
                width: 80%;
                height: calc(100vh - var(--header-height));
                background-color: white;
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: var(--transition);
                box-shadow: 5px 0 15px rgba(0,0,0,0.1);
                z-index: 999;
            }
            nav ul.active {
                left: 0;
            }
            nav li {
                margin: 0 0 25px 0;
            }
            .hamburger {
                display: block;
            }
            article {
                padding: 25px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .search-form {
                flex-direction: column;
                border-radius: var(--border-radius);
            }
            .search-form input, .search-form button {
                width: 100%;
                border-radius: 0;
            }
            .rating-widget, .comment-widget {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
