        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0c1a2d;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #80c1ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2b4d 0%, #0c1a2d 100%);
            padding: 1rem 0;
            border-bottom: 3px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 1px;
        }
        .logo a span {
            color: #4da6ff;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .desktop-nav a:hover {
            background-color: rgba(255, 204, 0, 0.2);
            color: #ffcc00;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #1a2b4d;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a3b5d;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav a {
            color: #e0e0e0;
            display: block;
            padding: 0.8rem;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #14213d;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 0.5rem;
            color: #888;
        }
        main {
            padding: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1a2b4d;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h1 {
            color: #ffcc00;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            gap: 1.5rem;
            color: #aaa;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .article-body h2 {
            color: #4da6ff;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3b5d;
        }
        .article-body h3 {
            color: #80c1ff;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-body strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(to right, #14213d, #1a2b4d);
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .article-image {
            margin: 2.5rem 0;
            text-align: center;
        }
        .article-image img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            border: 2px solid #2a3b5d;
            margin: 0 auto;
        }
        .image-caption {
            margin-top: 0.8rem;
            color: #aaa;
            font-style: italic;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #1a2b4d;
            border-radius: 15px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem;
            border: none;
            border-radius: 8px 0 0 8px;
            background-color: #0c1a2d;
            color: #e0e0e0;
        }
        .search-form button {
            background-color: #ffcc00;
            color: #0c1a2d;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #e6b800;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffcc00;
        }
        .rating-widget input, .rating-widget textarea {
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid #2a3b5d;
            background-color: #0c1a2d;
            color: #e0e0e0;
        }
        .rating-widget button {
            background-color: #4da6ff;
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .rating-widget button:hover {
            background-color: #3385e6;
        }
        .comments-section {
            margin-top: 3rem;
            background-color: #1a2b4d;
            border-radius: 15px;
            padding: 2.5rem;
        }
        .comments-section h2 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
        }
        .comment-form {
            display: grid;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .comment-form input, .comment-form textarea {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #2a3b5d;
            background-color: #0c1a2d;
            color: #e0e0e0;
        }
        .comment-form button {
            background-color: #4da6ff;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .comment-form button:hover {
            background-color: #3385e6;
        }
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .comment {
            border-bottom: 1px solid #2a3b5d;
            padding-bottom: 1.8rem;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.8rem;
            color: #aaa;
            font-size: 0.9rem;
        }
        .comment-author {
            color: #4da6ff;
            font-weight: bold;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: #14213d;
            border-radius: 15px;
        }
        .web-link {
            background-color: #1a2b4d;
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #22345e;
        }
        .web-link a {
            color: #80c1ff;
            display: block;
        }
        footer {
            background-color: #0a1525;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #ffcc00;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            color: #888;
            padding-top: 1.5rem;
            border-top: 1px solid #1a2b4d;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-body h2 {
                font-size: 1.8rem;
            }
            .article-body h3 {
                font-size: 1.4rem;
            }
            .article-content, .widget, .comments-section {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
                padding: 1.5rem;
            }
        }
