        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e6e6e6;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s;
        }
        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, #1a1f26, #0f1419);
            padding: 1rem 0;
            border-bottom: 2px solid #2a2f36;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #8b0000, #d4af37);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        .search-form {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 1px solid #444;
            border-radius: 30px 0 0 30px;
            background: #2a2f36;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to right, #8b0000, #a52a2a);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #a52a2a, #8b0000);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            margin-top: 1rem;
            border-top: 1px solid #2a2f36;
            padding-top: 1rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .nav-links a {
            padding: 10px 15px;
            font-weight: 600;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links a:hover {
            background-color: rgba(212, 175, 55, 0.1);
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        main {
            padding: 3rem 0;
            min-height: 80vh;
        }
        article {
            background: rgba(26, 31, 38, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #fff;
            line-height: 1.2;
            border-left: 5px solid #d4af37;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: #d4af37;
            padding-bottom: 10px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
            color: #f0c674;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.3rem;
            background: rgba(139, 0, 0, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 2.5rem;
            border-left: 4px solid #8b0000;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.15);
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .featured-image {
            width: 100%;
            max-width: 900px;
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #444;
            box-shadow: 0 10px 20px rgba(0,0,0,0.7);
        }
        .featured-image figcaption {
            text-align: center;
            padding: 15px;
            background: #2a2f36;
            color: #aaa;
            font-style: italic;
        }
        .interactive-modules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 3rem 0;
        }
        .module {
            background: #1a1f26;
            border-radius: 10px;
            padding: 25px;
            border: 1px solid #333;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .module:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
        }
        .module h3 {
            margin-top: 0;
            color: #d4af37;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .module input, .module textarea, .module select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #2a2f36;
            color: #fff;
            font-size: 1rem;
        }
        .module button {
            padding: 15px;
            background: linear-gradient(45deg, #8b0000, #d4af37);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .module button:hover {
            background: linear-gradient(45deg, #d4af37, #8b0000);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            justify-content: center;
        }
        .stars i {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ffd700;
        }
        .web-links-section {
            background: #1a1f26;
            padding: 3rem 0;
            border-top: 2px solid #2a2f36;
            border-bottom: 2px solid #2a2f36;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #252b33;
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: #2f3843;
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            color: #aaa;
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 1rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-form {
                order: 3;
                width: 100%;
                max-width: 100%;
                margin: 20px 0 0;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav {
                display: none;
                margin-top: 1rem;
            }
            nav.active {
                display: block;
            }
            .nav-links {
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }
            .nav-links a {
                width: 100%;
                justify-content: center;
            }
            article {
                padding: 1.5rem;
            }
            .interactive-modules {
                grid-template-columns: 1fr;
            }
        }
