        * { 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: #e0d3b8;
            background-color: #0a0a0a;
            background-image: linear-gradient(to bottom, #1a1200 0%, #0a0a0a 70%);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a { color: #c8a97e; text-decoration: none; transition: color 0.3s ease, border-color 0.3s ease; }
        a:hover { color: #f0d9a8; text-shadow: 0 0 8px rgba(200, 169, 126, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid #3a2e1b;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.8rem;
            font-weight: bold;
            color: #c8a97e;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px #000;
            background: linear-gradient(45deg, #c8a97e, #f0d9a8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover { opacity: 0.9; }
        .main-nav ul { display: flex; list-style: none; gap: 30px; }
        .main-nav a {
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .main-nav a:hover, .main-nav a.active { border-bottom-color: #c8a97e; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #c8a97e; background: none; border: none; }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #9c8c63; background-color: rgba(26, 18, 0, 0.3); }
        .breadcrumb a { margin: 0 5px; }
        .breadcrumb span { margin: 0 5px; color: #6b5c3d; }
        .search-module { margin: 25px 0; background: rgba(58, 46, 27, 0.3); padding: 20px; border-radius: 8px; border: 1px solid #4a3c22; }
        .search-form { display: flex; max-width: 600px; }
        .search-form input[type="search"] {
            flex-grow: 1;
            padding: 15px 20px;
            background: #1a1200;
            border: 1px solid #6b5c3d;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #e0d3b8;
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 25px;
            background: #c8a97e;
            color: #1a1200;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #f0d9a8; }
        .main-content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        article { background: rgba(26, 18, 0, 0.5); padding: 40px; border-radius: 10px; border: 1px solid #3a2e1b; }
        h1 { font-size: 3.2rem; color: #f0d9a8; margin-bottom: 25px; line-height: 1.2; border-bottom: 3px solid #c8a97e; padding-bottom: 15px; text-align: center; }
        h2 { font-size: 2.4rem; color: #d4b483; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 1px dashed #6b5c3d; }
        h3 { font-size: 1.8rem; color: #c8a97e; margin: 30px 0 15px; }
        h4 { font-size: 1.4rem; color: #b8a47e; margin: 25px 0 10px; }
        p { margin-bottom: 1.5em; font-size: 1.1rem; text-align: justify; }
        .lead { font-size: 1.3rem; font-weight: 300; color: #f0d9a8; text-align: center; font-style: italic; margin-bottom: 30px; }
        .highlight { background-color: rgba(200, 169, 126, 0.1); border-left: 4px solid #c8a97e; padding: 20px; margin: 25px 0; }
        em { font-style: italic; color: #f0d9a8; }
        strong { font-weight: bold; color: #d4b483; }
        .inline-link { border-bottom: 1px dotted #c8a97e; }
        .inline-link:hover { border-bottom-style: solid; }
        .content-image {
            margin: 35px auto;
            border: 5px solid #3a2e1b;
            border-radius: 5px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            max-width: 80%;
        }
        .img-caption { text-align: center; font-style: italic; color: #9c8c63; margin-top: 10px; font-size: 0.95rem; }
        .sidebar { font-size: 0.95rem; }
        .sidebar-widget {
            background: rgba(26, 18, 0, 0.5);
            border: 1px solid #3a2e1b;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }
        .sidebar h3 { font-size: 1.4rem; margin-top: 0; }
        .related-links ul { list-style: none; padding-left: 0; }
        .related-links li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px dotted #4a3c22; }
        .related-links li:last-child { border-bottom: none; }
        .user-interaction { margin-top: 50px; }
        .interaction-box {
            background: rgba(58, 46, 27, 0.3);
            border: 1px solid #4a3c22;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }
        .interaction-box h3 { margin-top: 0; }
        .rating-stars { margin: 15px 0; font-size: 1.8rem; color: #6b5c3d; cursor: pointer; }
        .rating-stars .star { transition: color 0.2s, transform 0.2s; }
        .rating-stars .star:hover, .rating-stars .star.active { color: #ffc107; transform: scale(1.1); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #d4b483; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            background: #1a1200;
            border: 1px solid #6b5c3d;
            border-radius: 5px;
            color: #e0d3b8;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea { min-height: 150px; resize: vertical; }
        .submit-btn {
            background: #c8a97e;
            color: #1a1200;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover { background: #f0d9a8; }
        .site-footer {
            background-color: #1a1200;
            border-top: 2px solid #3a2e1b;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-logo { font-size: 2rem; margin-bottom: 15px; }
        friend-link {
            display: block;
            margin: 8px 0;
            padding: 8px 12px;
            background: rgba(58, 46, 27, 0.4);
            border-radius: 4px;
            transition: background 0.3s, padding-left 0.3s;
        }
        friend-link:hover { background: rgba(200, 169, 126, 0.2); padding-left: 20px; }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #3a2e1b;
            color: #9c8c63;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content-area { grid-template-columns: 1fr; }
            .sidebar { order: -1; }
        }
        @media (max-width: 768px) {
            .header-inner { flex-wrap: wrap; }
            .main-nav { display: none; width: 100%; order: 3; margin-top: 20px; }
            .main-nav.active { display: block; }
            .main-nav ul { flex-direction: column; gap: 0; }
            .main-nav li { border-bottom: 1px solid #3a2e1b; }
            .main-nav a { display: block; padding: 15px; }
            .hamburger { display: block; }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            article { padding: 25px; }
            .content-image { max-width: 95%; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .search-form { flex-direction: column; }
            .search-form input, .search-form button { width: 100%; border-radius: 5px; margin-bottom: 10px; border-right: 1px solid #6b5c3d; }
        }
