        * {
            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: #e9e2d6;
            background-color: #0c0b0a;
            background-image: linear-gradient(to bottom, #1a1611 0%, #0c0b0a 20%);
            min-height: 100vh;
            padding-top: 80px; 
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f7e7a6;
            text-decoration: underline;
        }
        ul, ol {
            padding-left: 1.5em;
            margin: 1em 0;
        }
        blockquote {
            border-left: 4px solid #d4af37;
            padding-left: 1.5em;
            margin: 1.5em 0;
            font-style: italic;
            color: #b8b0a1;
        }
        .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);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(12, 11, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #332c20;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #d4af37;
            transform: scale(1.02);
        }
        .my-logo i {
            margin-right: 10px;
            color: #a0522d;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #e9e2d6;
            font-weight: 500;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:hover {
            color: #d4af37;
            text-decoration: none;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            max-width: 300px;
            width: 100%;
        }
        .search-box input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid #332c20;
            background-color: #1a1611;
            color: #e9e2d6;
            border-radius: 4px 0 0 4px;
            outline: none;
        }
        .search-box button {
            background-color: #332c20;
            color: #d4af37;
            border: 1px solid #332c20;
            border-left: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #443925;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(12, 11, 10, 0.98);
            border-top: 1px solid #332c20;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #b8b0a1;
            margin-bottom: 20px;
            border-bottom: 1px solid #26221c;
        }
        .breadcrumb a {
            color: #b8b0a1;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(26, 22, 17, 0.7);
            border-radius: 8px;
            padding: 40px;
            border: 1px solid #332c20;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(26, 22, 17, 0.7);
            border-radius: 8px;
            padding: 25px;
            border: 1px solid #332c20;
        }
        .sidebar-widget h3 {
            color: #d4af37;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #332c20;
            font-size: 1.3rem;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #e9d7a9;
            margin-top: 1.5em;
            margin-bottom: 0.7em;
            line-height: 1.3;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            color: #d4af37;
            margin-top: 0;
            margin-bottom: 0.5em;
            border-bottom: 2px solid #443925;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2em;
            border-left: 4px solid #d4af37;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0c87d;
        }
        h4 {
            font-size: 1.4rem;
            color: #b8b0a1;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #e0c87d;
            font-weight: 300;
            margin-bottom: 2em;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 3px solid #d4af37;
            padding: 20px;
            margin: 2em 0;
            border-radius: 0 4px 4px 0;
        }
        .key-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 2em 0;
            padding: 25px;
            background-color: rgba(51, 44, 32, 0.3);
            border-radius: 8px;
            border: 1px solid #443925;
        }
        .info-item {
            text-align: center;
        }
        .info-item i {
            font-size: 2rem;
            color: #d4af37;
            margin-bottom: 10px;
        }
        .info-item strong {
            display: block;
            color: #e9d7a9;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        .article-image {
            margin: 2.5em auto;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #443925;
            position: relative;
        }
        .article-image figcaption {
            padding: 15px;
            background-color: rgba(26, 22, 17, 0.9);
            font-size: 0.9rem;
            color: #b8b0a1;
            text-align: center;
            font-style: italic;
        }
        .float-left {
            float: left;
            margin-right: 30px;
            margin-bottom: 20px;
            max-width: 50%;
        }
        @media (max-width: 768px) {
            .float-left {
                float: none;
                margin-right: 0;
                max-width: 100%;
            }
        }
        .content-link {
            font-weight: 600;
            border-bottom: 1px dotted #d4af37;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .comments-section, .rating-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #332c20;
        }
        .comments-section h2, .rating-section h2 {
            border-left: none;
            padding-left: 0;
            margin-top: 0;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 30px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            color: #e0c87d;
            font-weight: 500;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 12px 15px;
            background-color: #1a1611;
            border: 1px solid #332c20;
            border-radius: 4px;
            color: #e9e2d6;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
            font-size: 2rem;
            color: #444;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #444;
            transition: color 0.3s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #d4af37;
        }
        .btn-submit {
            background-color: #332c20;
            color: #d4af37;
            border: 1px solid #443925;
            padding: 15px 30px;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            align-self: flex-start;
        }
        .btn-submit:hover {
            background-color: #443925;
            transform: translateY(-2px);
        }
        .site-footer {
            background-color: #0a0908;
            border-top: 1px solid #332c20;
            padding: 50px 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: 'Times New Roman', serif;
            font-size: 2rem;
            color: #d4af37;
            margin-bottom: 20px;
            display: block;
        }
        .footer-about {
            color: #b8b0a1;
            line-height: 1.8;
        }
        .footer-links h4, .footer-social h4 {
            color: #e9d7a9;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #b8b0a1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: #d4af37;
            padding-left: 5px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #1a1611;
            color: #d4af37;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background-color: #d4af37;
            color: #0c0b0a;
            transform: translateY(-5px);
            text-decoration: none;
        }
        friend-link {
            display: block;
            padding: 30px 0;
            border-top: 1px solid #332c20;
            border-bottom: 1px solid #332c20;
            margin: 30px 0;
        }
        friend-link h3 {
            color: #e9d7a9;
            margin-bottom: 25px;
            text-align: center;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .friend-links a {
            color: #b8b0a1;
            padding: 10px 20px;
            background-color: rgba(26, 22, 17, 0.5);
            border-radius: 4px;
            border: 1px solid #332c20;
            transition: all 0.3s;
        }
        .friend-links a:hover {
            color: #d4af37;
            background-color: rgba(51, 44, 32, 0.5);
            text-decoration: none;
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            color: #8a7f6d;
            font-size: 0.9rem;
            border-top: 1px solid #26221c;
        }
        @media (max-width: 1100px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .article-content { padding: 30px; }
        }
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            .main-nav ul { display: none; }
            .hamburger { display: block; }
            .search-box { max-width: 200px; }
            .header-container { flex-wrap: wrap; }
            .my-logo { font-size: 1.8rem; }
            .article-content { padding: 20px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.5rem; }
            .lead { font-size: 1.1rem; }
            .key-info { grid-template-columns: 1fr; }
        }
        @media (max-width: 576px) {
            .search-box { display: none; }
            .friend-links { flex-direction: column; align-items: center; }
        }
