        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.75;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #212529;
            padding-bottom: 80px;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, #ff6b35, #ff9a76);
            padding: 18px 0;
            box-shadow: 0 4px 18px rgba(0,0,0,0.18);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: background 0.4s ease;
        }
        header:hover {
            background: linear-gradient(135deg, #e55a2d, #ff8963);
        }
        .container {
            width: 93%;
            max-width: 1400px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.25);
            letter-spacing: 0.7px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo .turbo-tag {
            color: #ffdd00;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo .champ-tag {
            background-color: #20c997;
            color: white;
            font-size: 16px;
            padding: 3px 10px;
            border-radius: 18px;
            text-shadow: none;
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
            position: relative;
        }
        .nav-links li a:hover {
            color: #ffdd00;
            border-bottom: 3px solid #ffdd00;
        }
        .nav-links li a::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #ffdd00;
            transition: width 0.3s ease;
        }
        .nav-links li a:hover::after {
            width: 100%;
        }
        .daman-link {
            color: #ffdd00 !important;
            font-weight: 700;
            font-size: 19px !important;
            border-bottom: 3px solid #ffffff !important;
        }
        .daman-link:hover {
            color: #ffffff !important;
            border-bottom: 3px solid #ffdd00 !important;
        }
        .hamburger {
            display: none;
            font-size: 32px;
            color: #ffffff;
            cursor: pointer;
            z-index: 10000;
            background: none;
            border: none;
        }
        .cta-buttons {
            display: flex;
            gap: 25px;
            margin: 40px auto;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 20px;
        }
        .btn {
            padding: 16px 36px;
            border: none;
            border-radius: 40px;
            font-weight: 800;
            font-size: 19px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #20c997;
            color: #ffffff;
            border: 3px solid #20c997;
        }
        .btn-download:hover {
            background-color: #17a27d;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(32,201,151,0.35);
            color: #ffffff;
            letter-spacing: 0.8px;
        }
        .btn-login {
            background-color: transparent;
            color: #ff6b35;
            border: 3px solid #ff6b35;
        }
        .btn-login:hover {
            background-color: #ff6b35;
            color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255,107,53,0.35);
            letter-spacing: 0.8px;
        }
        main {
            padding: 60px 0;
        }
        h1 {
            font-size: 48px;
            color: #ff6b35;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.4;
            font-weight: 900;
            letter-spacing: -0.5px;
        }
        h1 span {
            color: #20c997;
        }
        h2 {
            font-size: 36px;
            color: #212529;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #ff9a76;
            font-weight: 800;
            position: relative;
            letter-spacing: -0.3px;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: #20c997;
        }
        h3 {
            font-size: 28px;
            color: #ff6b35;
            margin: 50px 0 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.2px;
        }
        h3::before {
            content: "🔥";
        }
        h4 {
            font-size: 24px;
            color: #20c997;
            margin: 35px 0 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h4::before {
            content: "⚡";
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: justify;
            color: #343a40;
            line-height: 1.85;
            letter-spacing: 0.1px;
        }
        .highlight {
            font-weight: 800;
            color: #ff6b35;
            border-bottom: 2px dashed #ff6b35;
            padding-bottom: 3px;
        }
        .desi-note {
            background-color: #fff3cd;
            border-left: 6px solid #ffc107;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #856404;
            font-size: 18px;
            line-height: 1.9;
            font-weight: 500;
        }
        .desi-note p::before {
            content: "🗣️ ";
        }
        .image-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
        }
        .image-container:hover {
            transform: translateY(-5px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            background-color: #ffffff;
            padding: 15px;
            font-size: 17px;
            color: #495057;
            text-align: center;
            font-weight: 500;
            border-top: 1px solid #f1f1f1;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .stat-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-top: 5px solid #ff6b35;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .stat-card h4 {
            color: #212529;
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 1px solid #f1f1f1;
            padding-bottom: 10px;
        }
        .stat-card h4::before {
            content: "";
        }
        .stat-card p {
            font-size: 42px;
            font-weight: 900;
            color: #20c997;
            margin-bottom: 10px;
            text-align: center;
            line-height: 1.2;
        }
        .stat-card .stat-label {
            font-size: 16px;
            color: #6c757d;
            font-weight: 500;
        }
        .faq-container {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.07);
            padding: 40px;
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid #f8f9fa;
            padding-bottom: 25px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-weight: 700;
            color: #ff6b35;
            margin-bottom: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 20px;
            transition: color 0.3s ease;
        }
        .faq-question:hover {
            color: #20c997;
        }
        .faq-question::after {
            content: "+";
            font-size: 26px;
            color: #20c997;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(45deg);
            color: #ff6b35;
        }
        .faq-answer {
            color: #343a40;
            font-size: 18px;
            line-height: 1.9;
            display: none;
            padding-left: 10px;
        }
        .faq-answer.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tabs-container {
            margin: 50px 0;
        }
        .tabs {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 15px;
        }
        .tab {
            padding: 12px 24px;
            background-color: #f8f9fa;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            color: #343a40;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 17px;
        }
        .tab.active {
            background-color: #ff6b35;
            color: #ffffff;
        }
        .tab:hover:not(.active) {
            background-color: #e9ecef;
            color: #ff6b35;
        }
        .tab-content {
            display: none;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .tab-content.active {
            display: block;
            animation: slideIn 0.6s ease;
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-25px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .character-card {
            background-color: #ffffff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .character-img {
            height: 220px;
            background-color: #ffe8e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: #ff6b35;
        }
        .character-info {
            padding: 25px;
        }
        .character-name {
            font-size: 24px;
            color: #212529;
            margin-bottom: 10px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .character-name::after {
            content: "⭐";
        }
        .character-origin {
            font-size: 17px;
            color: #6c757d;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .character-origin::before {
            content: "📍";
        }
        .character-bio {
            font-size: 17px;
            color: #343a40;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        .character-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
        }
        .stat {
            text-align: center;
            flex: 1;
        }
        .stat-value {
            font-size: 22px;
            font-weight: 800;
            color: #20c997;
        }
        .stat-name {
            font-size: 14px;
            color: #6c757d;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        footer {
            background-color: #212529;
            color: #ffffff;
            padding: 70px 0 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-column h3 {
            color: #ffdd00;
            margin-bottom: 30px;
            font-size: 24px;
            border-bottom: 3px solid #495057;
            padding-bottom: 15px;
            display: inline-block;
        }
        .footer-column h3::before {
            content: "";
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            font-size: 17px;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #ffdd00;
            transform: translateX(8px);
            padding-left: 5px;
        }
        .recommendation {
            background-color: #343a40;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0 50px;
            border-left: 5px solid #ffdd00;
        }
        .recommendation h3 {
            color: #ffdd00;
            margin-bottom: 20px;
            font-size: 24px;
            border-bottom: none;
            padding-bottom: 0;
        }
        .recommendation h3::before {
            content: "🌟";
        }
        .recommendation p {
            color: #e9ecef;
            margin-bottom: 25px;
            font-size: 18px;
            line-height: 1.9;
        }
        .recommendation .btn {
            padding: 14px 30px;
            font-size: 18px;
            margin-right: 15px;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #495057;
            font-size: 16px;
            color: #adb5bd;
            line-height: 2;
        }
        .copyright a {
            color: #ffdd00;
            text-decoration: none;
            font-weight: 600;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .tags-categories {
            margin: 50px 0;
            padding: 30px;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .tags-categories h3 {
            margin-bottom: 25px;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 35px;
        }
        .category-item, .tag-item {
            background-color: #f8f9fa;
            padding: 10px 22px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .category-item a, .tag-item a {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
        }
        .category-item:hover, .tag-item:hover {
            background-color: #ff6b35;
            transform: translateY(-3px);
        }
        .category-item:hover a, .tag-item:hover a {
            color: #ffffff;
        }
        @media (max-width: 1200px) {
            h1 {
                font-size: 42px;
            }
            h2 {
                font-size: 32px;
            }
            h3 {
                font-size: 26px;
            }
            .nav-links {
                gap: 30px;
            }
            .stat-card p {
                font-size: 38px;
            }
        }
        @media (max-width: 992px) {
            .header-content {
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #ff6b35;
                padding: 40px 20px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.2);
                border-radius: 0 0 15px 15px;
                gap: 25px;
            }
            .nav-links.active {
                display: flex;
                animation: fadeInDown 0.6s ease;
            }
            @keyframes fadeInDown {
                from { opacity: 0; transform: translateY(-30px); }
                to { opacity: 1; transform: translateY(0); }
            }
            .nav-links li {
                margin: 0;
                text-align: center;
                width: 100%;
            }
            .nav-links li a {
                font-size: 20px;
                padding: 12px 0;
                display: block;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 30px;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 24px;
                margin: 45px 0 20px;
            }
            p {
                font-size: 17px;
                line-height: 1.8;
            }
            .cta-buttons {
                flex-direction: column;
                gap: 20px;
            }
            .btn {
                width: 100%;
                padding: 15px 30px;
                font-size: 18px;
            }
            .stats-box {
                gap: 25px;
            }
            .stat-card {
                padding: 25px;
            }
            .stat-card p {
                font-size: 34px;
            }
            .faq-container {
                padding: 30px;
            }
            .footer-content {
                gap: 40px;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 24px;
            }
            .logo .champ-tag {
                font-size: 14px;
                padding: 2px 8px;
            }
            h1 {
                font-size: 32px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            h4 {
                font-size: 20px;
            }
            .desi-note {
                padding: 20px;
            }
            .desi-note p {
                font-size: 17px;
            }
            .tabs {
                gap: 10px;
            }
            .tab {
                padding: 10px 20px;
                font-size: 16px;
            }
            .tab-content {
                padding: 25px;
            }
            .character-card {
                max-width: 350px;
                margin: 0 auto;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 22px;
            }
            .logo .turbo-tag {
                font-size: 20px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
                line-height: 1.75;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .stat-card p {
                font-size: 32px;
            }
            .faq-question {
                font-size: 18px;
            }
            .faq-answer {
                font-size: 16px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-column h3 {
                display: block;
                text-align: center;
            }
            .recommendation .btn {
                width: 100%;
                margin-right: 0;
            }
            .copyright {
                font-size: 15px;
            }
        }
        @media print {
            header, footer, .cta-buttons, .hamburger, .tabs, .faq-question::after {
                display: none;
            }
            body {
                background: white;
                color: black;
                font-size: 15px;
                padding-bottom: 0;
            }
            img {
                max-width: 100%;
                height: auto;
            }
            h1, h2, h3, h4 {
                color: black;
                border-bottom: 2px solid #ccc;
            }
            .tab-content {
                display: block;
                box-shadow: none;
                padding: 0;
            }
            .faq-answer {
                display: block;
            }
        }
