        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.8;
            color: #e9e3d5;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2419 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffde7a;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 4rem 0;
        }
        .text-center { text-align: center; }
        .text-gold { color: #d4af37; }
        .text-sand { color: #e9e3d5; }
        .bg-dark { background-color: rgba(10, 10, 10, 0.85); }
        .shadow { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
        .site-header {
            background-color: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #3a2c0f;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
        }
        .my-logo:hover {
            color: #ffde7a;
            text-shadow: 0 0 15px rgba(255, 222, 122, 0.9);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e9e3d5;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: #d4af37;
            border-bottom-color: #d4af37;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 20px;
            background-color: rgba(58, 44, 15, 0.3);
            font-size: 0.9rem;
        }
        .breadcrumb a { color: #b8a776; }
        .breadcrumb a:hover { color: #ffde7a; }
        .hero {
            padding: 5rem 20px;
            background: radial-gradient(circle at 50% 50%, rgba(42, 36, 25, 0.8) 0%, rgba(10, 10, 10, 1) 70%);
            text-align: center;
            border-bottom: 1px solid #3a2c0f;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #d4af37;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #cfc5b0;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #9c8c5a;
            margin-top: 2rem;
        }
        .search-section {
            padding: 2rem 20px;
            background-color: rgba(26, 26, 26, 0.7);
            border-bottom: 1px solid #3a2c0f;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid #3a2c0f;
            background: #0a0a0a;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            color: #e9e3d5;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
        }
        .search-button {
            background-color: #3a2c0f;
            color: #d4af37;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #4d3a15;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(26, 26, 26, 0.7);
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid #3a2c0f;
        }
        .article-content h2 {
            font-size: 2.5rem;
            margin: 2.5rem 0 1.5rem;
            color: #d4af37;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3a2c0f;
        }
        .article-content h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #e9c46a;
        }
        .article-content h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #cfc5b0;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            color: #d9d1c0;
        }
        .article-content strong {
            color: #d4af37;
            font-weight: 700;
        }
        .article-content em {
            color: #b8a776;
            font-style: italic;
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
            color: #d9d1c0;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .featured-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 800px;
            margin: 0 auto;
            border: 3px solid #3a2c0f;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #9c8c5a;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .inline-link-list {
            background: rgba(58, 44, 15, 0.3);
            padding: 1.5rem;
            border-left: 4px solid #d4af37;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link-list h4 {
            margin-top: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: rgba(26, 26, 26, 0.7);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #3a2c0f;
        }
        .sidebar-widget h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3a2c0f;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            cursor: pointer;
            margin-bottom: 0.5rem;
        }
        .star {
            color: #444;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-label {
            margin-bottom: 0.5rem;
            color: #b8a776;
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            padding: 0.8rem 1rem;
            background-color: rgba(10, 10, 10, 0.8);
            border: 1px solid #3a2c0f;
            border-radius: 6px;
            color: #e9e3d5;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #d4af37;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: #3a2c0f;
            color: #d4af37;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .submit-button:hover {
            background-color: #4d3a15;
        }
        .site-footer {
            background-color: #0a0a0a;
            border-top: 2px solid #3a2c0f;
            padding: 4rem 20px 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background: rgba(58, 44, 15, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            border-left: 4px solid #d4af37;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3a2c0f;
            color: #9c8c5a;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            html { font-size: 14px; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .header-container { flex-wrap: wrap; }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 500px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                border-bottom: 1px solid #3a2c0f;
            }
            .main-nav a {
                display: block;
                padding: 1rem 0;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .main-content {
                padding: 2rem 15px;
                gap: 2rem;
            }
        }
