        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            color: #e1e1e1;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        h1, h2, h3, h4 {
            font-family: Georgia, 'Times New Roman', Times, serif;
            color: #d4af37;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 3px solid #8b0000;
            padding-bottom: 0.5rem;
            text-align: center;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #8b0000;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #f5deb3;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #c9b176;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #f0e6d2;
            font-style: italic;
            border-left: 4px solid #d4af37;
            padding-left: 20px;
            margin: 2rem 0;
        }
        strong {
            color: #ffd700;
            font-weight: 700;
        }
        em {
            color: #b0c4de;
        }
        a {
            color: #00bfff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff4500;
            text-shadow: 0 0 8px rgba(255, 69, 0, 0.5);
        }
        blockquote {
            border-left: 5px solid #8b0000;
            padding: 1.5rem;
            margin: 2rem 0;
            background: rgba(139, 0, 0, 0.1);
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #d4af37, #8b0000, #000080);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(26, 26, 46, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li {
            margin-right: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: #d4af37;
        }
        .breadcrumb a {
            color: #b0c4de;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        .main-nav a {
            color: #f0e6d2;
            padding: 0.8rem 1.5rem;
            margin: 0 0.2rem;
            border-radius: 5px;
            font-weight: 600;
            display: block;
            border: 1px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            background: rgba(139, 0, 0, 0.3);
            border-color: #d4af37;
            color: #ffd700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .interactive-module {
            background: rgba(22, 33, 62, 0.7);
            border-radius: 15px;
            padding: 2rem;
            margin: 2.5rem 0;
            border: 2px solid #d4af37;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .module-title {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.5rem;
            color: #d4af37;
        }
        .module-title i {
            font-size: 1.5rem;
        }
        .search-form, .comment-form, .rating-form {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 15px;
            align-items: center;
        }
        .search-form input, .comment-form textarea, .rating-form select {
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #444;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            width: 100%;
            transition: border-color 0.3s ease;
        }
        .search-form input:focus, .comment-form textarea:focus {
            outline: none;
            border-color: #d4af37;
        }
        .comment-form {
            grid-template-columns: 1fr;
        }
        .rating-form {
            grid-template-columns: auto 1fr auto;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #ffd700;
        }
        button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #8b0000, #b22222);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        button:hover {
            background: linear-gradient(90deg, #b22222, #8b0000);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(139, 0, 0, 0.4);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content {
            background: rgba(15, 15, 25, 0.7);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
        }
        .sidebar {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            padding: 2rem;
            align-self: start;
            border: 1px solid #d4af37;
        }
        .sidebar h3 {
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #444;
        }
        .related-links a {
            display: block;
            padding: 0.8rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            transition: background 0.3s ease;
        }
        .related-links a:hover {
            background: rgba(212, 175, 55, 0.2);
        }
        .featured-image {
            margin: 3rem auto;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            border: 5px solid #d4af37;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
            max-width: 900px;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            padding: 1rem;
            background: rgba(0, 0, 0, 0.7);
            font-style: italic;
            color: #b0c4de;
        }
        .info-box {
            background: linear-gradient(145deg, rgba(139, 0, 0, 0.2), rgba(0, 0, 128, 0.2));
            border-left: 8px solid #d4af37;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 15px 15px 0;
        }
        .warning {
            border-left-color: #ff4500;
            background: rgba(255, 69, 0, 0.1);
        }
        .tip {
            border-left-color: #00bfff;
            background: rgba(0, 191, 255, 0.1);
        }
        .site-footer {
            background: #0a0a0a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 5px solid #8b0000;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h4 {
            color: #f5deb3;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        friend-link:hover {
            background: rgba(212, 175, 55, 0.15);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mt-3 { margin-top: 3rem; }
        .mb-3 { margin-bottom: 3rem; }
        .last-updated {
            font-size: 0.9rem;
            color: #aaa;
            text-align: right;
            margin-top: 1rem;
            font-style: italic;
        }
        .tag {
            display: inline-block;
            background: rgba(139, 0, 0, 0.5);
            color: #f0e6d2;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                padding: 1rem;
                border-top: 2px solid #8b0000;
            }
            .main-nav.active ul {
                display: flex;
            }
            .main-nav a {
                margin: 0.3rem 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .search-form, .rating-form {
                grid-template-columns: 1fr;
            }
            .rating-form {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stars {
                justify-content: center;
            }
        }
        @media (max-width: 480px) {
            .article-content, .sidebar, .interactive-module {
                padding: 1.5rem;
            }
            .module-title {
                flex-direction: column;
                text-align: center;
            }
        }
