        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background-color: #0d1b2a;
            background-image: linear-gradient(180deg, #0d1b2a 0%, #1b263b 100%);
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4cc9f0;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f72585;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 50px 0;
            border-bottom: 1px solid #2a3c5a;
        }
        .section:last-of-type {
            border-bottom: none;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', Gadget, sans-serif;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #4cc9f0, #f72585);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            color: #4cc9f0;
            border-left: 5px solid #f72585;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #9d4edd;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ff9e00;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #b8c1ec;
            font-weight: 300;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 2.5rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        strong {
            color: #ff9e00;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(156, 39, 176, 0.2), rgba(244, 143, 177, 0.2));
            padding: 2px 8px;
            border-radius: 4px;
        }
        header {
            background-color: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #1b3a5c;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Impact', Charcoal, sans-serif;
            font-size: 2.5rem;
            background: linear-gradient(45deg, #4cc9f0, #9d4edd);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: #b8c1ec;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav a:hover, nav a.active {
            color: #ffffff;
            background-color: rgba(76, 201, 240, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #4cc9f0;
            cursor: pointer;
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1b263b;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li {
            margin-right: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 10px;
            color: #4cc9f0;
        }
        .breadcrumb a {
            color: #b8c1ec;
        }
        .breadcrumb a:hover {
            color: #4cc9f0;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(27, 38, 59, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #8892b0;
            font-size: 0.95rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #2a3c5a;
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .difficulty-chart {
            width: 100%;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #f72585;
        }
        .difficulty-chart h3 {
            margin-top: 0;
        }
        .boss-entry {
            background-color: rgba(42, 60, 90, 0.5);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .boss-entry:hover {
            border-color: #4cc9f0;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .boss-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .boss-difficulty {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .difficulty-easy { background-color: #2e7d32; color: #ffffff; }
        .difficulty-medium { background-color: #f9a825; color: #000; }
        .difficulty-hard { background-color: #ef5350; color: #ffffff; }
        .difficulty-expert { background-color: #7b1fa2; color: #ffffff; }
        .difficulty-master { background-color: #000000; color: #ff0000; }
        .boss-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin: 15px 0;
            background-color: rgba(0,0,0,0.2);
            padding: 15px;
            border-radius: 8px;
        }
        .stat {
            text-align: center;
        }
        .stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4cc9f0;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #8892b0;
        }
        .tip-box {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box strong {
            color: #ffd700;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background-color: rgba(27, 38, 59, 0.7);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .sidebar-widget h3 {
            color: #ff9e00;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3c5a;
        }
        .search-form {
            display: flex;
            margin-bottom: 20px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #2a3c5a;
            border-radius: 8px 0 0 8px;
            background-color: #1b263b;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(90deg, #4cc9f0, #3a86ff);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            padding: 0 20px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(90deg, #3a86ff, #4cc9f0);
        }
        .toc ul {
            list-style: none;
            padding-left: 10px;
        }
        .toc li {
            margin-bottom: 10px;
            padding-left: 15px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .toc li:hover {
            border-left-color: #f72585;
            padding-left: 20px;
        }
        .toc a {
            color: #b8c1ec;
            display: block;
        }
        .toc a:hover {
            color: #ffffff;
        }
        .interaction-section {
            margin-top: 50px;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 40px;
        }
        .stars {
            font-size: 2.5rem;
            margin: 15px 0;
            color: #444;
        }
        .stars i {
            cursor: pointer;
            padding: 0 5px;
            transition: color 0.2s;
        }
        .stars i:hover, .stars i.active {
            color: #ffd700;
        }
        .comment-form, .rating-form {
            background-color: rgba(42, 60, 90, 0.5);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #b8c1ec;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #2a3c5a;
            border-radius: 8px;
            background-color: #1b263b;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: #4cc9f0;
        }
        .submit-btn {
            background: linear-gradient(90deg, #f72585, #9d4edd);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #9d4edd, #f72585);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(157, 78, 221, 0.3);
        }
        .comments-list {
            margin-top: 30px;
        }
        .comment {
            background-color: rgba(27, 38, 59, 0.7);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid #4cc9f0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #8892b0;
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: bold;
            color: #ff9e00;
        }
        .footer-links {
            background-color: #1b263b;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .web-link {
            background-color: rgba(42, 60, 90, 0.5);
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: rgba(76, 201, 240, 0.1);
            transform: translateY(-3px);
        }
        .web-link a {
            color: #b8c1ec;
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: #4cc9f0;
        }
        footer {
            background-color: #0d1b2a;
            color: #8892b0;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid #2a3c5a;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .social-links {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a {
            color: #8892b0;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #4cc9f0;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 10px;
            }
            .hamburger {
                display: block;
            }
            .article-content {
                padding: 20px;
            }
            .boss-stats {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .delay-1 { animation-delay: 0.2s; opacity: 0; }
        .delay-2 { animation-delay: 0.4s; opacity: 0; }
