        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0a0e17 0%, #13182a 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4, .logo { font-family: 'Cinzel', 'Times New Roman', serif; font-weight: 700; color: #f0b84d; }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; text-shadow: 0 2px 8px rgba(240, 184, 77, 0.3); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 2.5rem 0 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid #2a3b5c; }
        h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 2rem 0 1rem; color: #a3c6ff; }
        h4 { font-size: 1.3rem; margin: 1.5rem 0 0.8rem; color: #7aa6ff; }
        p { margin-bottom: 1.5rem; font-size: 1.05rem; }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; }
        a:hover { color: #80ccff; text-shadow: 0 0 6px rgba(77, 166, 255, 0.5); }
        strong { color: #f0d84d; font-weight: 700; }
        em { color: #b3d9ff; font-style: italic; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr minmax(300px, 25%);
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 1024px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .site-header {
            background: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1c2a44;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #f0b84d, #ff7e5f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover { text-shadow: 0 0 12px rgba(240, 184, 77, 0.7); }
        .main-nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .main-nav a {
            color: #c0cce0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f0b84d;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after { width: 100%; }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #f0b84d;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .main-nav {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(10, 14, 23, 0.98);
                padding: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
                border-top: 1px solid #2a3b5c;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1.5rem;
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            color: #8899bb;
            font-size: 0.9rem;
            background: rgba(28, 42, 68, 0.3);
            border-bottom: 1px solid #1c2a44;
        }
        .breadcrumb a { color: #a3c6ff; }
        .breadcrumb i { margin: 0 0.5rem; }
        main { padding: 2rem 0; }
        .article-content {
            background: rgba(19, 24, 42, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #2a3b5c;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .card {
            background: rgba(28, 42, 68, 0.5);
            border-radius: 10px;
            padding: 1.8rem;
            border: 1px solid #3a4b7c;
        }
        .card h3 { margin-top: 0; }
        .search-form { position: relative; }
        .search-form input {
            width: 100%;
            padding: 1rem 1rem 1rem 3rem;
            background: rgba(10, 14, 23, 0.8);
            border: 1px solid #4a5b8c;
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-form button {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #a3c6ff;
            cursor: pointer;
        }
        .interactive-module { background: rgba(10, 14, 23, 0.6); }
        .rating-stars { display: flex; gap: 0.5rem; margin: 1rem 0; }
        .rating-stars i { color: #444; cursor: pointer; font-size: 1.5rem; transition: color 0.2s; }
        .rating-stars i:hover, .rating-stars i.active { color: #f0b84d; }
        .form-group { margin-bottom: 1.2rem; }
        .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: #b3d9ff; }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #3a4b7c;
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .btn {
            display: inline-block;
            padding: 0.9rem 1.8rem;
            background: linear-gradient(90deg, #2a5fa4, #1a3a6a);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn:hover {
            background: linear-gradient(90deg, #3a6fb4, #2a4a7a);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 95, 164, 0.3);
        }
        .featured-img {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #f0b84d;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(42, 59, 92, 0.3);
            border-radius: 10px;
            margin: 2rem 0;
        }
        .internal-links a {
            padding: 0.6rem 1.2rem;
            background: rgba(77, 166, 255, 0.1);
            border: 1px solid #4da6ff;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .site-footer {
            background: #0a0e17;
            border-top: 1px solid #1c2a44;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        friend-link {
            display: block;
            padding: 0.5rem 0;
            color: #a3c6ff;
            border-bottom: 1px dashed #2a3b5c;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1c2a44;
            color: #8899bb;
            font-size: 0.9rem;
        }
        .highlight-box {
            padding: 1.8rem;
            margin: 2rem 0;
            border-left: 5px solid #f0b84d;
            background: rgba(240, 184, 77, 0.05);
            border-radius: 0 8px 8px 0;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #8899bb;
            font-size: 0.9rem;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #2a3b5c;
        }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
