        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
            color: white;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            text-decoration: none;
            color: #fbbf24;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .logo span {
            color: white;
        }
        #mobileNavBtn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 5px 0;
        }
        nav ul li a:hover {
            color: #fbbf24;
        }
        nav ul li a.daman-link {
            color: #fbbf24;
            font-weight: bold;
        }
        nav ul li a.daman-link:hover {
            color: #fde68a;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #0f172a;
            font-size: 2.4rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px solid #3b82f6;
        }
        h2 {
            color: #1e40af;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #10b981;
        }
        h3 {
            color: #0f172a;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            color: #3b82f6;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        strong {
            color: #1e40af;
        }
        .btn-group {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            text-align: center;
            min-width: 180px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }
        .login-btn {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
        }
        .img-container {
            margin: 35px 0;
            text-align: center;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .game-img {
            max-width: 100%;
            height: auto;
        }
        .img-caption {
            background-color: #f1f5f9;
            padding: 10px;
            font-size: 0.9rem;
            color: #475569;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            margin: 40px 0;
            gap: 25px;
        }
        .stat-card {
            background-color: white;
            padding: 25px 15px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            text-align: center;
            flex: 1;
            min-width: 200px;
            border-top: 4px solid #3b82f6;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #3b82f6;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #0f172a;
            font-size: 1rem;
            font-weight: 500;
        }
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            margin: 25px 0;
            border-left: 4px solid #10b981;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #0f172a;
        }
        .review-location {
            font-size: 0.85rem;
            color: #64748b;
            margin-left: 8px;
        }
        .review-rating {
            color: #f59e0b;
            font-weight: bold;
        }
        .toc {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            margin: 30px 0;
        }
        .toc h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .toc ul {
            list-style: none;
            padding-left: 15px;
        }
        .toc li {
            margin-bottom: 8px;
        }
        .toc a {
            color: #3b82f6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc a:hover {
            color: #10b981;
        }
        .tags-container {
            margin: 40px 0;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .tags-container h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .tag {
            display: inline-block;
            background-color: #3b82f6;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 8px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
        }
        .tag:hover {
            background-color: #1e40af;
        }
        .game-types {
            margin: 30px 0;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .type-link {
            color: #3b82f6;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .type-link:hover {
            color: #10b981;
        }
        .tips-box {
            background-color: #dbeafe;
            border-left: 4px solid #3b82f6;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
        }
        .tips-box h3 {
            color: #1e40af;
            margin-top: 0;
        }
        footer {
            background-color: #0f172a;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #fbbf24;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .daman-promo {
            background-color: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
        }
        .daman-promo a {
            color: #fbbf24;
            font-weight: bold;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            color: #cbd5e1;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            #mobileNavBtn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #1e40af;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                padding-bottom: 8px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .btn {
                width: 100%;
            }
            .stat-number {
                font-size: 2rem;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
