* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #ff6b00;
            --secondary-color: #1a237e;
            --accent-color: #fdd835;
            --text-dark: #222;
            --text-light: #444;
            --bg-light: #f9f9f9;
            --bg-section: #fff;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', Arial, sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--bg-light);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), #ff8c00);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-color);
            padding-left: 15px;
            margin-top: 2rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
        }
        p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        .highlight {
            color: var(--primary-color);
            font-weight: 700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background-color: var(--bg-section);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary-color);
        }
        .desktop-nav ul {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-color);
            transition: var(--transition);
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--secondary-color);
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--bg-section);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            font-weight: 600;
            padding: 10px;
            border-bottom: 1px solid #eee;
        }
        .mobile-nav a:hover {
            color: var(--primary-color);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #f0f0f0;
            font-size: 0.95rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child):after {
            content: '>';
            margin-left: 10px;
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
            color: var(--primary-color);
        }
        .hero {
            background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1552820728-8b83bb6b773f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        .hero h1 {
            color: white;
            font-size: 3.2rem;
            margin-bottom: 20px;
        }
        .hero p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            background: var(--bg-section);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .search-box h3 {
            text-align: center;
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #ddd;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary-color);
        }
        .search-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #e05a00;
        }
        .tier-section {
            background: var(--bg-section);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }
        .tier-category {
            margin-bottom: 40px;
        }
        .tier-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px dashed #eee;
        }
        .tier-rank {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            background: var(--primary-color);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }
        .tier-s {
            background: linear-gradient(135deg, #ff0000, #ff6b00);
        }
        .tier-a {
            background: linear-gradient(135deg, #ff8c00, #ffb300);
        }
        .tier-b {
            background: linear-gradient(135deg, #4caf50, #8bc34a);
        }
        .tier-c {
            background: linear-gradient(135deg, #2196f3, #03a9f4);
        }
        .tier-d {
            background: linear-gradient(135deg, #9c27b0, #e91e63);
        }
        .tier-brawlers {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
        }
        .brawler-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
            border: 2px solid transparent;
        }
        .brawler-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0,0,0,0.1);
            border-color: var(--primary-color);
        }
        .brawler-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 15px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #eee;
        }
        .brawler-name {
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 8px;
        }
        .brawler-role {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        .brawler-stats {
            display: flex;
            justify-content: center;
            gap: 15px;
            font-size: 0.9rem;
            color: #666;
        }
        .interview {
            background: linear-gradient(135deg, #f5f7ff, #e3f2fd);
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 50px 0;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            align-items: center;
        }
        .interview-img {
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: var(--shadow);
        }
        .interview-content blockquote {
            font-size: 1.3rem;
            font-style: italic;
            color: var(--secondary-color);
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin: 20px 0;
        }
        .user-interaction {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-box, .rating-box {
            background: var(--bg-section);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active,
        .star:hover {
            color: var(--accent-color);
        }
        .internal-links {
            background: var(--bg-section);
            padding: 40px;
            border-radius: var(--border-radius);
            margin: 40px 0;
        }
        .internal-links h3 {
            text-align: center;
            margin-bottom: 30px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(5px);
        }
        .web-link a {
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--primary-color);
        }
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: var(--accent-color);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col a:hover {
            color: var(--accent-color);
            padding-left: 5px;
            transition: var(--transition);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            .hero h1 { font-size: 2.6rem; }
            .interview { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 50px; margin-bottom: 10px; }
            .search-form button { border-radius: 50px; padding: 15px; }
            .tier-brawlers { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
        }
        @media (max-width: 576px) {
            .container { padding: 0 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .tier-section, .interview, .comment-box, .rating-box { padding: 25px; }
            .tier-rank { width: 60px; height: 60px; font-size: 1.5rem; }
        }
