        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #FF6B35;
            --secondary: #1A1A2E;
            --accent: #00B4D8;
            --light: #F8F9FA;
            --dark: #16213E;
            --success: #2ECC71;
            --warning: #FF9F1C;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --border-radius: 12px;
        }
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .header {
            background: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #FF6B35, #FF9F1C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #00B4D8;
            -webkit-text-fill-color: #00B4D8;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-link {
            color: #fff;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-link:hover {
            background: rgba(255, 107, 53, 0.15);
            text-decoration: none;
        }
        .nav-link.active {
            background: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 10px;
        }
        .mobile-nav {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--dark);
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 999;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav .nav-link {
            display: block;
            padding: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            background: rgba(255,255,255,0.05);
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb-item {
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-item:not(:last-child):after {
            content: '›';
            margin-left: 10px;
            color: var(--accent);
        }
        .container {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }
        .main-content {
            background: rgba(255,255,255,0.03);
            border-radius: var(--border-radius);
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        .article-title {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(45deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: var(--gray);
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .content-section {
            margin-bottom: 50px;
        }
        .section-title {
            font-size: 2rem;
            color: var(--primary);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .section-title i {
            background: var(--primary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,53,0.2), rgba(0,180,216,0.2));
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 25px 0;
        }
        .tier-list {
            display: grid;
            gap: 20px;
            margin: 30px 0;
        }
        .tier-category {
            background: rgba(255,255,255,0.05);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 2px solid;
        }
        .tier-splus { border-color: #FFD700; }
        .tier-s { border-color: #FF6B35; }
        .tier-a { border-color: #00B4D8; }
        .tier-b { border-color: #2ECC71; }
        .tier-c { border-color: #FF9F1C; }
        .tier-d { border-color: #E74C3C; }
        .tier-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .tier-name {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brawlers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
        }
        .brawler-card {
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid transparent;
        }
        .brawler-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: var(--shadow);
        }
        .brawler-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
            border: 3px solid currentColor;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: rgba(255,255,255,0.03);
            border-radius: var(--border-radius);
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .widget-title {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-box {
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            background: rgba(255,255,255,0.08);
            border: 2px solid var(--accent);
            border-radius: 50px;
            color: white;
            font-size: 1rem;
        }
        .search-button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: var(--primary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 20px 0;
            font-size: 2rem;
            color: var(--gray);
        }
        .star {
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #FFD700;
        }
        .rating-form {
            display: none;
            margin-top: 20px;
        }
        .rating-form.active {
            display: block;
        }
        .comment-form textarea {
            width: 100%;
            background: rgba(255,255,255,0.08);
            border: 2px solid var(--accent);
            border-radius: var(--border-radius);
            padding: 15px;
            color: white;
            margin-bottom: 15px;
            min-height: 120px;
            resize: vertical;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-input {
            width: 100%;
            padding: 12px 20px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: var(--border-radius);
            color: white;
        }
        .btn {
            background: linear-gradient(45deg, var(--primary), var(--warning));
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,107,53,0.3);
            text-decoration: none;
        }
        .btn-submit {
            background: linear-gradient(45deg, var(--accent), #0096C7);
            width: 100%;
        }
        .footer-links {
            background: rgba(0,0,0,0.5);
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .links-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 20px;
            border-radius: var(--border-radius);
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            background: rgba(255,107,53,0.05);
        }
        .web-link a {
            color: #fff;
            font-weight: 500;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .web-link a:last-child {
            border-bottom: none;
        }
        .footer {
            background: #0D1117;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid var(--primary);
        }
        .copyright {
            color: var(--gray);
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }
        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .article-title {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                height: 70px;
            }
            .main-content {
                padding: 25px;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
            .brawlers-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .article-meta {
                flex-direction: column;
                gap: 15px;
            }
            .widget {
                padding: 20px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
        @media print {
            .header, .sidebar, .footer-links, .footer {
                display: none;
            }
            body {
                background: white;
                color: black;
            }
            .container {
                grid-template-columns: 1fr;
                margin: 0;
                padding: 0;
            }
            .main-content {
                border: none;
                padding: 0;
            }
        }
