        * { 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, #0a0a1a 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: #a5d8ff; text-decoration: underline; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #333355;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            background: linear-gradient(90deg, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .nav-desktop { display: flex; gap: 2rem; }
        .nav-desktop a { font-weight: 600; }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(26, 26, 46, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #444;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 0.8rem 0; border-bottom: 1px solid #333; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { margin: 0 5px; }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: radial-gradient(circle at center, #222244, transparent);
            margin-bottom: 2rem;
            border-radius: 10px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #444477;
            border-radius: 50px 0 0 50px;
            background: #1e1e3a;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            padding: 15px 25px;
            background: linear-gradient(90deg, #444477, #666699);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: linear-gradient(90deg, #555588, #7777aa); }
        .main-content {
            flex: 1;
            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(30, 30, 58, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid #444477;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-body h2 {
            color: #4dabf7;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #444477;
            font-size: 1.8rem;
        }
        .article-body h3 {
            color: #ffa94d;
            margin: 2rem 0 1rem;
            font-size: 1.4rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-wrapper {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 10px;
            border: 3px solid #555588;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar-widget {
            background: rgba(30, 30, 58, 0.7);
            padding: 1.8rem;
            margin-bottom: 2rem;
            border-radius: 10px;
            border: 1px solid #444477;
        }
        .sidebar-widget h3 {
            color: #ffd700;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .rating-widget input[type="radio"] { display: none; }
        .rating-widget label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget input:checked ~ label,
        .rating-widget label:hover,
        .rating-widget label:hover ~ label { color: #ffd700; }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            background: #1a1a2e;
            border: 1px solid #444;
            border-radius: 5px;
            color: white;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #2d864d, #3da76d);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        .comment-form button:hover { background: linear-gradient(90deg, #3da76d, #4dc78d); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
        }
        .web-link {
            background: rgba(68, 68, 119, 0.2);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(68, 68, 119, 0.4);
        }
        .site-footer {
            background: rgba(10, 10, 20, 0.95);
            padding: 2.5rem 0;
            text-align: center;
            margin-top: auto;
            border-top: 2px solid #333355;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2rem; }
            .article-body { padding: 1.5rem; }
            .footer-links { grid-template-columns: 1fr; }
        }
