        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #1a1a2e;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #a5d8ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #37b24d, #2b8a3e);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(43, 138, 62, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #2b8a3e, #1c6b2f);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(43, 138, 62, 0.5);
        }
        header {
            background-color: #16213e;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #37b24d, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #b8c1ec;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #4dabf7;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #16213e;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #b8c1ec;
            padding: 10px;
            border-bottom: 1px solid #2d3746;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #0f3460;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb span {
            color: #ccc;
            margin: 0 5px;
        }
        .hero {
            padding: 4rem 0;
            text-align: center;
            background: radial-gradient(circle at center, #2d3746 0%, #16213e 70%);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, #37b24d, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: #b8c1ec;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-section {
            background-color: #0f3460;
            padding: 2rem 0;
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: #1e3a5f;
            color: white;
        }
        .search-box button {
            background: linear-gradient(135deg, #37b24d, #2b8a3e);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(135deg, #2b8a3e, #1c6b2f);
        }
        main {
            padding: 3rem 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background-color: #16213e;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-content h2 {
            color: #4dabf7;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #2d3746;
            font-size: 2.2rem;
        }
        .article-content h3 {
            color: #37b24d;
            margin: 2rem 0 1rem;
            font-size: 1.8rem;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ffd43b;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2d3746, #1a2332);
            border-left: 5px solid #4dabf7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .feature-list {
            list-style: none;
            margin: 2rem 0;
        }
        .feature-list li {
            padding: 12px 0 12px 40px;
            position: relative;
        }
        .feature-list li:before {
            content: '✅';
            position: absolute;
            left: 0;
            top: 12px;
            font-size: 1.2rem;
        }
        aside {
            background-color: #16213e;
            padding: 2rem;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            color: #ffd43b;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px solid #2d3746;
        }
        .sidebar-links li {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar-links li:before {
            content: '🔗';
            position: absolute;
            left: 0;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd43b;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comments-section {
            background-color: #16213e;
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 3rem;
        }
        .comments-section h2 {
            color: #4dabf7;
            margin-bottom: 2rem;
        }
        .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 1.5rem;
            background-color: #0f3460;
            border: 1px solid #2d3746;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment {
            background-color: #0f3460;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 4px solid #37b24d;
        }
        .comment-author {
            color: #ffd43b;
            font-weight: bold;
            margin-bottom: 8px;
        }
        .footer-links {
            background-color: #0f3460;
            padding: 3rem 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #16213e;
            padding: 1.5rem;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #a5d8ff;
            font-weight: 500;
        }
        footer {
            background-color: #0a1931;
            padding: 2.5rem 0;
            text-align: center;
            border-top: 1px solid #2d3746;
        }
        .copyright {
            color: #8a9bb2;
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .social-links a {
            color: #b8c1ec;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #4dabf7;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            aside {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-content {
                padding: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.9rem;
            }
            .header-content, .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.9rem;
            }
            .btn, .search-box button {
                padding: 12px 20px;
            }
            .search-box input {
                padding: 15px;
            }
        }
