        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            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(180deg, #1a1a1a 0%, #0a0a0a 100%);
            border-bottom: 2px solid #3d2c1a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, #8b4513, #d4af37, #8b4513);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .logo span {
            color: #c00;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 4px;
        }
        nav a:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .hero {
            background: linear-gradient(rgba(15,15,15,0.8), rgba(15,15,15,0.9)), url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 80px 20px;
            text-align: center;
            margin-bottom: 50px;
            border-radius: 10px;
            border: 1px solid #3d2c1a;
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px #000;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ddd;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin-bottom: 60px;
        }
        article {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 10px;
            border: 1px solid #2a2a2a;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h1, h2, h3 {
            color: #d4af37;
            margin-top: 2em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #8b4513; padding-left: 15px; }
        h3 { font-size: 1.8rem; }
        p {
            margin-bottom: 1.8em;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, #2a1f0f, #3d2c1a);
            border-left: 5px solid #d4af37;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-style: italic;
        }
        .image-wrapper {
            margin: 40px 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 8px;
            border: 3px solid #3d2c1a;
            box-shadow: 0 8px 20px rgba(0,0,0,0.7);
            transition: transform 0.4s ease;
        }
        .image-wrapper img:hover {
            transform: scale(1.02);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 2em;
        }
        li {
            margin-bottom: 0.8em;
        }
        strong {
            color: #f0c050;
            font-weight: 700;
        }
        em {
            color: #b0a090;
        }
        aside {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #2a2a2a;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget h3 {
            font-size: 1.5rem;
            border-bottom: 2px solid #8b4513;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .search-box {
            display: flex;
            margin-bottom: 25px;
        }
        .search-box input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #555;
            border-right: none;
            border-radius: 5px 0 0 5px;
            background: #222;
            color: #eee;
        }
        .search-box button {
            background: #8b4513;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #a0522d;
        }
        .rating-widget, .comment-widget {
            background: #222;
            padding: 20px;
            border-radius: 8px;
            margin-top: 15px;
        }
        .stars {
            color: #ffc107;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .rating-widget input, .comment-widget textarea, .comment-widget input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            background: #333;
            border: 1px solid #555;
            color: #eee;
            border-radius: 5px;
        }
        .rating-widget button, .comment-widget button {
            width: 100%;
            padding: 12px;
            background: #3d2c1a;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
            font-weight: bold;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background: #5a3f24;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 50px 0;
            padding: 40px;
            background: #1a1a1a;
            border-radius: 10px;
            border: 1px solid #2a2a2a;
        }
        .web-link {
            background: #222;
            padding: 15px;
            border-radius: 6px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #2a2a2a;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #d4af37;
            font-weight: 600;
        }
        footer {
            background: #0a0a0a;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid #3d2c1a;
            margin-top: 60px;
        }
        .copyright {
            color: #777;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .social-links {
            margin-bottom: 20px;
        }
        .social-links a {
            display: inline-block;
            margin: 0 15px;
            font-size: 1.5rem;
            color: #aaa;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #d4af37;
        }
        @media (max-width: 1024px) {
            .content {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                margin-top: 20px;
                padding: 20px;
                border-radius: 8px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
        }
