        * { 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 ease, text-shadow 0.3s ease; }
        a:hover { color: #80ccff; 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;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; color: #fff; }
        .highlight { background: linear-gradient(90deg, transparent 0%, rgba(77, 166, 255, 0.15) 50%, transparent 100%); padding: 2px 8px; border-radius: 3px; }
        .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: 900;
            background: linear-gradient(to right, #ffd166, #ff9a3c, #ef476f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(239, 71, 111, 0.3);
            letter-spacing: 1px;
        }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a {
            color: #b8d4ff;
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover { border-bottom-color: #4da6ff; }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #4da6ff;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-desktop {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 26, 42, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease;
            }
            .nav-desktop.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .nav-desktop a {
                width: 90%;
                text-align: center;
                padding: 15px;
                border-bottom: 1px solid #1e3a5c;
            }
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 58, 92, 0.3);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #4da6ff;
        }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
            flex-grow: 1;
        }
        @media (max-width: 992px) {
            .main-wrapper { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(20, 35, 50, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2a4a6e;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        .article-header { margin-bottom: 40px; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(90deg, #80ccff, #ff9a3c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: #8ab4f8;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        .article-body h2 {
            font-size: 2rem;
            color: #4da6ff;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a4a6e;
        }
        .article-body h3 {
            font-size: 1.6rem;
            color: #ffb347;
            margin: 35px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body blockquote {
            border-left: 5px solid #ef476f;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #b8d4ff;
            background: rgba(239, 71, 111, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .article-body ul, .article-body ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-body li { margin-bottom: 10px; }
        .inline-image {
            float: right;
            margin: 15px 0 25px 30px;
            max-width: 450px;
            border-radius: 10px;
            border: 2px solid #4da6ff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .article-content { padding: 25px; }
            .article-header h1 { font-size: 2.2rem; }
            .inline-image {
                float: none;
                margin: 25px auto;
                max-width: 100%;
            }
        }
        .sidebar {
            background: rgba(20, 35, 50, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #2a4a6e;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: #ffb347;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #2a4a6e;
            font-size: 1.4rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label {
            margin-bottom: 8px;
            color: #b8d4ff;
            font-weight: 600;
        }
        .form-control {
            padding: 12px 15px;
            background: rgba(42, 74, 110, 0.5);
            border: 1px solid #3a5a7e;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #4da6ff;
            box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
        }
        .btn {
            padding: 12px 25px;
            background: linear-gradient(90deg, #4da6ff, #2b6cb0);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(77, 166, 255, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .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;
            border-top: 2px solid #1e3a5c;
            border-bottom: 2px solid #1e3a5c;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(30, 58, 92, 0.4);
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: rgba(77, 166, 255, 0.15);
            transform: translateX(5px);
        }
        .web-link a { font-weight: 600; }
        .site-footer {
            padding: 30px 0;
            text-align: center;
            color: #8ab4f8;
            font-size: 0.95rem;
            background: rgba(5, 15, 25, 0.95);
        }
        .copyright { margin-top: 10px; }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-body > * { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }
        .article-body > *:nth-child(1) { animation-delay: 0.1s; }
        .article-body > *:nth-child(2) { animation-delay: 0.2s; }
        .article-body > *:nth-child(3) { animation-delay: 0.3s; }
        .article-body > *:nth-child(4) { animation-delay: 0.4s; }
        .article-body > *:nth-child(5) { animation-delay: 0.5s; }
        .article-body > *:nth-child(n+6) { animation-delay: 0.6s; }
