        * { 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: linear-gradient(135deg, #f5f7fa 0%, #f0e6d2 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: #d4af37; transition: color 0.3s; }
        a:hover { color: #b8941f; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, #1a1a2e, #16213e);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Trebuchet MS', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #f0e6d2;
            font-weight: 600;
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: rgba(212, 175, 55, 0.2);
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f0e6d2;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #16213e;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 0.75rem 0; }
        .mobile-nav a {
            color: #f0e6d2;
            display: block;
            padding: 0.5rem;
            border-left: 3px solid #d4af37;
        }
        .breadcrumb {
            background-color: #f8f5ee;
            padding: 0.8rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d6c2;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #999;
        }
        .breadcrumb a { color: #666; }
        .breadcrumb a:hover { color: #d4af37; }
        .hero {
            padding: 3rem 0;
            text-align: center;
            background: url('https://images.unsplash.com/photo-1548013146-72479768bada?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            background-blend-mode: overlay;
            background-color: rgba(26, 26, 46, 0.85);
            color: #f0e6d2;
            border-radius: 0 0 20px 20px;
            margin-bottom: 2rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 1.5rem;
            color: #e0d6c2;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .main-content h2 {
            font-size: 2.2rem;
            color: #1a1a2e;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 0.5rem;
            margin: 2.5rem 0 1.5rem;
        }
        .main-content h3 {
            font-size: 1.7rem;
            color: #16213e;
            margin: 2rem 0 1rem;
        }
        .main-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: #fff9e6;
            border-left: 5px solid #d4af37;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid #fff;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.75rem;
            background: #f8f5ee;
            color: #666;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 12px;
            padding: 1.8rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #e0d6c2;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            color: #1a1a2e;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #d4af37;
        }
        .search-form input[type="text"] {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #e0d6c2;
            border-radius: 8px;
            font-size: 1rem;
            margin-bottom: 0.8rem;
        }
        .search-form button {
            width: 100%;
            padding: 0.9rem;
            background: linear-gradient(to right, #1a1a2e, #16213e);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #d4af37, #b8941f);
        }
        .rating-form .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ccc;
        }
        .stars i { cursor: pointer; transition: color 0.2s; }
        .stars i:hover, .stars i.active { color: #ffd700; }
        .rating-form button, .comment-form button {
            padding: 0.8rem 1.5rem;
            background-color: #d4af37;
            color: #1a1a2e;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background-color: #b8941f;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0d6c2;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 120px;
        }
        .user-comment {
            background: #f9f9f9;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #d4af37;
        }
        .user-comment .meta {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0.5rem;
        }
        .web-links-section {
            background: #1a1a2e;
            padding: 2.5rem 0;
            margin-top: 3rem;
            border-radius: 20px 20px 0 0;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(212, 175, 55, 0.1);
        }
        .web-link a {
            color: #f0e6d2;
            font-weight: 500;
            display: block;
        }
        .site-footer {
            background: #0f1525;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            width: 100%;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .main-content h2 { font-size: 1.9rem; }
            .main-content h3 { font-size: 1.5rem; }
            .content-grid { gap: 1.5rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .logo a { font-size: 1.8rem; }
            .web-links-grid { grid-template-columns: 1fr; }
        }
