        * { 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: #333;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a365d 100%);
            color: #e2e8f0;
            overflow-x: hidden;
        }
        a { color: #63b3ed; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #90cdf4; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; margin-bottom: 1rem; color: #ffffff; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #2d3748; }
        h3 { font-size: 1.8rem; margin-top: 2rem; color: #cbd5e0; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        strong { color: #fbd38d; }
        em { color: #a0aec0; }
        .highlight { background-color: rgba(251, 211, 141, 0.15); padding: 0.2rem 0.5rem; border-radius: 4px; }
        blockquote {
            border-left: 4px solid #4299e1;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #cbd5e0;
        }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid #2d3748;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: #63b3ed;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon { color: #f56565; }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        .nav-desktop a:hover {
            background-color: #2d3748;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #e2e8f0;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1a202c;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2d3748;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid #2d3748;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .breadcrumb a { color: #a0aec0; }
        .breadcrumb a:hover { color: #ffffff; }
        .main-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-wrapper { grid-template-columns: 1fr; }
        }
        .article-content {
            background: rgba(26, 32, 44, 0.8);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .intro { font-size: 1.3rem; margin-bottom: 2.5rem; color: #cbd5e0; }
        .section { margin-bottom: 3rem; }
        .img-container {
            margin: 2rem auto;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid #4a5568;
        }
        .img-container img { width: 100%; max-width: 800px; }
        .caption { font-size: 0.9rem; color: #a0aec0; margin-top: 0.5rem; }
        .sidebar {
            background: rgba(26, 32, 44, 0.8);
            padding: 2rem;
            border-radius: 12px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: #fbd38d;
            border-left: 4px solid #f56565;
            padding-left: 1rem;
        }
        .search-box, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem 1rem;
            border: 1px solid #4a5568;
            border-radius: 8px;
            background-color: #2d3748;
            color: #e2e8f0;
            font-size: 1rem;
            width: 100%;
        }
        button {
            padding: 0.9rem 1.5rem;
            background: linear-gradient(90deg, #4299e1, #63b3ed);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.8rem;
            color: #4a5568;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active { color: #f6e05e; }
        .footer-links {
            background: #1a202c;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #2d3748;
            padding: 1.2rem;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover { background: #4a5568; }
        .web-link a { display: block; font-weight: 600; }
        .site-footer {
            background: #0c1a2d;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #2d3748;
            color: #a0aec0;
            font-size: 0.95rem;
        }
        .footer-nav { margin-bottom: 1rem; }
        .footer-nav a { margin: 0 1rem; }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .article-content, .sidebar { padding: 1.5rem; }
            .main-wrapper { gap: 2rem; }
        }
