* {
            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;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #3b82f6;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }
        .logo a:hover {
            color: #60a5fa;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: background 0.3s, color 0.3s;
        }
        .desktop-nav a:hover {
            background: #334155;
            color: #ffffff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #3b82f6;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 15px;
            background: #1e293b;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #cbd5e1;
            text-decoration: none;
            padding: 10px;
            border-left: 4px solid #3b82f6;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: #334155;
        }
        .breadcrumb {
            margin-top: 15px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #60a5fa;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        .article-content {
            background: #1e293b;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .article-content h1 {
            font-size: 2.8rem;
            color: #3b82f6;
            margin-bottom: 20px;
            border-bottom: 3px solid #3b82f6;
            padding-bottom: 10px;
        }
        .article-content h2 {
            font-size: 2rem;
            color: #60a5fa;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        .article-content h3 {
            font-size: 1.5rem;
            color: #93c5fd;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content strong {
            color: #fbbf24;
            font-weight: bold;
        }
        .article-content emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            border: 3px solid #3b82f6;
            transition: transform 0.3s;
        }
        .article-content img:hover {
            transform: scale(1.02);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: #1e293b;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .widget h3 {
            color: #3b82f6;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #475569;
            border-radius: 8px;
            background: #0f172a;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 12px;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: #2563eb;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 1.5rem;
            color: #fbbf24;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars i:hover {
            color: #f59e0b;
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-top: 40px;
            margin-bottom: 30px;
        }
        .web-link {
            background: #1e293b;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: background 0.3s, transform 0.3s;
        }
        .web-link:hover {
            background: #334155;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #60a5fa;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #0f172a;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #334155;
            margin-top: 50px;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            main {
                grid-template-columns: 1fr;
            }
            .long-tail-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
        }
        @media (max-width: 480px) {
            .long-tail-links {
                grid-template-columns: 1fr;
            }
            .article-content h1 {
                font-size: 1.8rem;
            }
            .article-content h2 {
                font-size: 1.5rem;
            }
        }
