        * { 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, #0a0a2a 0%, #1a1a3a 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a { color: #8bb9fe; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #ffcc00; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid { grid-template-columns: 1fr; }
        }
        .site-header {
            background: rgba(10, 14, 35, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #2a3b5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #b0c4ff;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover,
        .main-nav a.active { color: #ffcc00; border-bottom-color: #ffcc00; }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ffcc00;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 14, 35, 0.98);
                flex-direction: column;
                padding: 20px;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
            }
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8a9bb2;
        }
        .breadcrumb a { color: #b0c4ff; }
        .breadcrumb span { margin: 0 8px; }
        .main-content {
            background: rgba(20, 25, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 5, 20, 0.5);
            margin-top: 20px;
        }
        .article-header { text-align: center; margin-bottom: 50px; }
        h1 {
            font-size: 3.2rem;
            color: #ffcc00;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
            line-height: 1.2;
        }
        @media (max-width: 768px) { h1 { font-size: 2.5rem; } }
        .lead {
            font-size: 1.4rem;
            color: #b0c4ff;
            max-width: 900px;
            margin: 0 auto 30px;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: #8a9bb2;
            font-size: 0.95rem;
            border-top: 1px dashed #2a3b5c;
            border-bottom: 1px dashed #2a3b5c;
            padding: 15px 0;
            flex-wrap: wrap;
        }
        h2 {
            font-size: 2.3rem;
            color: #8bb9fe;
            margin: 60px 0 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #2a3b5c;
        }
        h3 {
            font-size: 1.8rem;
            color: #b0c4ff;
            margin: 40px 0 20px;
        }
        h4 {
            font-size: 1.4rem;
            color: #c5d5ff;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .bold-em { font-weight: 800; color: #ffcc00; }
        .inline-link {
            background: rgba(139, 185, 254, 0.15);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .featured-image {
            margin: 40px auto;
            max-width: 900px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
            border: 2px solid #2a3b5c;
        }
        .featured-image img { width: 100%; transition: transform 0.5s; }
        .featured-image:hover img { transform: scale(1.03); }
        .img-caption {
            text-align: center;
            font-size: 0.95rem;
            color: #8a9bb2;
            padding: 10px;
            background: rgba(20, 25, 50, 0.8);
        }
        .sidebar {
            margin-top: 20px;
        }
        .widget {
            background: rgba(20, 25, 50, 0.7);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #2a3b5c;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-top: 0;
            color: #ffcc00;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i { font-size: 1.2rem; }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 14px 20px;
            border: 1px solid #2a3b5c;
            background: rgba(10, 14, 35, 0.8);
            color: #e0e0e0;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #2a3b5c, #3a5b9c);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: linear-gradient(90deg, #3a5b9c, #4a7bbc); }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .star { cursor: pointer; transition: color 0.2s, transform 0.2s; }
        .star:hover,
        .star.active { color: #ffcc00; transform: scale(1.2); }
        .rating-form button {
            width: 100%;
            padding: 15px;
            background: #2a3b5c;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            transition: background 0.3s;
        }
        .rating-form button:hover { background: #3a5b9c; }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border: 1px solid #2a3b5c;
            background: rgba(10, 14, 35, 0.8);
            color: #e0e0e0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #2a3b5c;
            background: rgba(10, 14, 35, 0.8);
            color: #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
        }
        .comment-form button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #8b0000, #b22222);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover { background: linear-gradient(90deg, #b22222, #d22); }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            padding: 12px 15px;
            margin-bottom: 12px;
            background: rgba(139, 185, 254, 0.1);
            border-left: 4px solid #8bb9fe;
            border-radius: 0 8px 8px 0;
            transition: background 0.3s, transform 0.2s;
        }
        .related-links li:hover {
            background: rgba(139, 185, 254, 0.25);
            transform: translateX(5px);
        }
        .site-footer {
            margin-top: 80px;
            border-top: 2px solid #2a3b5c;
            padding-top: 40px;
            text-align: center;
            color: #8a9bb2;
        }
        friend-link {
            display: block;
            margin: 25px 0;
            font-size: 1.1rem;
        }
        friend-link a {
            color: #ffcc00;
            font-weight: bold;
        }
        .copyright {
            font-size: 0.9rem;
            border-top: 1px dashed #2a3b5c;
            padding-top: 20px;
            margin-top: 20px;
        }
        .emoji { font-size: 1.2em; vertical-align: middle; }
        .text-center { text-align: center; }
        .mb-30 { margin-bottom: 30px; }
        .mt-40 { margin-top: 40px; }
        .py-20 { padding-top: 20px; padding-bottom: 20px; }
