        * {
            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: #e0d3c1;
            background-color: #0a0a0a;
            background-image: linear-gradient(to bottom, #1a1209 0%, #0a0a0a 30%);
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo span {
            color: #a52a2a;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px dashed #333;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(ellipse at center, #2c1b0f 0%, #0a0a0a 70%);
            border-bottom: 1px solid #444;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3.5rem;
            color: #f5e8c7;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #d1c4a3;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #555;
            border-radius: 50px 0 0 50px;
            background: #1a1a1a;
            color: #eee;
            font-size: 1rem;
        }
        .search-box button {
            padding: 0 30px;
            background: linear-gradient(to right, #8b7355, #d4af37);
            color: #000;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #d4af37, #ffd700);
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 20px 0 60px;
        }
        article {
            background: rgba(20, 15, 10, 0.7);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #332211;
        }
        h2 {
            font-size: 2.5rem;
            color: #e6d1a1;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4af37;
        }
        h3 {
            font-size: 1.8rem;
            color: #d9c59b;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #c9b58b;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid #d4af37;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .img-container {
            margin: 30px auto;
            text-align: center;
        }
        .img-container img {
            border-radius: 8px;
            border: 2px solid #555;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
        }
        .img-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(25, 20, 15, 0.8);
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #443322;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #d4af37;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #555;
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }
        .related-links li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #d4af37;
            font-size: 0.8rem;
        }
        .user-interaction {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px dashed #444;
        }
        .rating-widget {
            background: rgba(30, 25, 20, 0.8);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
            text-align: center;
        }
        .stars {
            font-size: 2.5rem;
            color: #555;
            margin: 20px 0;
            cursor: pointer;
        }
        .stars .star {
            display: inline-block;
            padding: 0 5px;
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd700;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background: #1a1a1a;
            border: 1px solid #555;
            border-radius: 8px;
            color: #eee;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        .form-row input {
            flex: 1;
            padding: 12px 15px;
            background: #1a1a1a;
            border: 1px solid #555;
            border-radius: 8px;
            color: #eee;
        }
        .submit-btn {
            background: linear-gradient(to right, #8b7355, #d4af37);
            color: #000;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #d4af37, #ffd700);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }
        .site-footer {
            background-color: #050505;
            border-top: 1px solid #333;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            color: #d4af37;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        friend-link a {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            padding: 5px 10px;
            background: rgba(255,255,255,0.05);
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
            padding-top: 30px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                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 #333;
            }
            .main-nav a {
                display: block;
                padding: 15px;
            }
            .hamburger {
                display: block;
            }
            .form-row {
                flex-direction: column;
                gap: 10px;
            }
            .hero {
                padding: 40px 20px;
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
        }
