        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #4a148c;
            --secondary: #ff6f00;
            --accent: #00bcd4;
            --dark: #1a1a2e;
            --light: #f5f5f5;
            --text: #333;
            --gray: #757575;
            --success: #4caf50;
            --warning: #ff9800;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: #f9f9f9;
            overflow-x: hidden;
        }
        .header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .logo:hover {
            color: var(--accent);
            transform: scale(1.02);
        }
        .logo i {
            color: var(--secondary);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .breadcrumb {
            background-color: #e8eaf6;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        .breadcrumb-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-items: center;
        }
        .breadcrumb-links a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb-links a:hover {
            color: var(--secondary);
            text-decoration: underline;
        }
        .breadcrumb-links i {
            margin: 0 0.5rem;
            color: var(--gray);
            font-size: 0.8rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--dark);
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #e0e0e0;
        }
        h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--dark);
            font-weight: 500;
            background-color: #f0f4ff;
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            border-radius: 4px;
            margin-bottom: 2rem;
        }
        .boss-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .boss-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #e0e0e0;
        }
        .boss-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .boss-header {
            background: linear-gradient(to right, var(--primary), #6a1b9a);
            color: white;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .boss-difficulty {
            display: flex;
            gap: 4px;
        }
        .difficulty-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
        }
        .difficulty-dot.active {
            background-color: var(--secondary);
        }
        .boss-body {
            padding: 1.2rem;
        }
        .boss-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .stat {
            text-align: center;
        }
        .stat-value {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
        }
        .stat-label {
            color: var(--gray);
            font-size: 0.8rem;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        .featured-image img:hover {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            padding: 0 1rem;
        }
        .info-box {
            background-color: #e8f5e9;
            border-left: 5px solid var(--success);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
        }
        .warning-box {
            background-color: #fff3e0;
            border-left: 5px solid var(--warning);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
        }
        .pro-tip {
            background-color: #e3f2fd;
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
            position: relative;
        }
        .pro-tip::before {
            content: "💡 Pro Tip";
            font-weight: 700;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .comparison-table th {
            background-color: var(--primary);
            color: white;
            padding: 1rem;
            text-align: left;
        }
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #e0e0e0;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .comparison-table tr:hover {
            background-color: #f0f0f0;
        }
        .search-section, .comment-section, .rating-section {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 3rem 0;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-input:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
        }
        .btn {
            padding: 0.8rem 1.5rem;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background-color: #3d0c6e;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background-color: var(--secondary);
        }
        .btn-secondary:hover {
            background-color: #e65100;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover, .star.active {
            color: #ffc107;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }
        .sidebar-title {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .boss-list {
            list-style: none;
        }
        .boss-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .boss-list a {
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .boss-list a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .popular-guides {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .guide-link {
            display: block;
            padding: 1rem;
            background-color: #f5f5f5;
            border-radius: 6px;
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
        }
        .guide-link:hover {
            background-color: #e8eaf6;
            color: var(--primary);
            transform: translateX(5px);
        }
        .internal-links {
            background-color: var(--dark);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 6px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .footer {
            background-color: #0d0d1a;
            color: #aaa;
            padding: 2.5rem 0;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .copyright {
            font-size: 0.9rem;
            color: #777;
            margin-top: 1rem;
        }
        .text-bold {
            font-weight: 700;
        }
        .text-highlight {
            background-color: #fff9c4;
            padding: 0 4px;
            border-radius: 2px;
        }
        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .tag {
            display: inline-block;
            background-color: #e0e0e0;
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }
        .tag-primary {
            background-color: #e3f2fd;
            color: var(--primary);
        }
        .tag-warning {
            background-color: #fff3e0;
            color: #e65100;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .main-content {
                gap: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .boss-grid {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
