        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #ffcc00;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
            text-decoration: underline;
        }
        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, #1a237e 0%, #0a0e17 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: 2rem;
            font-weight: 900;
            color: #ffcc00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
        }
        .logo span {
            color: #00bcd4;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: #ffcc00;
            color: #0a0e17;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #ffcc00;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a237e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #e0e0e0;
            padding: 0.8rem;
            border-bottom: 1px solid #3949ab;
        }
        .mobile-nav a:hover {
            background-color: #3949ab;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #111827;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #80d8ff;
        }
        main {
            padding: 2rem 0;
            background-color: #0f1525;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: radial-gradient(circle, #1a237e 0%, #0a0e17 100%);
            border-radius: 12px;
            border-left: 6px solid #ffcc00;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .article-meta {
            color: #b0bec5;
            font-style: italic;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            font-size: 1.1rem;
        }
        article h2 {
            color: #00bcd4;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #3949ab;
        }
        article h3 {
            color: #80d8ff;
            margin: 1.5rem 0 0.8rem;
        }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        article em {
            color: #ce93d8;
        }
        .highlight-box {
            background-color: #1a237e;
            border-left: 5px solid #ffcc00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2rem auto;
            text-align: center;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #3949ab;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #b0bec5;
            margin-top: 0.5rem;
        }
        aside {
            background-color: #111827;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #3949ab;
            height: fit-content;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            color: #ffcc00;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #3949ab;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border-radius: 6px;
            border: 1px solid #3949ab;
            background-color: #1a237e;
            color: #fff;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to right, #ffcc00, #ff9800);
            color: #0a0e17;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            transform: translateY(-3px);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.5rem;
            color: #ffcc00;
        }
        .footer-links {
            background-color: #0a0e17;
            padding: 3rem 0 2rem;
            border-top: 2px solid #1a237e;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: #111827;
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid #00bcd4;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #1a237e;
            transform: translateX(5px);
        }
        .web-link a {
            color: #80d8ff;
            font-weight: 600;
        }
        footer {
            background-color: #050a14;
            padding: 2rem 0;
            text-align: center;
            color: #b0bec5;
            border-top: 1px solid #1a237e;
        }
        .social-icons {
            margin-bottom: 1rem;
        }
        .social-icons a {
            color: #b0bec5;
            font-size: 1.5rem;
            margin: 0 0.8rem;
            transition: color 0.3s ease;
        }
        .social-icons a:hover {
            color: #ffcc00;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            .article-header {
                padding: 1.5rem;
            }
        }
