* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f0f;
            color: #f0f0f0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #ff6b00;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9e5c;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            padding: 20px 0;
            border-bottom: 3px solid #ff6b00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b00, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo a:hover {
            text-shadow: 0 4px 8px rgba(255,107,0,0.4);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,107,0,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ff6b00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            font-size: 1.2rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,107,0,0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ff6b00;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
            background-color: #111;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534423861386-85a16f5d13fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
            border-radius: 15px;
            border-left: 8px solid #ff6b00;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            font-size: 0.95rem;
            color: #ccc;
        }
        .meta-info i {
            margin-right: 8px;
            color: #ff6b00;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            font-size: 1.15rem;
        }
        .article-content h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #ff9e5c;
            border-bottom: 3px solid #333;
            padding-bottom: 10px;
        }
        .article-content h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #ffcc00;
        }
        .article-content p {
            margin-bottom: 25px;
            text-align: justify;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content emoji {
            font-size: 1.5rem;
            margin-right: 8px;
            vertical-align: middle;
        }
        .highlight-box {
            background-color: #1a1a1a;
            border-left: 5px solid #ff6b00;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .sidebar {
            background-color: #1a1a1a;
            padding: 25px;
            border-radius: 10px;
            border-top: 5px solid #ff6b00;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5rem;
            border-bottom: 2px solid #333;
            padding-bottom: 10px;
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #333;
            border-radius: 8px;
            background-color: #111;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 12px;
            background: linear-gradient(90deg, #ff6b00, #ff9e5c);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #ff9e5c, #ff6b00);
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 30px;
        }
        .stars {
            font-size: 2rem;
            color: #333;
            margin: 15px 0;
        }
        .stars .star {
            cursor: pointer;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        .stars .star.active,
        .stars .star:hover {
            color: #ffcc00;
        }
        .rating-result {
            font-size: 1.2rem;
            color: #ffcc00;
            margin-top: 10px;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            border: 2px solid #333;
            border-radius: 8px;
            background-color: #111;
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #0066cc, #0099ff);
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #0099ff, #0066cc);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 40px 0;
            border-top: 2px solid #333;
            border-bottom: 2px solid #333;
            margin-top: 60px;
        }
        .web-link {
            background-color: #1a1a1a;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #222;
        }
        .web-link a {
            color: #f0f0f0;
            font-weight: 600;
        }
        .web-link a:hover {
            color: #ff6b00;
        }
        footer {
            padding: 40px 0;
            text-align: center;
            background-color: #0a0a0a;
            color: #aaa;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #ccc;
        }
        .copyright {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .longtail-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.5rem;
            }
            .meta-info {
                flex-direction: column;
                gap: 10px;
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .longtail-links {
                grid-template-columns: 1fr;
            }
            .article-header {
                padding: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
        }
