        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #C00A1E;
            --secondary-color: #0A1EC0;
            --accent-color: #FFD700;
            --dark-color: #111;
            --light-color: #F5F5F5;
            --gray-color: #333;
            --text-color: #222;
            --text-light: #666;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-heading: 'Arial Black', 'Franklin Gothic Heavy', sans-serif;
            --transition: all 0.3s ease;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.7;
            color: var(--text-color);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-color) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            color: white;
            transform: scale(1.05);
        }
        .my-logo i {
            color: var(--primary-color);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .nav-links a:hover {
            background-color: var(--primary-color);
            color: var(--accent-color);
        }
        .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: #eee;
            padding: 0.8rem 20px;
            max-width: 1200px;
            margin: 0 auto;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background-color: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--dark-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            border-bottom: 4px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary-color);
            padding-left: 10px;
            border-left: 5px solid var(--primary-color);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--gray-color);
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-light);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--gray-color);
            background-color: #f0f0f0;
            padding: 1.2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-color);
        }
        .article-img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            margin-top: -1rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        .content-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--primary-color);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--secondary-color);
            border-bottom-style: solid;
            background-color: #f9f9ff;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong, b {
            color: var(--primary-color);
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        blockquote {
            border-left: 4px solid var(--secondary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--gray-color);
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        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);
        }
        .widget-title {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-family: inherit;
        }
        .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, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-color);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            resize: vertical;
        }
        .form-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .form-btn:hover {
            background-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .related-links {
            list-style: none;
            margin-left: 0;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        .related-links a {
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .related-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .related-links i {
            color: var(--secondary-color);
        }
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 20px 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .footer-links h3 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .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: 1.5rem 0;
        }
        friend-link h3 {
            color: var(--accent-color);
            margin-top: 0;
        }
        friend-link a {
            color: white;
            font-weight: bold;
            text-decoration: none;
            border-bottom: 1px solid var(--accent-color);
        }
        friend-link a:hover {
            color: var(--accent-color);
        }
        .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) {
            main {
                grid-template-columns: 1fr;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--dark-color);
                padding: 1rem;
                box-shadow: var(--shadow);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 20px;
            }
            article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary-color), transparent);
            margin: 2.5rem 0;
        }
        .text-center {
            text-align: center;
        }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
