        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #c41e3a; 
            --secondary: #2d5016; 
            --accent: #f4b942; 
            --light: #fff9f0;
            --dark: #1a1a2e;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo i {
            color: var(--accent);
        }
        .my-logo span {
            background: linear-gradient(to right, var(--accent), #ff9a3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            border-radius: 2px;
            transition: var(--transition);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 12px 20px;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: #aaa;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--accent);
            padding-left: 20px;
        }
        h2 {
            color: var(--secondary);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 10px;
            border-bottom: 2px dashed #eee;
        }
        h3 {
            color: var(--dark);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #555;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--dark);
            font-weight: 500;
            background: #fff9e6;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent);
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffecb3 0%, #ffecb3 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-img {
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .feature-img img {
            transition: transform 0.5s ease;
        }
        .feature-img img:hover {
            transform: scale(1.03);
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-top: 0;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .search-box button:hover {
            background: var(--secondary);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        .rating-widget .stars i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #ffc107;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #eee;
            border-radius: var(--border-radius);
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        footer {
            background: var(--dark);
            color: #ccc;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-widget h4 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-widget h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #aaa;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            border-left: 4px solid var(--accent);
        }
        friend-link a {
            color: #fff;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #888;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hamburger {
                display: flex;
                position: absolute;
                right: 20px;
                top: 25px;
            }
            nav {
                width: 100%;
                display: none;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links a {
                display: block;
                padding: 15px 0;
            }
            .nav-active {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            article, .sidebar-widget {
                padding: 1.8rem;
            }
        }
        @media print {
            header, nav, aside, .search-box, .comment-form, footer {
                display: none;
            }
            article {
                box-shadow: none;
                padding: 0;
            }
        }
