        * {
            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: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            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%, #0f172a 100%);
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
            color: #f59e0b;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 1.1rem;
        }
        nav a:hover {
            background-color: #334155;
            color: #ffffff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f59e0b;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1e293b;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #94a3b8;
        }
        main {
            padding: 40px 0;
            background-color: #0f172a;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-body {
            font-size: 1.1rem;
        }
        .content-body h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #f59e0b;
            border-left: 5px solid #ef4444;
            padding-left: 15px;
        }
        .content-body h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #93c5fd;
        }
        .content-body p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .content-body strong {
            color: #fbbf24;
            font-weight: 700;
        }
        .content-body em {
            color: #a78bfa;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(145deg, #1e293b, #334155);
            border-left: 5px solid #10b981;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .image-wrapper img {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border: 2px solid #475569;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 10px;
            font-style: italic;
        }
        .sidebar {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 25px;
            height: fit-content;
            border: 1px solid #334155;
        }
        .sidebar h3 {
            color: #f59e0b;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #475569;
        }
        .widget {
            margin-bottom: 30px;
        }
        .search-form input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-form button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-form button:hover {
            transform: translateY(-3px);
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
        }
        .stars .active {
            color: #fbbf24;
        }
        .rating-widget button {
            padding: 12px;
            background-color: #10b981;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
        }
        .comments-section {
            margin-top: 50px;
            background-color: #1e293b;
            border-radius: 12px;
            padding: 30px;
        }
        .comments-section h2 {
            color: #f59e0b;
            margin-bottom: 25px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 15px;
        }
        .comment-form button {
            padding: 12px 30px;
            background: linear-gradient(90deg, #ef4444, #f59e0b);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
        }
        .footer-links {
            background-color: #1e293b;
            padding: 40px 0;
            border-top: 2px solid #334155;
            border-bottom: 2px solid #334155;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #0f172a;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
        }
        .web-link a {
            color: #cbd5e1;
            font-size: 1rem;
            display: block;
            padding: 5px 0;
        }
        .web-link a:hover {
            color: #60a5fa;
            text-decoration: underline;
        }
        footer {
            background-color: #0f172a;
            padding: 30px 0;
            text-align: center;
            color: #94a3b8;
            font-size: 0.95rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .copyright {
            border-top: 1px solid #334155;
            padding-top: 20px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1e293b;
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
                gap: 15px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .article-header h1 {
                font-size: 2.2rem;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
