        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #38bdf8, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fbbf24;
        }
        nav.desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav.desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav.desktop-nav a:hover {
            background-color: #334155;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #cbd5e1;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1e293b;
            padding: 20px;
            border-top: 1px solid #334155;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 6px;
        }
        .mobile-nav a:hover {
            background-color: #334155;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #60a5fa;
        }
        .hero {
            text-align: center;
            padding: 50px 0 30px;
            background: radial-gradient(ellipse at top, #1e293b 0%, #0f172a 70%);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #f1f5f9;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e1;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #475569;
            border-radius: 50px 0 0 50px;
            background-color: #1e293b;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-box button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .search-box button:hover {
            transform: scale(1.03);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h2, h3, h4 {
            color: #fbbf24;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid #334155;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #38bdf8;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #334155;
            border-left: 4px solid #fbbf24;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .boss-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #0f172a;
            border-radius: 8px;
            overflow: hidden;
        }
        .boss-table th, .boss-table td {
            border: 1px solid #334155;
            padding: 15px;
            text-align: left;
        }
        .boss-table th {
            background-color: #1e40af;
            color: #f1f5f9;
            font-weight: 700;
        }
        .boss-table tr:nth-child(even) {
            background-color: #1e293b;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            border-radius: 12px;
            border: 3px solid #475569;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
        }
        ul, ol {
            padding-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        strong {
            color: #fbbf24;
            font-weight: 700;
        }
        em {
            color: #a78bfa;
        }
        aside {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 30px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #38bdf8;
        }
        .quick-links ul {
            list-style: none;
            padding-left: 0;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 12px 15px;
            background-color: #0f172a;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
            transition: all 0.3s ease;
        }
        .quick-links a:hover {
            background-color: #334155;
            transform: translateX(5px);
        }
        .rating-widget {
            text-align: center;
            padding: 25px;
            background: linear-gradient(135deg, #1e3a8a, #3730a3);
            border-radius: 12px;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars span {
            margin: 0 2px;
            transition: transform 0.2s;
        }
        .stars span:hover {
            transform: scale(1.3);
        }
        .comments-section {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 40px;
            margin-top: 40px;
        }
        .comment-form, .score-form {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #cbd5e1;
        }
        .form-group input, .form-group textarea, .form-group select {
            padding: 15px;
            background-color: #0f172a;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 15px 30px;
            background: linear-gradient(90deg, #10b981, #3b82f6);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.2s, opacity 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            opacity: 0.95;
        }
        .comment-list .comment {
            background-color: #0f172a;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            border-left: 5px solid #475569;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: bold;
            color: #60a5fa;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 60px 0 40px;
        }
        .web-link {
            background-color: #1e293b;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #334155;
            transition: transform 0.3s ease, border-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: #3b82f6;
        }
        footer {
            background-color: #0f172a;
            border-top: 2px solid #334155;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            nav.desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero p {
                font-size: 1rem;
            }
            article, .comments-section, aside {
                padding: 25px;
            }
            .content-grid {
                gap: 30px;
            }
        }
