        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #d1d5db;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #60a5fa;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, transparent 0%, #1e293b 50%, transparent 100%);
            padding: 2px 8px;
            border-left: 3px solid #f59e0b;
        }
        .site-header {
            background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
            border-bottom: 2px solid #334155;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #ef4444, #f59e0b);
            -webkit-background-clip: text;
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f59e0b;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            background: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            border-top: 1px solid #334155;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 0 20px;
        }
        .nav-mobile a {
            color: #cbd5e1;
            display: block;
            padding: 0.75rem;
            border-radius: 5px;
        }
        .nav-mobile a:hover {
            background-color: #334155;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1e293b;
            font-size: 0.9rem;
        }
        .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: #64748b;
        }
        .article-hero {
            padding: 3rem 0;
            background: radial-gradient(circle at 30% 20%, #1e293b 0%, #0f1419 70%);
            border-bottom: 1px solid #334155;
        }
        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #f8fafc;
            line-height: 1.2;
        }
        .hero-meta {
            display: flex;
            gap: 1.5rem;
            color: #94a3b8;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
        .hero-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            font-size: 1.1rem;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #f8fafc;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        .article-content h3 {
            font-size: 1.7rem;
            color: #e2e8f0;
            margin: 2.5rem 0 1rem;
        }
        .article-content p {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .article-content ul, .article-content ol {
            margin-bottom: 1.8rem;
            padding-left: 2rem;
        }
        .article-content li {
            margin-bottom: 0.5rem;
        }
        .inline-image {
            float: right;
            margin: 1rem 0 1rem 2rem;
            max-width: 400px;
            border: 2px solid #334155;
            border-radius: 8px;
            overflow: hidden;
        }
        .inline-image img {
            width: 100%;
            height: auto;
        }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: #94a3b8;
            padding: 0.5rem;
            background-color: #1e293b;
        }
        .info-box {
            background: #1e293b;
            border-left: 5px solid #3b82f6;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .info-box h4 {
            color: #60a5fa;
            margin-bottom: 0.5rem;
        }
        .sidebar-widget {
            background: #1e293b;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #334155;
        }
        .sidebar-widget h3 {
            color: #f8fafc;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #475569;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            background: #0f1419;
            border: 1px solid #475569;
            border-right: none;
            border-radius: 5px 0 0 5px;
            color: #d1d5db;
        }
        .search-form button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #2563eb;
        }
        .rating-form .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            justify-content: center;
        }
        .rating-form .star {
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-form .star.active,
        .rating-form .star:hover {
            color: #f59e0b;
        }
        .rating-form input, .comment-form input,
        .rating-form textarea, .comment-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: #0f1419;
            border: 1px solid #475569;
            border-radius: 5px;
            color: #d1d5db;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 0.9rem;
            background: #10b981;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #059669;
        }
        .footer-links-section {
            background: #1e293b;
            padding: 3rem 0;
            border-top: 2px solid #334155;
            border-bottom: 2px solid #334155;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: #0f1419;
            padding: 1rem;
            border-radius: 5px;
            border-left: 3px solid #3b82f6;
        }
        .web-link a {
            color: #cbd5e1;
            display: block;
        }
        .web-link a:hover {
            color: #60a5fa;
        }
        .site-footer {
            padding: 2rem 0;
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .hero-content h1 { font-size: 2.2rem; }
            .article-content h2 { font-size: 1.9rem; }
            .article-content h3 { font-size: 1.5rem; }
            .inline-image {
                float: none;
                margin: 1.5rem auto;
                max-width: 100%;
            }
        }
