* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #2e7d32;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #f1f8e9;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #cddc39;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #cddc39;
        }
        .daman-link {
            background-color: #cddc39;
            color: #2e7d32 !important;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
        }
        .daman-link:hover {
            background-color: #dce775;
        }
        .menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .page-header {
            padding: 40px 0;
            text-align: center;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-radius: 10px;
            margin: 20px 0;
        }
        h1 {
            color: #2e7d32;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        .page-header p {
            color: #43a047;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        h2 {
            color: #2e7d32;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c8e6c9;
        }
        h3 {
            color: #388e3c;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: 600;
            color: #2e7d32;
        }
        .emoji-tag {
            margin-right: 8px;
            color: #4caf50;
        }
        .game-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .download-btn {
            background-color: #4caf50;
            color: white;
        }
        .download-btn:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(76,175,80,0.3);
        }
        .login-btn {
            background-color: #cddc39;
            color: #2e7d32;
        }
        .login-btn:hover {
            background-color: #dce775;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(205,220,57,0.3);
        }
        ul, ol {
            margin: 20px 0 20px 30px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        .stats-table th {
            background-color: #e8f5e9;
            color: #2e7d32;
            font-weight: 600;
        }
        .stats-table tr:hover {
            background-color: #f5f5f5;
        }
        .review-card {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        .reviewer {
            font-weight: 600;
            color: #388e3c;
        }
        .rating {
            color: #ffc107;
            font-size: 1.2rem;
        }
        footer {
            background-color: #2e7d32;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #cddc39;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #f1f8e9;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #cddc39;
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .tag {
            background-color: #388e3c;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .recommendation {
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            font-size: 1.1rem;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #43a047;
            font-size: 0.95rem;
            color: #c8e6c9;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #2e7d32;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                width: 100%;
                max-width: 300px;
            }
        }
