        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1e293b;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            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: 800;
            background: linear-gradient(90deg, #3b82f6, #10b981);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }
        .nav-links a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background-color: #334155;
            color: #7dd3fc;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.95rem;
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-section {
            background: linear-gradient(135deg, #1e40af, #065f46);
            padding: 30px;
            border-radius: 15px;
            margin: 30px auto;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .search-section h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #f0f9ff;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            background-color: #f8fafc;
            color: #1e293b;
        }
        .search-button {
            padding: 15px 30px;
            background-color: #f59e0b;
            color: #1c1917;
            border: none;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-button:hover {
            background-color: #d97706;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px auto;
        }
        article {
            background-color: #1e293b;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            color: #38bdf8;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #10b981;
            margin: 30px 0 15px;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #fbbf24;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #374151;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 6px solid #8b5cf6;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
        }
        .image-container img {
            max-width: 800px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #94a3b8;
            font-size: 1rem;
        }
        aside {
            background-color: #1e293b;
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #60a5fa;
            font-size: 1.5rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #475569;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-form textarea, .rating-form select, .comment-form input {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #334155;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            padding: 12px;
            background-color: #10b981;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background-color: #059669;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.5rem;
            color: #fbbf24;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 50px 0 30px;
        }
        .web-link {
            background-color: #334155;
            padding: 15px 25px;
            border-radius: 10px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #475569;
        }
        .web-link a {
            font-size: 1.1rem;
            color: #7dd3fc;
            font-weight: 500;
        }
        footer {
            background-color: #1e293b;
            padding: 40px 0;
            text-align: center;
            border-top: 3px solid #3b82f6;
            margin-top: 40px;
        }
        .copyright {
            color: #94a3b8;
            font-size: 1rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 15px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1e293b;
                margin-top: 20px;
                padding: 20px;
                border-radius: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: 50px;
                margin-bottom: 10px;
            }
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
        }
