        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
            padding-bottom: 50px;
        }
        .navbar {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c);
            padding: 15px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px 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: #fff;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #ffd700;
            color: #1a2a6c !important;
            font-weight: 600;
        }
        .daman-link:hover {
            background-color: #ffed4b !important;
        }
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
        }
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #28a745;
            color: #fff;
            margin-right: 15px;
        }
        .btn-download:hover {
            background-color: #218838;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(40,167,69,0.3);
        }
        .btn-login {
            background-color: #007bff;
            color: #fff;
        }
        .btn-login:hover {
            background-color: #0069d9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,123,255,0.3);
        }
        .hero {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 30px;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            color: #1a2a6c;
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .hero p {
            font-size: 1.2rem;
            color: #555;
            max-width: 900px;
            margin: 0 auto 30px;
        }
        .hero-buttons {
            margin-top: 30px;
        }
        .container {
            max-width: 1400px;
            margin: 50px auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .section {
            background-color: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .section:hover {
            transform: translateY(-5px);
        }
        .section h2 {
            font-size: 2.2rem;
            color: #b21f1f;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
        }
        .section h3 {
            font-size: 1.6rem;
            color: #1a2a6c;
            margin: 30px 0 20px;
        }
        .section p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #444;
        }
        .section ul {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        .section li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #444;
        }
        .highlight {
            background-color: #fff3cd;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 5px solid #ffc107;
        }
        .highlight p {
            font-weight: 500;
            color: #856404;
            margin-bottom: 0;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .feature-card i {
            font-size: 2.5rem;
            color: #1a2a6c;
            margin-bottom: 15px;
        }
        .feature-card h4 {
            font-size: 1.3rem;
            color: #b21f1f;
            margin-bottom: 15px;
        }
        .screenshot-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .screenshot {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .screenshot img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .screenshot img:hover {
            transform: scale(1.03);
        }
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            color: #fff;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .stat-card .label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        .testimonials {
            margin: 40px 0;
        }
        .testimonial-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            position: relative;
        }
        .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            color: #ffd700;
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
        }
        .testimonial-text {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 20px;
            padding-left: 20px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .author-info h4 {
            color: #1a2a6c;
            font-size: 1.2rem;
        }
        .author-info p {
            color: #777;
            font-size: 1rem;
            margin-bottom: 0;
        }
        .footer {
            background-color: #1a2a6c;
            color: #fff;
            padding: 60px 30px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ffd700;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #ffd700;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .game-categories, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        .category-link, .tag-link {
            background-color: rgba(255,255,255,0.1);
            color: #fff;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .category-link:hover, .tag-link:hover {
            background-color: #ffd700;
            color: #1a2a6c;
        }
        .recommendation {
            background-color: rgba(255,215,0,0.1);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            border: 1px solid #ffd700;
        }
        .recommendation h4 {
            color: #ffd700;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .recommendation p {
            color: #eee;
            margin-bottom: 0;
        }
        .copyright {
            max-width: 1400px;
            margin: 40px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 0.95rem;
            color: #bbb;
        }
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .section h2 {
                font-size: 2rem;
            }
            .screenshot-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #1a2a6c, #b21f1f);
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                margin-right: 0;
            }
            .section {
                padding: 30px;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.4rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .screenshot-container {
                grid-template-columns: 1fr;
            }
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .navbar {
                padding: 15px 20px;
            }
            .logo {
                font-size: 1.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .container {
                padding: 0 20px;
            }
            .section {
                padding: 25px;
            }
            .stats {
                grid-template-columns: 1fr;
            }
            .footer-container {
                gap: 30px;
            }
        }
