        * { 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: #e0e0e0;
            background: linear-gradient(135deg, #0a1a2a 0%, #1a2b3a 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #80c1ff; text-shadow: 0 0 8px rgba(77, 166, 255, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 26, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1e3a5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(to right, #c8a96a, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 16px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(30, 58, 92, 0.6);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #c8a96a;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 26, 42, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #1e3a5c;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #2a4a6a;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(20, 40, 60, 0.7);
            margin-bottom: 30px;
            font-size: 0.95rem;
        }
        .breadcrumb a { color: #a3cfff; }
        .breadcrumb span { color: #c8a96a; }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 3px double #2a4a6a;
        }
        .article-header h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.7);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #8fa3b8;
            font-size: 0.95rem;
        }
        .article-body {
            font-size: 1.1rem;
            max-width: 900px;
            margin: 0 auto 50px;
        }
        .article-body p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-body h2 {
            color: #4da6ff;
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a4a6a;
        }
        .article-body h3 {
            color: #80c1ff;
            font-size: 1.6rem;
            margin: 2.5rem 0 1.2rem;
        }
        .highlight-box {
            background: linear-gradient(to right, rgba(30, 58, 92, 0.6), rgba(20, 40, 60, 0.8));
            border-left: 5px solid #c8a96a;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 40px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            border: 3px solid #3a5a7a;
            max-width: 800px;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: #8fa3b8;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interactive-modules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .module {
            background: rgba(20, 40, 60, 0.8);
            border-radius: 12px;
            padding: 30px;
            border: 1px solid #3a5a7a;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .module:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        .module h3 {
            color: #ffd700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .module form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .module input, .module textarea, .module select {
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #3a5a7a;
            background: rgba(10, 26, 42, 0.8);
            color: #e0e0e0;
            font-size: 1rem;
        }
        .module button {
            padding: 14px;
            background: linear-gradient(to right, #1e3a5c, #2a4a6a);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .module button:hover { background: linear-gradient(to right, #2a4a6a, #3a5a7a); }
        .star-rating {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 15px 0;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd700;
        }
        .footer-links {
            background: rgba(10, 26, 42, 0.9);
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 12px 25px;
            background: rgba(30, 58, 92, 0.6);
            border-radius: 30px;
            border: 1px solid #3a5a7a;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(77, 166, 255, 0.2);
            border-color: #4da6ff;
            transform: scale(1.05);
        }
        .links-container {
            text-align: center;
        }
        .site-footer {
            background: #0a1a2a;
            text-align: center;
            padding: 30px 0;
            border-top: 2px solid #1e3a5c;
            font-size: 0.9rem;
            color: #8fa3b8;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .copyright { font-size: 0.85rem; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .header-content { flex-wrap: wrap; }
            .article-header h1 { font-size: 2.2rem; }
            .article-body { font-size: 1rem; padding: 0 10px; }
            .interactive-modules { grid-template-columns: 1fr; }
            .module { padding: 20px; }
            .web-link { display: block; margin: 10px auto; max-width: 300px; }
        }
        .text-bold { font-weight: bold; color: #ffd700; }
        .text-italic { font-style: italic; }
        .text-center { text-align: center; }
        .emoji { font-size: 1.2em; margin: 0 5px; }
        .clearfix::after {
            content: "";
            clear: both;
            display: table;
        }
