        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1525;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #5dade2;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #ff6600, #ff9900);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(90deg, #ff9900, #ffcc00);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(255, 102, 0, 0.3);
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #0d0d2b 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc00, #ff6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #5dade2;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #b0b0ff;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffcc00;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1a1a40;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            flex-direction: column;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            color: #e0e0e0;
            font-size: 1.2rem;
            padding: 10px;
            display: block;
            border-bottom: 1px solid #333366;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #151a30;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #666;
        }
        .search-section {
            padding: 30px 0;
            background-color: #131a2e;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background: #1e2747;
            color: white;
            font-size: 1.1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #3366ff, #6699ff);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #6699ff, #88aaff);
        }
        main {
            padding: 40px 0;
            background: radial-gradient(circle at 20% 30%, #1a1f38 0%, #0f1525 100%);
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(26, 35, 126, 0.7), rgba(13, 13, 43, 0.9));
            border-radius: 20px;
            border-left: 8px solid #ffcc00;
        }
        .article-header h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
        }
        .meta {
            color: #aaa;
            font-style: italic;
            margin-top: 15px;
        }
        .content-area {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-area {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 39, 71, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        .article-content h2 {
            color: #5dade2;
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ff6600;
        }
        .article-content h3 {
            color: #ff9966;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #ffcc00;
        }
        .image-with-caption {
            margin: 40px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-with-caption img {
            border-radius: 10px;
            border: 3px solid #3366ff;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .caption {
            margin-top: 10px;
            color: #aaa;
            font-style: italic;
        }
        .sidebar {
            background: rgba(25, 30, 56, 0.9);
            padding: 30px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #ff9966;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #5dade2;
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget ul {
            list-style: none;
        }
        .widget li {
            padding: 12px 0;
            border-bottom: 1px dashed #444;
        }
        .widget li:last-child {
            border-bottom: none;
        }
        .rating-widget {
            text-align: center;
            background: rgba(51, 102, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
        }
        .stars {
            font-size: 2.5rem;
            color: #ffcc00;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #ff9900;
        }
        .comment-section {
            margin-top: 60px;
            background: rgba(30, 39, 71, 0.7);
            padding: 40px;
            border-radius: 15px;
        }
        .comment-section h2 {
            color: #5dade2;
            margin-bottom: 30px;
        }
        .comment-form .form-group {
            margin-bottom: 25px;
        }
        .comment-form label {
            display: block;
            margin-bottom: 8px;
            color: #b0b0ff;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: #1e2747;
            border: 1px solid #444;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-list {
            margin-top: 50px;
        }
        .comment {
            background: #151a30;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 25px;
            border-left: 5px solid #5dade2;
        }
        .comment-author {
            color: #ffcc00;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .comment-date {
            color: #888;
            font-size: 0.9rem;
        }
        .footer-links-section {
            padding: 50px 0;
            background: #131a2e;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #b0b0ff;
            font-weight: 500;
            display: block;
            font-size: 1.1rem;
        }
        footer {
            background: #0d0d2b;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #777;
            font-size: 0.95rem;
            padding-top: 20px;
            border-top: 1px solid #333366;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
            .content-area {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .footer-nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .footer-links-container {
                grid-template-columns: 1fr;
            }
        }
