* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #3b82f6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #fbbf24;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            text-shadow: 0 0 10px #fbbf24;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background-color: #334155;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #fbbf24;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #334155;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.75rem;
            border-bottom: 1px solid #334155;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #fbbf24;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 2rem;
            padding: 2rem;
            background: linear-gradient(90deg, #1e293b, #0f172a);
            border-radius: 10px;
            border-left: 5px solid #fbbf24;
        }
        h1 {
            font-size: 2.8rem;
            color: #fbbf24;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .article-content {
            background-color: #1e293b;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin: 1.5rem 0 1rem;
            border-bottom: 2px solid #334155;
            padding-bottom: 0.5rem;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #fbbf24;
            margin: 1.2rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
            color: #cbd5e1;
        }
        .article-content strong {
            color: #fbbf24;
            font-weight: bold;
        }
        .article-content em {
            color: #60a5fa;
            font-style: italic;
        }
        .highlight {
            background-color: #334155;
            padding: 1rem;
            border-left: 4px solid #fbbf24;
            margin: 1.5rem 0;
            border-radius: 5px;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #334155;
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            background-color: #1e293b;
            padding: 1.5rem;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #fbbf24;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2rem;
        }
        .search-box input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border: 1px solid #334155;
            border-radius: 5px;
            background-color: #0f172a;
            color: #f1f5f9;
        }
        .search-box button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        .search-box button:hover, .comment-form button:hover, .rating-form button:hover {
            background-color: #2563eb;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .star-rating i {
            color: #94a3b8;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .star-rating i:hover, .star-rating i.active {
            color: #fbbf24;
        }
        footer {
            background-color: #0f172a;
            padding: 2rem 0;
            border-top: 2px solid #334155;
            margin-top: 3rem;
        }
        .internal-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: #1e293b;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #334155;
        }
        .web-link a {
            color: #60a5fa;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            color: #94a3b8;
            font-size: 0.9rem;
            padding-top: 1rem;
            border-top: 1px solid #334155;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .internal-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.3rem;
            }
            .internal-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .internal-links {
                grid-template-columns: 1fr;
            }
            .article-header {
                padding: 1.5rem;
            }
        }
