        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c2b1d 0%, #1a472a 30%, #2d5a3a 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #4CAF50;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #8BC34A;
            text-shadow: 0 0 8px rgba(139, 195, 74, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 35, 20, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid #5d9c47;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(to right, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 30px;
            height: 3px;
            background: #ffcc00;
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav ul li a:hover, nav ul li a.active {
            background: rgba(93, 156, 71, 0.3);
            color: #ffcc00;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(20, 50, 30, 0.8);
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb ul li {
            color: #aaa;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .breadcrumb ul li:not(:last-child)::after {
            content: '›';
            color: #5d9c47;
        }
        .breadcrumb a {
            color: #ccc;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        article {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border-left: 8px solid #5d9c47;
        }
        aside {
            background: rgba(25, 45, 30, 0.9);
            border-radius: 15px;
            padding: 25px;
            color: #e0e0e0;
            align-self: start;
            position: sticky;
            top: 150px;
        }
        h1 {
            font-size: 3.2rem;
            color: #1a472a;
            margin-bottom: 25px;
            line-height: 1.2;
            border-bottom: 3px dashed #5d9c47;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2d5a3a;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ff9900;
        }
        h3 {
            font-size: 1.8rem;
            color: #3d6a4a;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #5d9c47;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #222;
            font-weight: 500;
            background: #f1f8e9;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #4CAF50;
        }
        .highlight {
            background: linear-gradient(120deg, #e1f5fe 0%, #b3e5fc 100%);
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: bold;
        }
        .search-box, .comment-form, .rating-form {
            background: #f9f9f9;
            border: 2px solid #ddd;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
            color: #1a472a;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #5d9c47;
            box-shadow: 0 0 0 3px rgba(93, 156, 71, 0.2);
        }
        button {
            background: linear-gradient(to bottom, #5d9c47, #3d7a2d);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            background: linear-gradient(to bottom, #6cac56, #4d8a3d);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(93, 156, 71, 0.4);
        }
        .star-rating {
            direction: rtl;
            display: inline-flex;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            transition: color 0.3s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .featured-image {
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 5px solid #5d9c47;
            max-width: 800px;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.7s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background: #f1f1f1;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #3a5a40;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .sidebar-widget h4 {
            color: #ffcc00;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-links {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar-links li::before {
            content: '▶';
            color: #5d9c47;
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        footer {
            background: #0a1f12;
            color: #b0b0b0;
            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-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 12px 15px;
            margin-bottom: 10px;
            border-radius: 6px;
            border-left: 4px solid #5d9c47;
            transition: all 0.3s;
        }
        friend-link:hover {
            background: rgba(93, 156, 71, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a3a2e;
            font-size: 0.9rem;
            color: #888;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: flex;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(10, 35, 20, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 2px solid #5d9c47;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                width: 100%;
            }
            nav ul li a {
                padding: 15px;
                justify-content: center;
            }
            .breadcrumb ul {
                font-size: 0.9rem;
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .lead {
                font-size: 1.1rem;
            }
        }
