        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0d223f; 
            --secondary: #c41e3a; 
            --accent: #ffd700; 
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--accent);
        }
        .search-bar {
            display: flex;
            flex: 0 1 400px;
        }
        .search-bar input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        .search-bar button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-bar button:hover {
            background: #a0182e;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        nav {
            background: rgba(0,0,0,0.9);
            padding: 0.8rem 0;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            justify-content: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: var(--transition);
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        article {
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
        .article-header {
            margin-bottom: 2.5rem;
        }
        .article-header h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            border-bottom: 1px solid #dee2e6;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
        }
        .featured-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .content h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
        }
        .content h4 {
            font-size: 1.3rem;
            color: #495057;
            margin: 1.8rem 0 0.8rem;
        }
        .content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .content emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .content strong {
            color: var(--primary);
            font-weight: 700;
        }
        .content blockquote {
            border-left: 4px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #555;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .content ul, .content ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .content li {
            margin-bottom: 0.5rem;
        }
        .internal-link {
            color: var(--secondary);
            text-decoration: underline;
            font-weight: 600;
        }
        .internal-link:hover {
            text-decoration: none;
            color: #a0182e;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--primary), #1a3a6a);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 5px solid var(--accent);
        }
        .stats-box h3 {
            color: var(--accent);
            margin-top: 0;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-radius: 6px;
            border: 1px dashed var(--accent);
            margin: 1.5rem 0;
        }
        aside {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
        }
        .related-links a {
            color: var(--dark);
            text-decoration: none;
            display: block;
            padding: 0.6rem;
            border-radius: 4px;
            transition: var(--transition);
            border-left: 3px solid transparent;
        }
        .related-links a:hover {
            background: white;
            border-left-color: var(--secondary);
            padding-left: 1rem;
        }
        .rating-widget, .comment-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form div {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .stars {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent);
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            background: #a0182e;
        }
        footer {
            background: var(--primary);
            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 h4 {
            color: var(--accent);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 1.5rem;
        }
        friend-link h4 {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        friend-link ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        friend-link a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            transition: var(--transition);
        }
        friend-link a:hover {
            background: var(--secondary);
        }
        .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;
            }
            aside {
                position: static;
            }
            .article-header h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .search-bar {
                order: 3;
                flex: 1 1 100%;
                margin-top: 1rem;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links a {
                display: block;
                padding: 1rem;
            }
            .featured-image {
                height: 300px;
            }
            .content h2 {
                font-size: 1.8rem;
            }
            .content h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .article-header h1 {
                font-size: 1.9rem;
            }
            .meta {
                flex-direction: column;
                gap: 0.5rem;
            }
        }
