        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-dark: #0a2e36;
            --primary-green: #1a936f;
            --accent-gold: #d4af37;
            --accent-copper: #b87333;
            --light-bg: #f5f1e6;
            --dark-text: #2c3e50;
            --light-text: #ecf0f1;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--dark-text);
            background-color: var(--light-bg);
            background-image: linear-gradient(to bottom, rgba(245, 241, 230, 0.9), rgba(245, 241, 230, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f5f1e6"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23d4af37" stroke-width="0.5"/></svg>');
        }
        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-copper);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark), #1a3a45);
            color: var(--light-text);
            padding: 1rem 5%;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Palatino Linotype', 'Book Antiqua', serif;
            font-size: 2.5rem;
            font-weight: bold;
            background: linear-gradient(to right, var(--accent-gold), #f7ef8a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: var(--light-text);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
        }
        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 5%;
            background-color: #e8f4f1;
            font-size: 0.9rem;
            border-bottom: 1px solid #d1e7dd;
        }
        .breadcrumb a {
            color: var(--primary-green);
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        main {
            background-color: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        article > * + * {
            margin-top: 1.5rem;
        }
        h1 {
            color: var(--primary-dark);
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1rem;
            margin-bottom: 2rem;
        }
        h2 {
            color: var(--primary-green);
            font-size: 2rem;
            margin-top: 3rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }
        h3 {
            color: var(--accent-copper);
            font-size: 1.6rem;
            margin-top: 2rem;
        }
        h4 {
            color: var(--primary-dark);
            font-size: 1.3rem;
            margin-top: 1.5rem;
        }
        p, li {
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary-dark);
            background-color: #f0f9f5;
            padding: 1.5rem;
            border-left: 5px solid var(--primary-green);
            border-radius: var(--border-radius);
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-gold);
            margin: 1.5rem 0;
        }
        .info-box {
            background-color: #e8f4f8;
            border-left: 5px solid #3498db;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
        }
        .float-img {
            float: right;
            margin: 1rem 0 1rem 2rem;
            max-width: 400px;
            box-shadow: var(--shadow);
        }
        @media (max-width: 768px) {
            .float-img {
                float: none;
                margin: 1rem auto;
                display: block;
            }
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-copper);
            margin: 2rem 0;
            font-size: 1.2rem;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--primary-dark);
            margin-top: 1rem;
        }
        ul, ol {
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: var(--primary-dark);
            font-weight: 700;
        }
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
            margin: 3rem 0;
        }
        aside {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-top: 0;
            color: var(--primary-dark);
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--border-radius);
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 3px rgba(26, 147, 111, 0.2);
        }
        button, .btn {
            background: linear-gradient(to bottom, var(--primary-green), #147a5c);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, #147a5c, #0d5c46);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .stars i {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        footer {
            background-color: var(--primary-dark);
            color: var(--light-text);
            padding: 3rem 5% 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: #bdc3c7;
        }
        friend-link a:hover {
            color: white;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 5%;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 2rem;
            }
            .container {
                padding: 0 3%;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        main, aside {
            animation: fadeIn 0.8s ease-out;
        }
