* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f7ff;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a73e8;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .daman-link {
            background-color: #4CAF50;
            padding: 5px 15px !important;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a73e8;
            text-align: center;
            margin: 30px 0 40px;
            font-size: 36px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1a73e8;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #4285f4;
            font-size: 28px;
        }
        h3 {
            color: #1a73e8;
            margin: 30px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #1a73e8;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #0d47a1;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #27ae60;
        }
        .download-btn:hover {
            background-color: #219653;
        }
        .login-btn {
            background-color: #e67e22;
        }
        .login-btn:hover {
            background-color: #d35400;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 10px 0;
        }
        .highlight {
            font-weight: bold;
            color: #1a73e8;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #4285f4;
        }
        .stats-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .stats-icon {
            font-size: 24px;
            margin-right: 15px;
            color: #1a73e8;
        }
        .game-tags {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f0fe;
            color: #1a73e8;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #1a73e8;
            color: white;
        }
        .game-types {
            margin: 30px 0;
        }
        .type-link {
            color: #1a73e8;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .type-link:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #4285f4;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #555;
            margin-top: 20px;
            font-size: 16px;
        }
        .recommendation {
            background-color: #e8f0fe;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid #1a73e8;
        }
        .quote-box {
            background-color: #f8f9fa;
            border-left: 4px solid #4285f4;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
        }
