        * {
            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, #0a2e1d 0%, #1a472a 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 46, 29, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid #d4af37;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1.5px;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            color: #ffd700;
            transform: scale(1.05);
        }
        .my-logo span {
            color: #2ecc71;
        }
        nav {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            background: rgba(212, 175, 55, 0.2);
            color: #d4af37;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #d4af37;
            border-radius: 2px;
            transition: 0.3s;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(26, 71, 42, 0.8);
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #2ecc71;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            background: #fff;
            margin: 20px auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }
        .hero {
            background: linear-gradient(rgba(10, 46, 29, 0.85), rgba(10, 46, 29, 0.9)), url('https://images.unsplash.com/photo-1591799264318-7e6ef8ddb7ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid #d4af37;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            color: #ffd700;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ecf0f1;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px;
        }
        article {
            font-size: 1.1rem;
        }
        article h2 {
            color: #1a472a;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #d4af37;
            font-size: 2.2rem;
        }
        article h3 {
            color: #2e8b57;
            margin: 30px 0 15px;
            font-size: 1.8rem;
        }
        article h4 {
            color: #3cb371;
            margin: 25px 0 12px;
            font-size: 1.5rem;
        }
        article p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        article strong {
            color: #1a472a;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(120deg, #d4ffd4 0%, #a5d6a7 100%);
            border-left: 5px solid #2ecc71;
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
        }
        .inline-link {
            color: #1a472a;
            text-decoration: none;
            border-bottom: 2px dashed #2ecc71;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        .inline-link:hover {
            color: #d4af37;
            border-bottom-style: solid;
            background: rgba(46, 204, 113, 0.1);
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 3px solid #d4af37;
        }
        .update-time {
            display: inline-block;
            background: #1a472a;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 20px 0;
        }
        aside {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #d4af37;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #1a472a;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #2ecc71;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: #2ecc71;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #27ae60;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #d4af37;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: #1a472a;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #2ecc71;
        }
        footer {
            background: #0a2e1d;
            color: #ecf0f1;
            padding: 50px 20px 30px;
            margin-top: 50px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-links a {
            display: block;
            color: #bdc3c7;
            text-decoration: none;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #2ecc71;
        }
        friend-link {
            display: block;
            background: rgba(212, 175, 55, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin: 10px 0;
            border-left: 3px solid #d4af37;
        }
        friend-link a {
            color: #2ecc71;
            text-decoration: none;
            font-weight: 600;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #2c3e50;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px;
            }
            aside {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 10px;
                margin-top: 20px;
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .hero {
                padding: 50px 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-grid {
                padding: 20px;
            }
            article h2 {
                font-size: 1.6rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article section {
            animation: fadeIn 0.8s ease-out;
        }
        @media print {
            header, aside, footer, .search-form, .comment-form, .rating-widget {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            main {
                box-shadow: none;
                margin: 0;
            }
            .hero {
                color: black;
                background: white !important;
                padding: 20px 0;
                border: none;
            }
            .hero h1 {
                color: black;
                text-shadow: none;
            }
        }
