        * {
            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: #93c5fd;
        }
        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, #1e293b 0%, #334155 100%);
            padding: 1rem 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, #fbbf24, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a i {
            font-size: 2.5rem;
            color: #fbbf24;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #fbbf24;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav ul li a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav ul li a:hover {
            background-color: #475569;
            color: #fbbf24;
        }
        .breadcrumb {
            background-color: #1e293b;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #475569;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #60a5fa;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid #f97316;
        }
        h3 {
            font-size: 1.6rem;
            color: #93c5fd;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #374151;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #fbbf24;
            margin: 1.5rem 0;
        }
        .highlight strong {
            color: #fbbf24;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .search-box, .comment-form, .rating-form {
            background-color: #1e293b;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
            color: #fbbf24;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border: 1px solid #475569;
            border-radius: 6px;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button {
            padding: 0.9rem 1.5rem;
            background: linear-gradient(90deg, #f59e0b, #d97706);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #94a3b8;
            cursor: pointer;
        }
        .stars i:hover, .stars i.active {
            color: #fbbf24;
        }
        .featured-img {
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            border: 3px solid #475569;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: 0.5rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background-color: #1e293b;
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #334155;
            transform: translateX(5px);
        }
        .web-link a {
            color: #cbd5e1;
            font-weight: 600;
            display: block;
        }
        footer {
            background-color: #0f172a;
            border-top: 2px solid #334155;
            padding: 2rem 0;
            text-align: center;
            color: #94a3b8;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .copyright {
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1e293b;
                padding: 1rem;
                border-radius: 8px;
                margin-top: 1rem;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
        .text-center {
            text-align: center;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
