        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        body {
            line-height: 1.7;
            color: #2d3436;
            background-color: #f5f6fa;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .navbar {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ff6b6b);
            padding: 16px 30px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffffff;
            font-size: 1.9rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 6px;
            text-transform: capitalize;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #ffd166;
            color: #2d3436 !important;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .daman-link:hover {
            background-color: #ffbe0b !important;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .menu-toggle {
            display: none;
            font-size: 2rem;
            color: #ffffff;
            cursor: pointer;
            background: none;
            border: none;
        }
        .btn {
            padding: 13px 28px;
            border: none;
            border-radius: 35px;
            font-size: 1.15rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #27ae60;
            color: #ffffff;
            margin-right: 18px;
            box-shadow: 0 3px 6px rgba(39,174,96,0.2);
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(39,174,96,0.3);
        }
        .btn-login {
            background-color: #2980b9;
            color: #ffffff;
            box-shadow: 0 3px 6px rgba(41,128,185,0.2);
        }
        .btn-login:hover {
            background-color: #1f6391;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(41,128,185,0.3);
        }
        .hero {
            max-width: 1400px;
            margin: 50px auto 60px;
            padding: 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            color: #e74c3c;
            margin-bottom: 25px;
            line-height: 1.4;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
        }
        .hero h1 span {
            color: #3498db;
        }
        .hero p {
            font-size: 1.25rem;
            color: #4a4a4a;
            max-width: 950px;
            margin: 0 auto 35px;
            line-height: 1.8;
        }
        .hero-buttons {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .hero-image {
            margin-top: 45px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .hero-image img:hover {
            transform: scale(1.02);
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }
        .section {
            background-color: #ffffff;
            border-radius: 18px;
            padding: 45px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .section:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.12);
        }
        .section h2 {
            font-size: 2.3rem;
            color: #e74c3c;
            margin-bottom: 30px;
            padding-bottom: 18px;
            border-bottom: 4px solid #3498db;
            display: inline-block;
            font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
        }
        .section h3 {
            font-size: 1.7rem;
            color: #2c3e50;
            margin: 40px 0 22px;
            padding-left: 15px;
            border-left: 4px solid #ffd166;
        }
        .section h4 {
            font-size: 1.35rem;
            color: #e74c3c;
            margin: 30px 0 18px;
        }
        .section p {
            margin-bottom: 28px;
            font-size: 1.15rem;
            color: #34495e;
            line-height: 1.8;
            text-align: justify;
        }
        .section ul {
            margin-left: 35px;
            margin-bottom: 30px;
        }
        .section li {
            margin-bottom: 18px;
            font-size: 1.15rem;
            color: #34495e;
            line-height: 1.7;
            list-style-type: disc;
        }
        .section li::marker {
            color: #e74c3c;
            font-size: 1.3rem;
        }
        .section ol {
            margin-left: 35px;
            margin-bottom: 30px;
        }
        .section ol li {
            list-style-type: decimal;
        }
        .highlight {
            background-color: #fff8e6;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 6px solid #ffd166;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .highlight p {
            font-weight: 500;
            color: #8d6e63;
            margin-bottom: 0;
            font-size: 1.18rem;
            line-height: 1.8;
        }
        .highlight p strong {
            color: #e74c3c;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin: 45px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .feature-card i {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 20px;
        }
        .feature-card h4 {
            font-size: 1.4rem;
            color: #e74c3c;
            margin-bottom: 18px;
        }
        .feature-card p {
            font-size: 1.05rem;
            color: #4a4a4a;
            margin-bottom: 0;
            text-align: center;
        }
        .screenshot-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .screenshot {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .screenshot:hover {
            transform: scale(1.04);
            box-shadow: 0 10px 24px rgba(0,0,0,0.15);
        }
        .screenshot img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #3498db, #e74c3c);
            color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-card .number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 12px;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .stat-card .label {
            font-size: 1.15rem;
            opacity: 0.95;
            text-transform: capitalize;
        }
        .testimonials {
            margin: 45px 0;
        }
        .testimonial-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            font-size: 5rem;
            color: #3498db;
            position: absolute;
            top: -20px;
            left: 25px;
            opacity: 0.2;
            font-family: 'Georgia', serif;
        }
        .testimonial-text {
            font-size: 1.18rem;
            color: #34495e;
            margin-bottom: 25px;
            padding-left: 25px;
            line-height: 1.8;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 25px;
        }
        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #3498db;
        }
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .author-info h4 {
            color: #2c3e50;
            font-size: 1.25rem;
            margin-bottom: 5px;
        }
        .author-info p {
            color: #7f8c8d;
            font-size: 1.05rem;
            margin-bottom: 0;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #e0e0e0;
            margin: 40px 0 30px;
        }
        .tab {
            padding: 12px 25px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 500;
            color: #7f8c8d;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        .tab.active {
            color: #e74c3c;
            border-bottom: 3px solid #e74c3c;
        }
        .tab:hover {
            color: #3498db;
            background-color: #f5f5f5;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .footer {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 70px 30px 40px;
            margin-top: 90px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 60px;
        }
        .footer-section h3 {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: #ffd166;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #ffd166;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.08rem;
            display: inline-block;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 8px;
        }
        .game-categories, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 25px;
        }
        .category-link, .tag-link {
            background-color: rgba(255,255,255,0.1);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1.02rem;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .category-link:hover, .tag-link:hover {
            background-color: #ffd166;
            color: #2c3e50;
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: rgba(255,209,102,0.15);
            border-radius: 12px;
            padding: 25px;
            margin-top: 25px;
            border: 1px solid #ffd166;
        }
        .recommendation h4 {
            color: #ffd166;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .recommendation p {
            color: #e0e0e0;
            margin-bottom: 0;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        .copyright {
            max-width: 1400px;
            margin: 50px auto 0;
            padding-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 1.02rem;
            color: #b0b0b0;
            line-height: 1.8;
        }
        .copyright-links {
            margin-top: 15px;
        }
        .copyright-links a {
            color: #b0b0b0;
            text-decoration: none;
            margin: 0 12px;
            transition: color 0.3s ease;
        }
        .copyright-links a:hover {
            color: #ffd166;
        }
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .section h2 {
                font-size: 2.1rem;
            }
            .screenshot-container {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.18rem;
            }
            .section {
                padding: 40px;
            }
            .section h3 {
                font-size: 1.55rem;
            }
            .feature-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
                padding: 30px;
                gap: 20px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
                border-radius: 0 0 15px 15px;
            }
            .nav-links.active {
                display: flex;
                animation: slideDown 0.3s ease;
            }
            @keyframes slideDown {
                from { transform: translateY(-20px); opacity: 0; }
                to { transform: translateY(0); opacity: 1; }
            }
            .menu-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                margin-right: 0;
            }
            .section {
                padding: 35px 25px;
            }
            .section h2 {
                font-size: 1.9rem;
            }
            .section h3 {
                font-size: 1.45rem;
            }
            .section p {
                font-size: 1.08rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .screenshot-container {
                grid-template-columns: 1fr;
            }
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .testimonial-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 15px 20px;
            }
            .logo {
                font-size: 1.6rem;
            }
            .hero {
                padding: 0 20px;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 30px 20px;
            }
            .stats {
                grid-template-columns: 1fr;
            }
            .footer-container {
                gap: 40px;
            }
            .copyright-links a {
                display: block;
                margin: 8px 0;
            }
        }
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #3498db;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e74c3c;
        }
