        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #C19A6B; 
            --secondary: #2A3439; 
            --accent: #A52A2A; 
            --light: #F5F5DC; 
            --dark: #1A1A1A;
            --text: #333333;
            --text-light: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f8f9fa;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--primary);
            text-transform: uppercase;
            background: linear-gradient(to right, var(--primary), #e6d3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: var(--light);
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--secondary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 0.8rem 0;
        }
        .mobile-nav a {
            color: white;
            display: block;
            padding: 0.5rem;
            border-left: 3px solid transparent;
        }
        .mobile-nav a:hover {
            border-left-color: var(--primary);
            background: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            background: var(--light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid #ddd;
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb span {
            color: var(--accent);
            font-weight: 600;
        }
        main {
            padding: 2rem 0;
            background: white;
            min-height: 80vh;
        }
        article {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid var(--primary);
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.2rem;
            color: var(--text);
            font-weight: 500;
            background: #f9f3ec;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary);
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(193,154,107,0.2) 0%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: 600;
        }
        b, strong {
            color: var(--secondary);
        }
        em {
            color: var(--accent);
            font-style: italic;
        }
        .feature-img {
            width: 100%;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid #ddd;
        }
        .feature-img img {
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 0.8rem;
            font-size: 0.9rem;
            background: #f9f9f9;
            border-top: 1px solid #eee;
        }
        .interactive-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #e9ecef;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }
        .section-title i {
            color: var(--primary);
        }
        .search-box {
            display: flex;
            margin-bottom: 2rem;
        }
        .search-box input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ddd;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-box input:focus {
            border-color: var(--primary);
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: var(--accent);
        }
        .rating-widget {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ddd;
        }
        .stars .star {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars .star:hover,
        .stars .star.active {
            color: #FFD700;
        }
        .rating-form input, .rating-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin: 0.5rem 0 1rem;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .rating-form button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
        }
        .rating-form button:hover {
            background: #8B0000;
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 1rem;
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
        }
        .comment-form button:hover {
            background: var(--dark);
        }
        footer {
            background: var(--secondary);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        .footer-links a {
            color: #ccc;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            margin: 0.5rem 0;
            border-left: 3px solid var(--primary);
        }
        friend-link a {
            color: var(--light);
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .mobile-nav {
                display: none;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .lead { font-size: 1.1rem; }
            .interactive-section {
                padding: 1.5rem;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            h1 { font-size: 1.8rem; }
            .my-logo {
                font-size: 1.8rem;
            }
            .search-box {
                flex-direction: column;
            }
            .search-box input {
                border-radius: 8px;
                border-right: 2px solid #ddd;
                margin-bottom: 10px;
            }
            .search-box button {
                border-radius: 8px;
                padding: 0.9rem;
            }
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
