        * { 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: #e9e1d2;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 30%, #2c241b 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .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;
        }
        .site-header {
            background-color: rgba(10, 9, 8, 0.95);
            border-bottom: 3px solid #c8a97e;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
        }
        .my-logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: #d4af37;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(to right, #d4af37, #f5e8c6, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
        }
        .my-logo a:hover {
            letter-spacing: 4px;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }
        .breadcrumb {
            padding: 1rem 20px;
            background-color: rgba(28, 25, 22, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #c8a97e;
        }
        .breadcrumb a {
            color: #e9d7b0;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #d4af37;
            text-decoration: underline;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #e9e1d2;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s;
        }
        .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 {
            color: #d4af37;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 9, 8, 0.98);
            border-top: 1px solid #333;
            flex-direction: column;
            padding: 1rem 0;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            display: block;
            padding: 1rem 2rem;
            color: #e9e1d2;
            text-decoration: none;
            border-bottom: 1px solid #2a2a2a;
            font-size: 1.2rem;
        }
        .mobile-nav a:hover {
            background-color: #2a241e;
            color: #d4af37;
        }
        .hero {
            padding: 4rem 20px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(44, 36, 27, 0.9) 0%, rgba(10, 9, 8, 1) 70%);
            border-bottom: 1px solid #3a3229;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #f5e8c6;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #d1c4b3;
        }
        .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 {
            background-color: rgba(20, 18, 16, 0.8);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #3a3229;
        }
        article h2, article h3, article h4 {
            color: #d4af37;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        article h2 { font-size: 2.3rem; border-bottom: 2px solid #4a3c2a; padding-bottom: 0.5rem; }
        article h3 { font-size: 1.9rem; }
        article h4 { font-size: 1.5rem; color: #e9d7b0; }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
            hyphens: auto;
        }
        article emoji {
            font-size: 1.3em;
            margin: 0 5px;
            vertical-align: middle;
        }
        article strong {
            color: #f5e8c6;
            font-weight: 700;
        }
        .featured-image {
            float: right;
            margin: 0 0 2rem 2.5rem;
            max-width: 500px;
            border-radius: 8px;
            border: 3px solid #5d4c32;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            shape-outside: margin-box;
        }
        .inline-link {
            color: #c8a97e;
            text-decoration: none;
            border-bottom: 1px dotted #c8a97e;
            transition: all 0.2s;
        }
        .inline-link:hover {
            color: #f5e8c6;
            border-bottom-style: solid;
            background-color: rgba(200, 169, 126, 0.1);
        }
        .content-highlight {
            background: linear-gradient(to right, rgba(200, 169, 126, 0.1), transparent);
            border-left: 4px solid #c8a97e;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: rgba(28, 25, 22, 0.8);
            border-radius: 10px;
            padding: 1.8rem;
            border: 1px solid #3a3229;
        }
        .widget h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i { font-size: 1.3rem; }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1rem;
            background-color: #1a1612;
            border: 1px solid #5d4c32;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #e9e1d2;
            font-size: 1rem;
        }
        .search-form button {
            background-color: #5d4c32;
            color: #f5e8c6;
            border: 1px solid #5d4c32;
            border-radius: 0 6px 6px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #6d5c42;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 1.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #d4af37;
        }
        .star-rating input:checked ~ label {
            color: #d4af37;
        }
        .rating-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background-color: #1a1612;
            border: 1px solid #5d4c32;
            border-radius: 6px;
            color: #e9e1d2;
            font-family: inherit;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .rating-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #5d4c32, #7a6545);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .rating-form button:hover {
            background: linear-gradient(to right, #6d5c42, #8a7555);
            box-shadow: 0 5px 15px rgba(93, 76, 50, 0.4);
        }
        .comment {
            border-bottom: 1px solid #3a3229;
            padding: 1.5rem 0;
        }
        .comment:last-of-type { border-bottom: none; }
        .comment-author {
            color: #d4af37;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0.5rem;
        }
        .comment-date {
            color: #a0988c;
            font-size: 0.9rem;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            background-color: #1a1612;
            border: 1px solid #5d4c32;
            border-radius: 6px;
            color: #e9e1d2;
            font-family: inherit;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .site-footer {
            background-color: #0a0908;
            border-top: 3px solid #5d4c32;
            padding: 3rem 20px 2rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #d4af37;
            margin-bottom: 1rem;
        }
        .footer-nav ul {
            list-style: none;
        }
        .footer-nav a {
            color: #c8a97e;
            text-decoration: none;
            line-height: 2.2;
            transition: color 0.3s;
        }
        .footer-nav a:hover {
            color: #f5e8c6;
            padding-left: 5px;
        }
        .friend-links {
            background-color: rgba(28, 25, 22, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .friend-links h4 {
            color: #d4af37;
            margin-bottom: 1rem;
        }
        .friend-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .friend-links a {
            color: #e9d7b0;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 1px solid #5d4c32;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            background-color: #5d4c32;
            color: #fff;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3a3229;
            color: #a0988c;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .main-nav { display: none; }
            .hamburger { display: block; align-self: flex-end; margin-top: -3.5rem; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .main-content { padding: 2rem 15px; }
            article { padding: 1.8rem; }
            article h2 { font-size: 2rem; }
            .featured-image {
                float: none;
                margin: 0 auto 2rem;
                max-width: 100%;
            }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .friend-links ul { justify-content: center; }
        }
