        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-gold: #d4af37;
            --accent-red: #c34a36;
            --text-light: #f1f1f1;
            --text-gray: #b8b8b8;
            --shadow-heavy: 0 10px 20px rgba(0, 0, 0, 0.5);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 15% 50%, rgba(44, 44, 84, 0.5) 0%, transparent 20%), radial-gradient(circle at 85% 30%, rgba(100, 50, 50, 0.3) 0%, transparent 20%);
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffdd55;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 3.2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            background: linear-gradient(90deg, #d4af37, #ffdd55);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid var(--accent-red);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #e6b655;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--text-gray);
            font-style: italic;
            border-left: 3px solid var(--accent-gold);
            padding-left: 20px;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(195, 74, 54, 0.15);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        header {
            background-color: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-heavy);
            border-bottom: 2px solid var(--accent-gold);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: var(--accent-gold);
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a:hover {
            color: #ffdd55;
            transform: scale(1.02);
        }
        .logo i {
            color: var(--accent-red);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-red);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
            background: none;
            border: none;
        }
        .breadcrumb {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 15px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            color: var(--text-gray);
            margin: 0 8px;
        }
        .search-section {
            background-color: var(--secondary-dark);
            padding: 30px 0;
            text-align: center;
            border-bottom: 2px solid var(--accent-red);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            box-shadow: var(--shadow-light);
            border-radius: 50px;
            overflow: hidden;
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            outline: none;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-btn {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #d45a44;
        }
        .main-article {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow-heavy);
            margin: 40px 0;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .author, .date {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .featured-image {
            margin: 40px 0;
            text-align: center;
        }
        .featured-image img {
            border-radius: 10px;
            box-shadow: var(--shadow-heavy);
            border: 3px solid var(--accent-gold);
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        .boss-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .boss-card {
            background: linear-gradient(145deg, #222244, #1a1a33);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .boss-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
            border-color: var(--accent-gold);
        }
        .boss-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .boss-card-content {
            padding: 20px;
        }
        .boss-card h3 {
            margin-top: 0;
            color: var(--accent-gold);
            font-size: 1.5rem;
        }
        .boss-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }
        .tag {
            background-color: var(--accent-red);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        .tag.souls {
            background-color: #5a3921;
        }
        .interactive-section {
            background-color: var(--secondary-dark);
            padding: 40px;
            border-radius: 10px;
            margin: 60px 0;
            border-left: 5px solid var(--accent-gold);
        }
        .interactive-section h2 {
            border-left: none;
            padding-left: 0;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--accent-gold);
        }
        .form-control {
            width: 100%;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(212, 175, 55, 0.5);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-control:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating {
            display: flex;
            gap: 10px;
            direction: rtl;
            justify-content: flex-start;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: var(--accent-gold);
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--accent-red), #d45a44);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-light);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(195, 74, 54, 0.4);
        }
        .footer-links {
            background-color: rgba(0, 0, 0, 0.4);
            padding: 50px 0 30px;
            border-top: 2px solid var(--accent-red);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid var(--accent-gold);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateX(5px);
        }
        footer {
            background-color: #0f0f1f;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.3);
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-gold);
            margin-bottom: 20px;
            display: inline-block;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            .nav-links { gap: 20px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--secondary-dark);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                padding: 40px 20px;
                transition: right 0.5s ease;
                box-shadow: var(--shadow-heavy);
                z-index: 999;
                gap: 0;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-links a {
                display: block;
                padding: 15px 0;
                font-size: 1.2rem;
            }
            .main-article {
                padding: 25px;
            }
            .boss-grid {
                grid-template-columns: 1fr;
            }
            .interactive-section {
                padding: 25px;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .header-container, .breadcrumb {
                padding-left: 15px;
                padding-right: 15px;
            }
            .search-input {
                padding: 15px;
            }
        }
