        * { 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.8;
            color: #2c3e50;
            background-color: #f8f9fa;
            background-image: linear-gradient(to bottom, #0a0e2a 0%, #1a1f3a 150px, #f8f9fa 150px);
            background-repeat: no-repeat;
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .main-header {
            background-color: rgba(10, 14, 42, 0.95);
            color: #fff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            color: #f5c518;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #ff9900, 2px 2px 0 #000;
            transition: all 0.3s ease;
        }
        .logo a:hover { color: #fff; text-shadow: 0 0 15px #ff9900, 3px 3px 0 #000; }
        .logo span { color: #dc1a22; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s;
            position: relative;
        }
        .main-nav a:hover, .main-nav a.active {
            color: #f5c518;
            background-color: rgba(255, 255, 255, 0.1);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #f5c518;
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        .main-nav a:hover::after { width: 80%; }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #f5c518;
            cursor: pointer;
            padding: 0.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            color: #6c757d;
            font-size: 0.9rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb a {
            color: #0a0e2a;
            text-decoration: none;
        }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb i { margin: 0 8px; }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .article-main {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        .article-header { margin-bottom: 2.5rem; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #0a0e2a;
            margin-bottom: 1rem;
            line-height: 1.2;
            border-left: 6px solid #f5c518;
            padding-left: 1rem;
        }
        .article-meta {
            color: #6c757d;
            font-size: 0.95rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .article-meta span { display: inline-flex; align-items: center; gap: 6px; }
        .article-content h2 {
            font-size: 2rem;
            color: #0a0e2a;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #e9ecef;
        }
        .article-content h3 {
            font-size: 1.6rem;
            color: #1a1f3a;
            margin: 2rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-content emoji { font-size: 1.2em; margin-right: 5px; }
        .article-content strong {
            color: #0a0e2a;
            font-weight: 700;
            background-color: #fff9e6;
            padding: 0 3px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-left: 5px solid #f5c518;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
        }
        .article-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.5s ease;
            border: 3px solid #fff;
            outline: 1px solid #dee2e6;
        }
        .article-image:hover { transform: scale(1.02); }
        .image-caption {
            font-style: italic;
            color: #6c757d;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: #fff;
            padding: 1.8rem;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        .widget h3 {
            font-size: 1.4rem;
            color: #0a0e2a;
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid #f5c518;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i { color: #f5c518; }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #dee2e6;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-form input:focus {
            outline: none;
            border-color: #f5c518;
        }
        .search-form button {
            background: #0a0e2a;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.3s;
            font-size: 1.1rem;
        }
        .search-form button:hover { background: #f5c518; color: #0a0e2a; }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 1rem;
        }
        .rating-widget .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active { color: #f5c518; transform: scale(1.1); }
        .rating-form { display: none; margin-top: 1rem; }
        .rating-form.active { display: block; }
        .rating-form textarea,
        .rating-form input {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-family: inherit;
        }
        .rating-form button {
            background: #28a745;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            transition: background 0.3s;
        }
        .rating-form button:hover { background: #218838; }
        .comments-list { margin-top: 1.5rem; }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment:last-child { border-bottom: none; }
        .comment-author {
            font-weight: bold;
            color: #0a0e2a;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-date { color: #6c757d; font-size: 0.85rem; margin-left: auto; }
        .comment-text { margin-top: 0.5rem; }
        .footer-links {
            background: #1a1f3a;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1.2rem;
            border-radius: 8px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(245, 197, 24, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ddd;
            text-decoration: none;
            font-size: 1rem;
            display: block;
            line-height: 1.6;
        }
        .web-link a:hover { color: #f5c518; text-decoration: underline; }
        .main-footer {
            background: #0a0e2a;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }
        .footer-container { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
        .social-links { display: flex; gap: 1.5rem; margin: 1rem 0; }
        .social-links a {
            color: #ddd;
            font-size: 1.5rem;
            transition: color 0.3s, transform 0.3s;
        }
        .social-links a:hover { color: #f5c518; transform: scale(1.2); }
        .copyright { color: #888; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0a0e2a;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .main-nav ul.active { display: flex; }
            .article-header h1 { font-size: 2.2rem; }
            .article-content h2 { font-size: 1.8rem; }
            .content-wrapper { gap: 1.5rem; }
            .article-main { padding: 1.5rem; }
        }
