* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f0f4f1;
            color: #2d3e40;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        .header {
            background-color: #594a3c;
            color: #ffdd99;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 26px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 12px;
            text-shadow: 3px 3px 5px rgba(0,0,0,0.4);
            letter-spacing: 1px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .mobile-nav-btn {
            display: block;
            background-color: #ffdd99;
            color: #594a3c;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            margin: 0 auto 12px;
            font-size: 16px;
            transition: all 0.3s;
        }
        .mobile-nav-btn:hover {
            background-color: #ffe8b3;
        }
        .nav {
            display: none;
            list-style: none;
            text-align: center;
        }
        .nav.active {
            display: block;
        }
        .nav li {
            margin: 10px 0;
        }
        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
        }
        .nav a:hover {
            background-color: #7d6b5b;
            transform: scale(1.05);
        }
        .daman-link {
            background-color: #ffdd99 !important;
            color: #594a3c !important;
            font-weight: bold;
        }
        .container {
            max-width: 1100px;
            margin: 25px auto;
            padding: 0 20px;
        }
        h1 {
            color: #594a3c;
            font-size: 34px;
            text-align: center;
            margin: 25px 0 35px;
            border-bottom: 3px solid #ffdd99;
            padding-bottom: 12px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #594a3c;
            font-size: 28px;
            margin: 35px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #ffdd99;
        }
        h3 {
            color: #7d6b5b;
            font-size: 24px;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #ffdd99;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #594a3c;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #594a3c;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 12px 8px;
            transition: all 0.3s;
            text-align: center;
            font-size: 17px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #7d6b5b;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #2a9d8f;
        }
        .login-btn {
            background-color: #e9c46a;
            color: #264653;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
        }
        .stats-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .stats-icon {
            font-size: 28px;
            margin-right: 20px;
            color: #594a3c;
        }
        .review-card {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: bold;
            color: #594a3c;
            margin-bottom: 8px;
            font-size: 19px;
        }
        .rating {
            color: #e9c46a;
            margin-bottom: 12px;
            font-size: 20px;
        }
        .strategy-list {
            list-style: disc;
            margin-left: 35px;
            margin-bottom: 25px;
        }
        .strategy-list li {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .event-card {
            background-color: #fffbf0;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 25px;
            border-left: 5px solid #e9c46a;
        }
        .event-title {
            font-weight: bold;
            color: #264653;
            margin-bottom: 10px;
            font-size: 20px;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            padding: 10px 20px;
            background-color: #e8f1f0;
            color: #594a3c;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 17px;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #d4e6e3;
            transform: scale(1.05);
        }
        .game-type-nav {
            margin: 30px 0;
        }
        .game-type-link {
            color: #2a9d8f;
            text-decoration: none;
            margin-right: 20px;
            font-size: 18px;
        }
        .game-type-link:hover {
            text-decoration: underline;
            color: #21867a;
        }
        .footer {
            background-color: #2d3e40;
            color: #e0e6e6;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #4a6063;
            margin-top: 25px;
            font-size: 15px;
            color: #b0c4c1;
        }
        @media (min-width: 768px) {
            .mobile-nav-btn {
                display: none;
            }
            .nav {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
            }
            .nav li {
                margin: 0 20px;
            }
            .logo {
                font-size: 30px;
            }
            h1 {
                font-size: 38px;
            }
            h2 {
                font-size: 30px;
            }
            h3 {
                font-size: 26px;
            }
            .stats-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
        @media (min-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .review-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }
