        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #fbbf24;
        }
        nav {
            display: flex;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .daman-link {
            background-color: #f59e0b;
            font-weight: bold;
        }
        .daman-link:hover {
            background-color: #d97706;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        .content-wrapper {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 3px solid #3b82f6;
        }
        h2 {
            font-size: 2rem;
            color: #1e40af;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #60a5fa;
        }
        h3 {
            font-size: 1.5rem;
            color: #1d4ed8;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #fbbf24 0%, #f59e0b 100%);
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
        }
        .important {
            background-color: #dbeafe;
            border-left: 4px solid #3b82f6;
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 0 8px 8px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
            margin: 1rem 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(16, 185, 129, 0.3);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(16, 185, 129, 0.4);
        }
        .download-btn {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            box-shadow: 0 4px 6px rgba(239, 68, 68, 0.3);
        }
        .download-btn:hover {
            box-shadow: 0 6px 8px rgba(239, 68, 68, 0.4);
        }
        .login-btn {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            box-shadow: 0 4px 6px rgba(139, 92, 246, 0.3);
        }
        .login-btn:hover {
            box-shadow: 0 6px 8px rgba(139, 92, 246, 0.4);
        }
        .buttons-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-size: 0.9rem;
            color: #6b7280;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .stat-card .number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1e40af;
            margin-bottom: 0.5rem;
        }
        .stat-card .label {
            font-size: 1rem;
            color: #64748b;
        }
        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .feature-item {
            background-color: #f8fafc;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
        }
        .feature-item h4 {
            color: #1e40af;
            margin-bottom: 0.5rem;
        }
        .reviews-container {
            background-color: #f8fafc;
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
        }
        .review-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background-color: #3b82f6;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 1rem;
        }
        .reviewer-info {
            flex: 1;
        }
        .reviewer-name {
            font-weight: bold;
            color: #1e40af;
        }
        .review-rating {
            color: #f59e0b;
            font-weight: bold;
        }
        footer {
            background-color: #1e293b;
            color: white;
            padding: 3rem 0 1rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #f8fafc;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3b82f6;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .game-types a {
            background-color: #334155;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .game-types a:hover {
            background-color: #3b82f6;
            transform: translateY(-2px);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .tags a {
            background-color: #475569;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 16px;
            text-decoration: none;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }
        .tags a:hover {
            background-color: #6366f1;
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .daman-recommendation {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 2rem 0;
        }
        .daman-recommendation h3 {
            color: white;
            margin-bottom: 1rem;
        }
        .daman-recommendation a {
            color: #fbbf24;
            font-weight: bold;
            text-decoration: none;
        }
        .daman-recommendation a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            nav {
                display: none;
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                text-align: center;
            }
            nav.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .features-list {
                grid-template-columns: 1fr;
            }
        }
