        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            transition: color 0.3s;
        }
        a:hover {
            color: #38bdf8;
        }
        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%, #0f172a 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #f59e0b;
        }
        .search-form {
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-box {
            display: flex;
            background: #1e293b;
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid #334155;
        }
        .search-box input {
            flex-grow: 1;
            background: transparent;
            border: none;
            padding: 12px 20px;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-box button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 12px 25px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #2563eb;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #f1f5f9;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: #1e293b;
            border-radius: 8px;
            overflow: hidden;
        }
        nav li {
            flex: 1;
        }
        nav a {
            display: block;
            padding: 16px 24px;
            text-align: center;
            font-weight: 600;
            color: #cbd5e1;
            border-right: 1px solid #334155;
        }
        nav li:last-child a {
            border-right: none;
        }
        nav a:hover {
            background: #334155;
            color: #60a5fa;
        }
        nav a i {
            margin-right: 8px;
        }
        .breadcrumb {
            padding: 12px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        main {
            padding: 30px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: #1e293b;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        h1 {
            font-size: 2.5rem;
            color: #fbbf24;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #334155;
        }
        h3 {
            font-size: 1.5rem;
            color: #34d399;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(96, 165, 250, 0.1);
            border-left: 4px solid #60a5fa;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .article-img {
            margin: 30px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            border: 2px solid #334155;
        }
        .article-img figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            color: #94a3b8;
            background: #0f172a;
        }
        aside {
            background: #1e293b;
            border-radius: 12px;
            padding: 25px;
            align-self: start;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #f59e0b;
            font-size: 1.3rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #334155;
        }
        .rating-widget, .comment-widget {
            background: #0f172a;
            padding: 20px;
            border-radius: 8px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 15px 0;
        }
        .stars i {
            color: #94a3b8;
            cursor: pointer;
            font-size: 1.8rem;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #fbbf24;
        }
        form label {
            display: block;
            margin-bottom: 8px;
            color: #cbd5e1;
        }
        form input, form textarea {
            width: 100%;
            padding: 12px;
            background: #1e293b;
            border: 1px solid #334155;
            border-radius: 6px;
            color: #f1f5f9;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        form button {
            background: #10b981;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            transition: background 0.3s;
        }
        form button:hover {
            background: #0da271;
        }
        .footer-links {
            background: #0f172a;
            padding: 40px 0;
            border-top: 1px solid #334155;
            border-bottom: 1px solid #334155;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .web-link {
            background: #1e293b;
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(96, 165, 250, 0.2);
        }
        .web-link a {
            display: block;
            color: #cbd5e1;
            font-weight: 600;
        }
        footer {
            text-align: center;
            padding: 25px 0;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 10px;
            border-top: 1px solid #334155;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .links-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
            .menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
                border-radius: 8px;
            }
            nav ul.active {
                display: flex;
            }
            nav li {
                border-bottom: 1px solid #334155;
            }
            nav li:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .links-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .links-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 15px;
            }
            article, aside {
                padding: 20px;
            }
        }
