        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
            background: linear-gradient(135deg, #4a90e2, #2563eb);
        }
        .section {
            padding: 80px 0;
        }
        .highlight {
            color: #fbbf24;
            font-weight: 700;
        }
        .text-center {
            text-align: center;
        }
        .mb-4 { margin-bottom: 2rem; }
        .mt-4 { margin-top: 2rem; }
        header {
            background-color: #1e293b;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #60a5fa;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #fbbf24;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fbbf24;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #1e293b;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            padding: 20px;
            z-index: 999;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 20px;
        }
        .mobile-nav a {
            color: #e2e8f0;
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-left: 4px solid #3b82f6;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background-color: #334155;
        }
        .breadcrumb {
            background-color: #334155;
            padding: 15px 20px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb i {
            margin: 0 10px;
            color: #94a3b8;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1534447677768-be436bb09401?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 100px 20px;
            text-align: center;
            border-bottom: 5px solid #3b82f6;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: #fef3c7;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.4rem;
            max-width: 900px;
            margin: 0 auto 30px;
            color: #e2e8f0;
        }
        main {
            background-color: #0f172a;
            padding: 40px 0;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #fbbf24;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3b82f6;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: #93c5fd;
            margin-top: 30px;
            margin-bottom: 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;
        }
        .important-note {
            background-color: #312e81;
            border-left: 6px solid #6366f1;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .info-box {
            background-color: #064e3b;
            border-left: 6px solid #10b981;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
            margin-bottom: 30px;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .widget {
            background-color: #1e293b;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .widget h3 {
            color: #fbbf24;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: #3b82f6;
        }
        .search-form input {
            width: 100%;
            padding: 14px;
            border-radius: 50px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: #cbd5e1;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        .search-form button {
            width: 100%;
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }
        .rating-widget .star {
            font-size: 2rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .star.active, .rating-widget .star:hover {
            color: #fbbf24;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            border: 2px solid #475569;
            background-color: #0f172a;
            color: #cbd5e1;
            font-size: 1rem;
            margin-bottom: 15px;
            min-height: 150px;
            resize: vertical;
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #334155;
        }
        .quick-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #e2e8f0;
        }
        .quick-links a:hover {
            color: #fbbf24;
        }
        .web-links-section {
            background-color: #1e293b;
            padding: 60px 20px;
            border-top: 3px solid #3b82f6;
            border-bottom: 3px solid #3b82f6;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background-color: #334155;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #475569;
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #fbbf24;
        }
        footer {
            background-color: #0f172a;
            padding: 50px 20px 30px;
            text-align: center;
            border-top: 1px solid #334155;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-links a {
            color: #94a3b8;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .copyright {
            color: #64748b;
            font-size: 0.9rem;
            padding-top: 30px;
            border-top: 1px solid #334155;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .article-content h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 70px 20px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .btn {
                padding: 10px 22px;
            }
            .widget {
                padding: 20px;
            }
        }
