        * {
            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: #333;
            background: #f5f1e9;
            background-image: linear-gradient(to bottom, #2c1e0f 0%, #1a1208 100%);
            background-attachment: fixed;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #d4af37;
            margin-bottom: 1rem;
            line-height: 1.3;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            border-bottom: 3px solid #8b4513;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #c19a6b;
            border-left: 4px solid #8b4513;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            color: #e0c9a6;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            text-align: justify;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-shadow: 0 0 5px rgba(255,215,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1208 0%, #2c1e0f 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #8b4513;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Georgia', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #8b4513;
            font-size: 2.5rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: block;
        }
        .desktop-nav a:hover {
            background: rgba(139, 69, 19, 0.3);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: #2c1e0f;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 2px solid #8b4513;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 0.8rem;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            border-left: 3px solid #d4af37;
        }
        .mobile-nav a:hover {
            background: rgba(139, 69, 19, 0.3);
        }
        .breadcrumb {
            background: rgba(26, 18, 8, 0.9);
            padding: 0.8rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid #8b4513;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #c19a6b;
        }
        .search-section {
            background: rgba(42, 28, 15, 0.95);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem auto;
            max-width: 800px;
            border: 2px solid #8b4513;
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #8b4513;
            border-radius: 5px;
            background: #1a1208;
            color: #e0c9a6;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        .search-btn {
            padding: 0 2rem;
            background: linear-gradient(to bottom, #8b4513, #6b3310);
            color: #ffd700;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(to bottom, #a0522d, #8b4513);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        main {
            padding: 2rem 0;
            background: rgba(245, 241, 233, 0.98);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }
        main::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #8b4513, #d4af37, #8b4513);
        }
        .article-hero {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(rgba(26, 18, 8, 0.9), rgba(42, 28, 15, 0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            color: #f5f1e9;
            border: 3px solid #8b4513;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #c19a6b;
        }
        .article-image {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 5px solid #8b4513;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .article-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .article-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            padding: 1rem;
            background: #2c1e0f;
            color: #c19a6b;
            font-style: italic;
            text-align: center;
        }
        .content-section {
            padding: 0 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2c1e0f, #1a1208);
            border-left: 5px solid #d4af37;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .highlight-box h3 {
            color: #ffd700;
            margin-top: 0;
        }
        .interactive-section {
            background: rgba(26, 18, 8, 0.05);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 2px dashed #8b4513;
        }
        .rating-form, .comment-form {
            display: grid;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            direction: rtl;
            font-size: 2rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #ffd700;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 2px solid #8b4513;
            border-radius: 5px;
            background: #f9f5eb;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 1rem 2rem;
            background: linear-gradient(to bottom, #8b4513, #6b3310);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: start;
        }
        .submit-btn:hover {
            background: linear-gradient(to bottom, #a0522d, #8b4513);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .footer-links {
            background: #1a1208;
            padding: 3rem 0;
            border-top: 3px solid #8b4513;
            border-bottom: 2px solid #2c1e0f;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(42, 28, 15, 0.7);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid #d4af37;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            transform: translateX(5px);
            background: rgba(139, 69, 19, 0.3);
        }
        .web-link a {
            color: #c19a6b;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1rem;
        }
        .web-link i {
            color: #d4af37;
        }
        footer {
            background: #0f0a05;
            color: #c19a6b;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #c19a6b;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-links a:hover {
            color: #ffd700;
            transform: translateY(-3px);
        }
        .copyright {
            font-size: 0.9rem;
            opacity: 0.8;
            border-top: 1px solid #2c1e0f;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .content-section {
                padding: 0 1rem;
            }
        }
        @media (max-width: 768px) {
            .article-hero {
                padding: 1.5rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                width: 100%;
                padding: 1rem;
            }
            .web-links-grid {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .logo a {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .highlight-box {
                padding: 1.5rem;
            }
        }
        .text-bold {
            font-weight: bold;
            color: #8b4513;
        }
        .text-italic {
            font-style: italic;
            color: #a0522d;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 {
            margin-bottom: 3rem;
        }
        .mt-3 {
            margin-top: 3rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
