* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Nirmala UI', 'Arial', sans-serif;
        }
        :root {
            --primary-color: #c62828;
            --secondary-color: #1a237e;
            --accent-color: #ff9800;
            --dark-bg: #121212;
            --light-bg: #f5f5f5;
            --text-dark: #333;
            --text-light: #eee;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
            color: var(--text-light);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--accent-color);
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background-color: var(--accent-color);
            color: var(--dark-bg);
        }
        .mobile-nav-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .mobile-nav a {
            display: block;
            padding: 0.8rem;
            border-bottom: 1px solid #333;
            transition: var(--transition);
        }
        .mobile-nav a:hover {
            color: var(--accent-color);
        }
        .breadcrumb {
            background-color: #e0e0e0;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary-color);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-section {
            background-color: var(--secondary-color);
            padding: 2rem 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #e68900;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent-color);
        }
        h3 {
            color: var(--dark-bg);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff3cd;
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .tier-list-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .tier-list-table th, .tier-list-table td {
            border: 1px solid #ddd;
            padding: 1rem;
            text-align: center;
        }
        .tier-list-table th {
            background-color: var(--secondary-color);
            color: white;
            font-size: 1.2rem;
        }
        .tier-list-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .tier-list-table tr:hover {
            background-color: #f1f1f1;
        }
        .tier-S { background-color: #d4edda; }
        .tier-A { background-color: #d1ecf1; }
        .tier-B { background-color: #fff3cd; }
        .tier-C { background-color: #f8d7da; }
        .warrior-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem auto;
            display: block;
            box-shadow: var(--shadow);
            transition: transform 0.5s ease;
        }
        .warrior-img:hover {
            transform: scale(1.02);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .comment-box, .rating-box {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary-color);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
        }
        .submit-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        .submit-btn:hover {
            background-color: var(--primary-color);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--accent-color);
        }
        .footer-links {
            background-color: var(--dark-bg);
            padding: 3rem 0;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: #2a2a2a;
            padding: 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: #333;
            transform: translateY(-5px);
        }
        .web-link a {
            color: var(--text-light);
            display: flex;
            align-items: center;
        }
        .web-link i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        footer {
            background-color: #111;
            color: var(--text-light);
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .social-icons {
            display: flex;
            gap: 1.5rem;
            font-size: 1.5rem;
        }
        .social-icons a:hover {
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            article {
                padding: 1.5rem;
            }
            .header-container, .container {
                padding: 0 15px;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
