        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a0f;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #8B0000, #B22222);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
        }
        .btn:hover {
            background: linear-gradient(135deg, #B22222, #8B0000);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(139, 0, 0, 0.6);
        }
        .main-header {
            background: rgba(10, 10, 15, 0.95);
            border-bottom: 2px solid #8B0000;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(to right, #8B0000, #FF4500);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(139, 0, 0, 0.3);
        }
        .logo span {
            color: #FFD700;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover {
            color: #FF4500;
            border-bottom-color: #FF4500;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #FFD700;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: rgba(20, 20, 25, 0.98);
            padding: 20px;
            display: none;
            flex-direction: column;
            gap: 20px;
            z-index: 999;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px;
            border-left: 4px solid #8B0000;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(139, 0, 0, 0.2);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #1a1a1f;
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #FFD700;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            padding: 60px 20px;
            text-align: center;
            background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0f 100%);
            border-bottom: 3px solid #8B0000;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #FF4500, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            padding: 20px;
            background-color: rgba(30, 30, 40, 0.7);
            border-radius: 10px;
            border: 1px solid #444;
        }
        .search-box h3 {
            margin-bottom: 15px;
            color: #FFD700;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid #555;
            border-radius: 6px 0 0 6px;
            background-color: #222;
            color: white;
            font-size: 1rem;
        }
        .search-btn {
            padding: 15px 25px;
            background-color: #8B0000;
            color: white;
            border: none;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
        }
        .search-btn:hover {
            background-color: #B22222;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .main-content {
            background-color: rgba(20, 20, 25, 0.7);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-section {
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 2px dashed #444;
        }
        .article-section h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #FF4500;
            padding-left: 15px;
            border-left: 6px solid #FFD700;
        }
        .article-section h3 {
            font-size: 1.7rem;
            margin: 25px 0 15px;
            color: #FFD700;
        }
        .article-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            padding: 20px;
            border-left: 5px solid #FFD700;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #8B0000;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .feature-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background-color: #1a1a1a;
            color: #aaa;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #333;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #8B0000;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #FF4500;
            margin-bottom: 15px;
        }
        .sidebar {
            background-color: rgba(20, 20, 25, 0.7);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #444;
        }
        .sidebar-widget:last-child {
            border-bottom: none;
        }
        .sidebar-widget h4 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #FFD700;
            padding-bottom: 10px;
            border-bottom: 2px solid #8B0000;
        }
        .rating-box, .comment-box {
            background-color: rgba(30, 30, 40, 0.9);
            padding: 30px;
            border-radius: 12px;
            margin: 40px auto;
            max-width: 800px;
            border: 1px solid #444;
        }
        .rating-box h3, .comment-box h3 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #FFD700;
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background-color: #222;
            border: 2px solid #555;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 15px;
            resize: vertical;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            padding: 40px 20px;
            background-color: #1a1a1f;
            border-top: 3px solid #8B0000;
            border-bottom: 1px solid #333;
        }
        .web-link {
            padding: 12px 20px;
            background-color: rgba(40, 40, 50, 0.8);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(139, 0, 0, 0.3);
            transform: translateX(5px);
        }
        .web-link a {
            color: #FFD700;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .main-footer {
            background-color: #0c0c12;
            padding: 40px 20px 20px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: #aaa;
        }
        .footer-links a:hover {
            color: #FF4500;
        }
        .copyright {
            color: #777;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 900;
            color: #FFD700;
        }
        .text-center {
            text-align: center;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
