        @font-face {
            font-family: 'Font Awesome';
            font-style: normal;
            font-weight: 400;
            src: url("data:application/font-woff2;charset=utf-8;base64,d09GMgABAAAAAA...") format('woff2');
        }
        .fa {
            font-family: 'Font Awesome';
            font-weight: 400;
            display: inline-block;
            font-style: normal;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .fa-bars:before { content: "\f0c9"; }
        .fa-search:before { content: "\f002"; }
        .fa-comment:before { content: "\f075"; }
        .fa-star:before { content: "\f005"; }
        .fa-star-half-alt:before { content: "\f5c0"; }
        .fa-external-link-alt:before { content: "\f35d"; }
        .fa-calendar-alt:before { content: "\f073"; }
        .fa-user:before { content: "\f007"; }
        .fa-chevron-right:before { content: "\f054"; }
        .fa-share-alt:before { content: "\f1e0"; }
        * {
            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, #0c141f 0%, #1a2b3d 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            text-decoration: underline;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #0d3b66;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #ffed4e;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #b0bec5;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #ffd700;
            border-bottom-color: #ffd700;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 25, 47, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid #0d3b66;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #b0bec5;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #1a3a5f;
        }
        .nav-mobile a:hover {
            background: rgba(13, 59, 102, 0.5);
            color: #ffd700;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #90a4ae;
            border-bottom: 1px solid #2d3e50;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #4fc3f7;
        }
        .breadcrumb .fa-chevron-right {
            margin: 0 0.5rem;
            font-size: 0.7rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: rgba(20, 30, 48, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #2d3e50;
        }
        .sidebar {
            background: rgba(20, 30, 48, 0.7);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #2d3e50;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        @media (max-width: 992px) {
            .sidebar {
                position: static;
            }
        }
        h1 {
            font-size: 3.2rem;
            color: #ffd700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid #0d3b66;
            padding-bottom: 1rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2d3e50;
        }
        h3 {
            font-size: 1.7rem;
            color: #81c784;
            margin: 2rem 0 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #ffb74d;
            margin: 1.5rem 0 0.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b0bec5;
            font-weight: 300;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 4px solid #0d3b66;
        }
        .highlight {
            background: rgba(13, 59, 102, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 5px solid #ffd700;
            margin: 2rem 0;
        }
        .highlight strong {
            color: #ffd700;
        }
        .info-box {
            background: rgba(41, 182, 246, 0.1);
            border: 1px solid #29b6f6;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .quote {
            font-style: italic;
            color: #ce93d8;
            padding: 1.5rem;
            border-left: 4px solid #ce93d8;
            background: rgba(206, 147, 216, 0.1);
            margin: 2rem 0;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: #ffb74d;
        }
        .article-image {
            margin: 2.5rem auto;
            max-width: 800px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            border: 2px solid #2d3e50;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #90a4ae;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: #ffd700;
        }
        em {
            color: #81c784;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(13, 59, 102, 0.5);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #b0bec5;
            margin: 2rem 0;
        }
        .search-box, .comment-form, .rating-form {
            background: rgba(30, 40, 60, 0.8);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #2d3e50;
        }
        .form-title {
            color: #4fc3f7;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.3rem;
            color: #b0bec5;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #2d3e50;
            background: rgba(10, 25, 47, 0.8);
            color: #e0e0e0;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4fc3f7;
            box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
        }
        button, .btn {
            background: linear-gradient(to right, #0d3b66, #1a5f9e);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #1a5f9e, #2a7bc8);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 95, 158, 0.4);
            text-decoration: none;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 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;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #2d3e50;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .widget-title {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .related-links a {
            display: block;
            padding: 0.7rem 0;
            border-bottom: 1px dashed #2d3e50;
            color: #b0bec5;
        }
        .related-links a:last-child {
            border-bottom: none;
        }
        .related-links a:hover {
            color: #ffd700;
            padding-left: 0.5rem;
        }
        .site-footer {
            background: rgba(10, 20, 35, 0.95);
            border-top: 2px solid #0d3b66;
            margin-top: 4rem;
            padding: 3rem 0 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: #4fc3f7;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            margin-bottom: 0.8rem;
            border: 1px solid transparent;
            transition: all 0.3s;
        }
        friend-link:hover {
            border-color: #4fc3f7;
            background: rgba(79, 195, 247, 0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2d3e50;
            color: #90a4ae;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .article-body, .sidebar {
                padding: 1.5rem;
            }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            h3 { font-size: 1.4rem; }
            p { font-size: 1rem; }
        }
