        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0a;
            color: #e6e6e6;
            line-height: 1.7;
            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(to bottom, #1a1a1a 0%, #0a0a0a 100%);
            border-bottom: 2px solid #333;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #8b0000, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a1a1a;
            border-top: 1px solid #333;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        main {
            padding: 2rem 0;
            min-height: 80vh;
        }
        article {
            background-color: #111;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #d4af37;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #d4af37;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333;
        }
        h3 {
            font-size: 1.5rem;
            color: #f0f0f0;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            background-color: rgba(212, 175, 55, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #d4af37;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(139, 0, 0, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #444;
            margin: 2rem 0;
        }
        .highlight strong {
            color: #ffd700;
            font-size: 1.1rem;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 900px;
        }
        .image-container img {
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            border: 1px solid #444;
        }
        .caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .interactive-section {
            background-color: #151515;
            border-radius: 10px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #333;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box form, .comment-form form, .rating-form form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            background-color: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
            flex-grow: 1;
            min-width: 200px;
        }
        textarea {
            min-height: 120px;
            width: 100%;
            resize: vertical;
        }
        button {
            background: linear-gradient(to bottom, #8b0000, #660000);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        button:hover {
            background: linear-gradient(to bottom, #a00, #800);
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(139, 0, 0, 0.3);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .footer-links {
            background-color: #111;
            padding: 2.5rem 0;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
        }
        .web-link {
            display: inline-block;
            margin: 0.8rem 1.5rem 0.8rem 0;
            padding: 0.6rem 1.2rem;
            background-color: #222;
            border-radius: 5px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #2a2a2a;
            border-color: #d4af37;
            transform: translateY(-3px);
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            color: #777;
            font-size: 0.9rem;
        }
        .copyright {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
            .header-container, .interactive-section form {
                flex-direction: column;
                align-items: stretch;
            }
            input, select, button {
                width: 100%;
            }
            .web-link {
                margin: 0.5rem;
                display: block;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 2.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .interactive-section, .image-container {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #444;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
