        * { 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, #0c1a2a 0%, #1a3a5f 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #74c0fc; transform: translateY(-2px); }
        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; }
        .highlight { background: linear-gradient(90deg, transparent 0%, rgba(77, 171, 247, 0.15) 50%, transparent 100%); padding: 0.2rem 0.5rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background: rgba(12, 26, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2d4d76;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffd43b, #f08c00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .logo a:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #c1d4e9;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .main-nav a:hover, .main-nav a.active {
            color: #ffd43b;
            border-bottom-color: #ffd43b;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd43b;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(12, 26, 42, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2d4d76;
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 1rem 0; }
        .mobile-nav a { font-size: 1.1rem; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a { color: #94a3b8; }
        .breadcrumb a:hover { color: #ffd43b; }
        .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-content {
            background: rgba(26, 38, 58, 0.8);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #334155;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd43b;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
        }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3b5b7c;
        }
        h3 {
            font-size: 1.6rem;
            color: #a5d8ff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #c1d4e9;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .article-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #3b5b7c;
            max-width: 800px;
        }
        .article-img img { width: 100%; transition: transform 0.5s ease; }
        .article-img img:hover { transform: scale(1.03); }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            padding: 0.5rem;
            font-size: 0.95rem;
        }
        ul, ol { margin: 1.5rem 0 1.5rem 2rem; }
        blockquote {
            border-left: 4px solid #ffd43b;
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #c1d4e9;
            background: rgba(255, 212, 59, 0.05);
            border-radius: 0 8px 8px 0;
            padding: 1.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(26, 38, 58, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #334155;
        }
        .sidebar-widget h3 {
            color: #ffd43b;
            margin-top: 0;
            font-size: 1.4rem;
            border-bottom: 1px solid #3b5b7c;
            padding-bottom: 0.5rem;
        }
        .search-form { display: flex; }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 1px solid #3b5b7c;
            border-radius: 5px 0 0 5px;
            background: #0f172a;
            color: #e0e0e0;
        }
        .search-form button {
            background: #3b5b7c;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #4d729c; }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-group { display: flex; flex-direction: column; }
        .form-group label { margin-bottom: 0.3rem; font-weight: 600; color: #c1d4e9; }
        .form-group input, .form-group textarea, .form-group select {
            padding: 0.8rem;
            border: 1px solid #3b5b7c;
            border-radius: 5px;
            background: #0f172a;
            color: #e0e0e0;
            font-family: inherit;
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(to right, #339af0, #1c7ed6);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(28, 126, 214, 0.4);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .star-rating input { display: none; }
        .star-rating label {
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label { color: #ffd43b; }
        .site-footer {
            background: rgba(12, 26, 42, 0.95);
            border-top: 2px solid #2d4d76;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-section h3 {
            color: #ffd43b;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        friend-link {
            display: block;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            margin-bottom: 0.5rem;
            transition: background 0.3s;
        }
        friend-link:hover { background: rgba(255, 212, 59, 0.1); }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav { display: none; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .article-content { padding: 1.5rem; }
            .header-inner, .footer-content { flex-direction: column; align-items: flex-start; }
        }
