        * {
            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.8;
            color: #e0d3b8;
            background-color: #0a0a0a;
            background-image: linear-gradient(to bottom, #1a1200 0%, #0a0a0a 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffea00;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid #3a2c0f;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #d4af37, #b8860b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-size: 1.1rem;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover {
            border-bottom-color: #d4af37;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #1a1508;
            font-size: 0.9rem;
            border-bottom: 1px solid #3a2c0f;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 0.5rem;
            color: #8b7355;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            min-height: 200vh; 
        }
        article {
            background-color: rgba(26, 21, 8, 0.7);
            border-radius: 8px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #3a2c0f;
        }
        aside {
            background-color: rgba(26, 21, 8, 0.7);
            border-radius: 8px;
            padding: 2rem;
            border: 1px solid #3a2c0f;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #d4af37;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.5rem;
            border-bottom: 3px solid #b8860b;
            padding-bottom: 1rem;
            text-align: center;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #b8860b;
            padding-left: 1rem;
        }
        h3 {
            font-size: 2rem;
            color: #e6d5a8;
        }
        h4 {
            font-size: 1.5rem;
            color: #f0e6d2;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.2rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.5rem;
            color: #f5e8c8;
            font-weight: 300;
            background: rgba(212, 175, 55, 0.1);
            padding: 1.5rem;
            border-radius: 5px;
            border-left: 4px solid #d4af37;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.15);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        blockquote {
            border-left: 4px solid #8b7355;
            padding-left: 2rem;
            margin: 2.5rem;
            font-style: italic;
            color: #c9b79c;
            background: rgba(139, 115, 85, 0.1);
            padding: 1.5rem 2rem;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #3a2c0f;
            margin: 3rem auto;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.008);
            box-shadow: 0 20px 35px rgba(212, 175, 55, 0.3);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #8b7355;
            margin-top: 0.5rem;
            font-size: 1rem;
        }
        .interactive-module {
            background: linear-gradient(145deg, #1a1508, #0f0c04);
            border: 1px solid #5d4a1f;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: #d4af37;
        }
        .module-title i {
            font-size: 1.8rem;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        input, textarea, select {
            padding: 1rem;
            background-color: rgba(10, 10, 10, 0.7);
            border: 1px solid #5d4a1f;
            border-radius: 5px;
            color: #e0d3b8;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        button, .btn {
            background: linear-gradient(to bottom, #d4af37, #b8860b);
            color: #1a1200;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to bottom, #ffea00, #d4af37);
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(212, 175, 55, 0.4);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star:hover ~ .star {
            color: #d4af37;
        }
        .star.active {
            color: #ffea00;
        }
        .related-links {
            background-color: rgba(26, 21, 8, 0.9);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            columns: 2;
            gap: 2rem;
        }
        .related-links li {
            margin-bottom: 1rem;
            break-inside: avoid;
        }
        .related-links a::before {
            content: "🔗";
            margin-right: 0.8rem;
            font-size: 0.9rem;
        }
        footer {
            background-color: #0a0801;
            border-top: 1px solid #3a2c0f;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            border-bottom: 1px dashed #5d4a1f;
            padding-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #3a2c0f;
            color: #8b7355;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            .my-logo {
                order: 0;
                font-size: 2.2rem;
            }
            .main-nav {
                display: none;
                order: 2;
                width: 100%;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .content-wrapper, article {
                padding: 1.5rem;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .lead {
                font-size: 1.3rem;
            }
            .related-links ul {
                columns: 1;
            }
            .footer-container {
                flex-direction: column;
            }
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #8b7355;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px dashed #5d4a1f;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
