        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #8B4513; 
            --secondary: #D2691E; 
            --accent: #FF6B35; 
            --light: #FFF8F0;
            --dark: #2C1810;
            --gray: #6D6D6D;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            font-size: 1.05rem;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
        }
        .my-logo:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }
        nav a:hover, nav a.active {
            color: var(--accent);
        }
        nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            padding: 20px;
            box-shadow: inset 0 5px 10px rgba(0,0,0,0.05);
            border-top: 1px solid #eee;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f9f5f0;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child):after {
            content: '/';
            margin: 0 10px;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(rgba(44, 24, 16, 0.85), rgba(44, 24, 16, 0.9)), url('https://images.unsplash.com/photo-1574732011388-8e9d1df3d42b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        .search-box {
            max-width: 700px;
            margin: 30px auto 0;
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 20px 30px;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--primary);
        }
        main {
            padding: 40px 0;
        }
        .content-section {
            margin-bottom: 60px;
            padding: 30px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        h1 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 2.8rem;
        }
        h2 {
            color: var(--secondary);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0e6dd;
            font-size: 2.2rem;
        }
        h3 {
            color: var(--dark);
            margin: 30px 0 15px;
            font-size: 1.8rem;
        }
        h4 {
            color: var(--gray);
            margin: 25px 0 12px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 22px;
            text-align: justify;
        }
        .intro-para {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark);
            background: #fcf8f3;
            padding: 25px;
            border-left: 5px solid var(--accent);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin-bottom: 35px;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: #b36b00;
        }
        em {
            color: var(--primary);
            font-style: italic;
        }
        strong {
            color: var(--dark);
            font-weight: 700;
        }
        .article-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: var(--border-radius);
            margin: 30px auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }
        .article-img:hover {
            transform: scale(1.01);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: -20px;
            margin-bottom: 30px;
        }
        .content-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted var(--primary);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--accent);
            border-bottom: 1px solid var(--accent);
        }
        .related-links {
            background: #f9f5f0;
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
        }
        .related-links li {
            padding: 10px 0;
            border-bottom: 1px dashed #d9c7b5;
        }
        .related-links a {
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .related-links a:before {
            content: '🎨';
            margin-right: 10px;
        }
        .related-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .stats-box {
            background: linear-gradient(135deg, #8B4513, #D2691E);
            color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
            box-shadow: var(--shadow);
        }
        .stats-box h3 {
            color: white;
            margin-top: 0;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary);
            border-left: 4px solid var(--accent);
            padding-left: 25px;
            margin: 35px 0 35px 20px;
            background: #fcf8f3;
            padding: 25px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .author {
            display: block;
            text-align: right;
            font-weight: bold;
            margin-top: 10px;
            color: var(--secondary);
        }
        .interactive-section {
            background: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 50px 0;
        }
        .rating-form, .comment-form {
            margin-bottom: 40px;
        }
        .form-title {
            display: flex;
            align-items: center;
            color: var(--primary);
            margin-bottom: 25px;
        }
        .form-title i {
            margin-right: 15px;
            font-size: 1.8rem;
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            margin-bottom: 20px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            font-size: 2.5rem;
            padding: 0 5px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0d6cc;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
        }
        .form-group textarea {
            min-height: 180px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }
        .submit-btn i {
            margin-left: 10px;
        }
        .submit-btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(139, 69, 19, 0.3);
        }
        .user-comments {
            margin-top: 50px;
        }
        .comment {
            background: #f9f9f9;
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
            border-left: 5px solid var(--secondary);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .comment-author {
            font-weight: bold;
            color: var(--primary);
        }
        .comment-date {
            color: var(--gray);
            font-size: 0.95rem;
        }
        .comment-rating {
            color: #ffc107;
            margin: 5px 0;
        }
        footer {
            background-color: var(--dark);
            color: #e0d6cc;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--light);
            margin-bottom: 20px;
            display: block;
        }
        .footer-about p {
            margin-bottom: 20px;
        }
        .footer-links h3,
        .footer-contact h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #c9b8a8;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        .footer-links a:before {
            content: '➤';
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--accent);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 30px 0;
        }
        friend-link h4 {
            color: white;
            margin-top: 0;
        }
        friend-link a {
            color: #ffb347;
            text-decoration: none;
            font-weight: 600;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4a372f;
            color: #a08e7f;
            font-size: 0.95rem;
        }
        .update-time {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-top: 25px;
            text-align: center;
            font-style: italic;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .hero h1 { font-size: 2.8rem; }
            .hero p { font-size: 1.2rem; }
        }
        @media (max-width: 768px) {
            .header-container { flex-wrap: wrap; }
            nav ul { display: none; }
            .hamburger { display: block; }
            .hero { padding: 60px 0; }
            .hero h1 { font-size: 2.3rem; }
            .hero p { font-size: 1.1rem; }
            .search-box { flex-direction: column; border-radius: var(--border-radius); }
            .search-box input, .search-box button { border-radius: 0; padding: 18px; }
            .content-section, .interactive-section { padding: 25px; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .footer-container { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            h1 { font-size: 1.9rem; }
            h2 { font-size: 1.6rem; }
            .my-logo { font-size: 1.8rem; }
        }
