        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1a2a;
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #5dade2;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #85c1e9;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2536 0%, #0c1220 100%);
            border-bottom: 2px solid #2e4053;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #5dade2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo span {
            color: #ffd700;
            -webkit-text-fill-color: #ffd700;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            position: relative;
        }
        .nav-desktop a:hover {
            background-color: rgba(93, 173, 226, 0.15);
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #5dade2;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-desktop a:hover::after {
            width: 80%;
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: #e0e7ff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger-btn {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background-color: #1a2536;
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #2e4053;
        }
        .close-btn {
            background: none;
            border: none;
            color: #e0e7ff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .mobile-nav-links a {
            padding: 0.8rem;
            border-radius: 6px;
            font-weight: 600;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        .mobile-nav-links a:hover {
            background-color: rgba(93, 173, 226, 0.15);
            border-left-color: #5dade2;
            padding-left: 1.2rem;
        }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s, visibility 0.4s;
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aab7c4;
            background-color: #141e2e;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #aab7c4;
        }
        .breadcrumb a:hover {
            color: #5dade2;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            font-size: 0.8rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: linear-gradient(145deg, #16213a, #0d1525);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #2a3a5a;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #2e4053;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd700;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            color: #aab7c4;
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .intro {
            font-size: 1.2rem;
            color: #c5d1e6;
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background-color: rgba(42, 58, 90, 0.3);
            border-radius: 8px;
            border-left: 4px solid #5dade2;
        }
        h2 {
            font-size: 2.2rem;
            color: #5dade2;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2e4053;
        }
        h3 {
            font-size: 1.7rem;
            color: #85c1e9;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #a3d6f7;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: #ffd700;
        }
        .content-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            border: 2px solid #3a506b;
            max-width: 800px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #aab7c4;
            padding: 0.8rem;
            background-color: rgba(42, 58, 90, 0.5);
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.7rem;
        }
        .class-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .class-card {
            background: linear-gradient(to bottom right, #1c2b4a, #131d32);
            border-radius: 10px;
            padding: 1.8rem;
            border: 1px solid #3a506b;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .class-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
            border-color: #5dade2;
        }
        .class-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #ffd700;
        }
        .class-card h4 {
            color: #ffd700;
            margin-bottom: 0.8rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: #141e2e;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .stats-table th {
            background-color: #2e4053;
            color: #ffd700;
            padding: 1rem;
            text-align: left;
        }
        .stats-table td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid #2a3a5a;
        }
        .stats-table tr:hover {
            background-color: rgba(93, 173, 226, 0.1);
        }
        .stage-progression {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .stage {
            background-color: rgba(26, 37, 54, 0.7);
            border-radius: 10px;
            padding: 1.8rem;
            border-left: 5px solid #ff6b6b;
        }
        .stage pre-hardmode {
            border-left-color: #5dade2;
        }
        .stage hardmode {
            border-left-color: #9b59b6;
        }
        .stage post-ml {
            border-left-color: #ffd700;
        }
        .gear-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }
        .gear-item {
            background-color: #2a3a5a;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gear-item i {
            color: #85c1e9;
        }
        aside {
            background: linear-gradient(145deg, #16213a, #0d1525);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid #2a3a5a;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        @media (max-width: 992px) {
            aside {
                position: static;
            }
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2e4053;
        }
        .search-box {
            display: flex;
            margin-bottom: 1.5rem;
        }
        .search-box input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            background-color: #141e2e;
            border: 1px solid #2e4053;
            border-radius: 8px 0 0 8px;
            color: #e0e7ff;
            outline: none;
        }
        .search-box button {
            background-color: #5dade2;
            color: #0f1a2a;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #85c1e9;
        }
        .toc {
            list-style: none;
            margin-left: 0;
        }
        .toc li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            position: relative;
        }
        .toc li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #5dade2;
            font-size: 0.8rem;
        }
        .toc a {
            color: #c5d1e6;
            display: block;
            padding: 0.3rem 0;
        }
        .toc a:hover {
            color: #85c1e9;
            padding-left: 0.3rem;
            transition: all 0.2s;
        }
        .popular-classes {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .pop-class {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background-color: rgba(42, 58, 90, 0.5);
            border-radius: 8px;
            transition: background-color 0.3s;
        }
        .pop-class:hover {
            background-color: rgba(93, 173, 226, 0.2);
        }
        .pop-class i {
            font-size: 1.8rem;
            color: #ffd700;
        }
        .interactive-section {
            background-color: #141e2e;
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid #3a506b;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 2rem;
        }
        .rating-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #ffd700;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
            transform: scale(1.1);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-group label {
            font-weight: 600;
            color: #aab7c4;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.9rem 1.2rem;
            background-color: #0f1a2a;
            border: 1px solid #2e4053;
            border-radius: 8px;
            color: #e0e7ff;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #5dade2;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #5dade2, #3498db);
            color: #0f1a2a;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #85c1e9, #5dade2);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(93, 173, 226, 0.3);
        }
        .comments-section {
            margin-top: 3rem;
        }
        .comment {
            background-color: rgba(26, 37, 54, 0.7);
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid #3a506b;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .comment-author {
            font-weight: bold;
            color: #ffd700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-date {
            color: #aab7c4;
            font-size: 0.9rem;
        }
        .comment-rating {
            display: flex;
            gap: 0.3rem;
        }
        .comment-rating i {
            color: #ffd700;
            font-size: 0.9rem;
        }
        .long-tail-section {
            margin: 4rem 0 2rem;
            padding-top: 2rem;
            border-top: 2px solid #2e4053;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #1a2536;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #2a3a5a;
            transition: all 0.3s;
        }
        .web-link:hover {
            background-color: #21304a;
            border-color: #5dade2;
            transform: translateY(-5px);
        }
        .site-footer {
            background: linear-gradient(135deg, #0c1220 0%, #1a2536 100%);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 2px solid #2e4053;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #5dade2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        .footer-description {
            color: #aab7c4;
            line-height: 1.6;
        }
        .footer-links h4 {
            color: #ffd700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #c5d1e6;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            transition: color 0.3s, padding-left 0.3s;
        }
        .footer-links a:hover {
            color: #85c1e9;
            padding-left: 0.5rem;
        }
        .footer-links i {
            color: #5dade2;
            width: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2a3a5a;
            color: #aab7c4;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article,
            aside,
            .interactive-section {
                padding: 1.5rem;
            }
            .class-grid {
                grid-template-columns: 1fr;
            }
            .article-meta {
                flex-direction: column;
                gap: 0.8rem;
                align-items: center;
            }
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
        .stagger-delay-1 { animation-delay: 0.1s; }
        .stagger-delay-2 { animation-delay: 0.2s; }
        .stagger-delay-3 { animation-delay: 0.3s; }
        .stagger-delay-4 { animation-delay: 0.4s; }
        @media print {
            .site-header,
            aside,
            .interactive-section,
            .long-tail-section,
            .site-footer,
            .search-box,
            .rating-widget,
            .comments-section {
                display: none;
            }
            body {
                background-color: white;
                color: black;
                font-size: 12pt;
            }
            a {
                color: #0000ee;
                text-decoration: underline;
            }
            .container {
                max-width: 100%;
            }
            article {
                box-shadow: none;
                border: 1px solid #ccc;
            }
        }
