        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f7fa;
            color: #2d3436;
            padding-bottom: 60px;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, #0984e3, #74b9ff);
            padding: 16px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: background 0.3s ease;
        }
        header:hover {
            background: linear-gradient(135deg, #0768b8, #5fa8f3);
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 26px;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #ffdd59;
            margin: 0 4px;
            font-style: italic;
        }
        .logo .pro-tag {
            background-color: #ff5722;
            color: white;
            font-size: 14px;
            padding: 2px 8px;
            border-radius: 12px;
            margin-left: 8px;
            text-shadow: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 17px;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links li a:hover {
            color: #ffdd59;
            border-bottom: 2px solid #ffdd59;
        }
        .daman-link {
            color: #ffdd59 !important;
            font-weight: 600;
            font-size: 18px !important;
        }
        .daman-link:hover {
            color: #ffffff !important;
            border-bottom: 2px solid #ffffff !important;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            color: #ffffff;
            cursor: pointer;
            z-index: 10000;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
            margin: 30px auto;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 32px;
            border: none;
            border-radius: 35px;
            font-weight: 700;
            font-size: 18px;
            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 4px 12px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #ff5722;
            color: #ffffff;
            border: 2px solid #ff5722;
        }
        .btn-download:hover {
            background-color: #e64a19;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255,87,34,0.3);
            color: #ffffff;
        }
        .btn-login {
            background-color: transparent;
            color: #0984e3;
            border: 2px solid #0984e3;
        }
        .btn-login:hover {
            background-color: #0984e3;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(9,132,227,0.3);
        }
        main {
            padding: 50px 0;
        }
        h1 {
            font-size: 42px;
            color: #0984e3;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.08);
            line-height: 1.3;
            font-weight: 800;
        }
        h1 span {
            color: #ff5722;
        }
        h2 {
            font-size: 32px;
            color: #2d3436;
            margin: 60px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #74b9ff;
            font-weight: 700;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #ff5722;
        }
        h3 {
            font-size: 24px;
            color: #0984e3;
            margin: 40px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🎯";
            margin-right: 10px;
        }
        h4 {
            font-size: 20px;
            color: #ff5722;
            margin: 30px 0 12px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            text-align: justify;
            color: #37474f;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 700;
            color: #0984e3;
            border-bottom: 1px dashed #0984e3;
            padding-bottom: 2px;
        }
        .desi-note {
            background-color: #fff8e1;
            border-left: 5px solid #ffb300;
            padding: 20px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #4e342e;
            font-size: 17px;
            line-height: 1.8;
        }
        .desi-note p::before {
            content: "💬 ";
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            background-color: #ffffff;
            padding: 12px;
            font-size: 15px;
            color: #636e72;
            text-align: center;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin: 45px 0;
        }
        .stat-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.07);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #0984e3;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .stat-card h4 {
            color: #2d3436;
            margin-bottom: 15px;
            font-size: 18px;
        }
        .stat-card p {
            font-size: 32px;
            font-weight: 800;
            color: #ff5722;
            margin-bottom: 0;
            text-align: center;
        }
        .stat-card .stat-label {
            font-size: 14px;
            color: #636e72;
            margin-top: 5px;
        }
        .faq-container {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            padding: 35px;
            margin: 45px 0;
        }
        .faq-item {
            margin-bottom: 25px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 20px;
        }
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .faq-question {
            font-weight: 700;
            color: #0984e3;
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
        }
        .faq-question::after {
            content: "+";
            font-size: 22px;
            color: #ff5722;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            color: #37474f;
            font-size: 17px;
            line-height: 1.8;
            display: none;
        }
        .faq-answer.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tabs-container {
            margin: 40px 0;
        }
        .tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 25px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 10px;
        }
        .tab {
            padding: 10px 20px;
            background-color: #f5f7fa;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            color: #37474f;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: #0984e3;
            color: #ffffff;
        }
        .tab-content {
            display: none;
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .tab-content.active {
            display: block;
            animation: slideIn 0.5s ease;
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .character-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            transition: transform 0.3s ease;
        }
        .character-card:hover {
            transform: translateY(-7px);
        }
        .character-img {
            height: 200px;
            background-color: #e3f2fd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: #0984e3;
        }
        .character-info {
            padding: 20px;
        }
        .character-name {
            font-size: 22px;
            color: #2d3436;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .character-origin {
            font-size: 15px;
            color: #636e72;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .character-origin::before {
            content: "📍";
            margin-right: 8px;
        }
        .character-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }
        .stat {
            text-align: center;
        }
        .stat-value {
            font-size: 18px;
            font-weight: 700;
            color: #ff5722;
        }
        .stat-name {
            font-size: 13px;
            color: #636e72;
        }
        footer {
            background-color: #2d3436;
            color: #ffffff;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: #ffdd59;
            margin-bottom: 25px;
            font-size: 22px;
            border-bottom: 2px solid #444;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-column h3::before {
            content: "";
            margin-right: 0;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #b2bec3;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }
        .footer-links a:hover {
            color: #ffdd59;
            transform: translateX(5px);
        }
        .recommendation {
            background-color: #37474f;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0 40px;
            border-left: 4px solid #ffdd59;
        }
        .recommendation h3 {
            color: #ffdd59;
            margin-bottom: 15px;
            font-size: 20px;
        }
        .recommendation p {
            color: #e0e0e0;
            margin-bottom: 15px;
            font-size: 17px;
        }
        .recommendation .btn {
            padding: 10px 25px;
            font-size: 16px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 15px;
            color: #b2bec3;
            line-height: 1.8;
        }
        .copyright a {
            color: #ffdd59;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .tags-categories {
            margin: 40px 0;
            padding: 25px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .tags-categories h3 {
            margin-bottom: 20px;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 30px;
        }
        .category-item, .tag-item {
            background-color: #f5f7fa;
            padding: 8px 18px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .category-item a, .tag-item a {
            color: #0984e3;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
        }
        .category-item:hover, .tag-item:hover {
            background-color: #0984e3;
        }
        .category-item:hover a, .tag-item:hover a {
            color: #ffffff;
        }
        @media (max-width: 1024px) {
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            .nav-links {
                gap: 25px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                justify-content: space-between;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 30px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.15);
                border-radius: 0 0 12px 12px;
                gap: 20px;
            }
            .nav-links.active {
                display: flex;
                animation: fadeInDown 0.5s ease;
            }
            @keyframes fadeInDown {
                from { opacity: 0; transform: translateY(-20px); }
                to { opacity: 1; transform: translateY(0); }
            }
            .nav-links li {
                margin: 0;
                text-align: center;
            }
            .nav-links li a {
                font-size: 18px;
                padding: 10px 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
                margin: 45px 0 20px;
            }
            h3 {
                font-size: 20px;
                margin: 35px 0 15px;
            }
            p {
                font-size: 16px;
                line-height: 1.7;
            }
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                padding: 12px 25px;
                font-size: 17px;
            }
            .stats-box {
                gap: 20px;
            }
            .stat-card {
                padding: 20px;
            }
            .stat-card p {
                font-size: 28px;
            }
            .faq-container {
                padding: 25px;
            }
            .footer-content {
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }
            .logo .pro-tag {
                font-size: 12px;
                padding: 1px 6px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 19px;
            }
            .desi-note {
                padding: 15px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .character-card {
                max-width: 300px;
                margin: 0 auto;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-column h3 {
                display: block;
                text-align: center;
            }
        }
        @media print {
            header, footer, .cta-buttons, .hamburger {
                display: none;
            }
            body {
                background: white;
                color: black;
                font-size: 14px;
            }
            img {
                max-width: 100%;
                height: auto;
            }
            h1, h2, h3, h4 {
                color: black;
                border-bottom: 1px solid #ccc;
            }
        }
