* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f5fafe;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 200px;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #2563eb, #f97316);
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffedd5;
            text-decoration: none;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 1px;
        }
        .logo emoji {
            font-size: 2.5rem;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            text-transform: capitalize;
        }
        .nav-menu li a:hover {
            color: #ffedd5;
            border-bottom: 3px solid #ffedd5;
        }
        .daman-link {
            background-color: #ffedd5;
            color: #2563eb !important;
            padding: 10px 22px;
            border-radius: 10px;
            font-weight: 700 !important;
            border-bottom: none !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .daman-link:hover {
            background-color: #fed7aa;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .menu-toggle {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #ffffff;
            background: none;
            border: none;
        }
        .container {
            max-width: 1400px;
            margin: 50px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #2563eb;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 5px solid #ffedd5;
            font-weight: 900;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            color: #f97316;
            margin: 70px 0 35px;
            padding-left: 25px;
            border-left: 6px solid #ffedd5;
            font-weight: 800;
            text-transform: capitalize;
        }
        h3 {
            font-size: 1.6rem;
            color: #1e3a8a;
            margin: 45px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: capitalize;
        }
        h3::before {
            content: "🦏";
            display: inline-block;
            font-size: 2rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #4b5563;
            margin: 35px 0 20px;
            font-weight: 600;
            text-transform: capitalize;
            padding-left: 15px;
            border-left: 4px solid #f97316;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
            padding: 0 5px;
        }
        .bold {
            font-weight: 800;
            color: #2563eb;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #eff6ff;
            padding: 5px 10px;
            border-radius: 6px;
            font-weight: 700;
            color: #1e40af;
            display: inline-block;
            margin: 3px 0;
        }
        .callout {
            background-color: #ffedd5;
            border-left: 6px solid #2563eb;
            padding: 25px;
            margin: 45px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .callout p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #2d3748;
            font-weight: 500;
            line-height: 1.8;
        }
        .btn-container {
            text-align: center;
            margin: 70px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        .btn {
            display: inline-block;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
            border: none;
            cursor: pointer;
            text-align: center;
            min-width: 240px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .download-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: #ffffff;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }
        .login-btn {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: #ffffff;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #7c3aed, #6d28d9);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .img-caption {
            background-color: #f8fafc;
            padding: 20px;
            font-size: 1rem;
            color: #475569;
            text-align: center;
            font-weight: 500;
            line-height: 1.6;
        }
        .list {
            margin: 30px 0 40px 50px;
        }
        .list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 25px;
            line-height: 1.7;
        }
        .list li::before {
            content: "🦏";
            position: absolute;
            left: -35px;
            top: 4px;
            font-size: 1.3rem;
        }
        .stats-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 45px 0;
        }
        .stats-card {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            text-align: center;
            border-top: 5px solid #2563eb;
        }
        .stats-value {
            font-size: 2.8rem;
            font-weight: 900;
            color: #f97316;
            margin-bottom: 15px;
        }
        .stats-label {
            font-size: 1rem;
            color: #475569;
            font-weight: 500;
            line-height: 1.5;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .review-card {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #2563eb;
        }
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        .reviewer-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #2563eb;
            font-weight: bold;
        }
        .reviewer-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
        }
        .review-location {
            font-size: 0.95rem;
            color: #64748b;
            margin-top: 5px;
        }
        .review-rating {
            color: #f97316;
            font-size: 1.4rem;
            margin-bottom: 18px;
        }
        .review-text {
            font-size: 1.05rem;
            color: #475569;
            line-height: 1.8;
            font-style: italic;
        }
        .guide-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 45px 0;
            border-bottom: 3px solid #e2e8f0;
            padding-bottom: 15px;
        }
        .guide-tab {
            padding: 15px 25px;
            background-color: #eff6ff;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            color: #2d3748;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: capitalize;
        }
        .guide-tab.active {
            background-color: #2563eb;
            color: #ffffff;
        }
        .guide-content {
            background-color: #ffffff;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            margin-bottom: 45px;
        }
        .community-platforms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin: 45px 0;
        }
        .community-card {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            text-align: center;
        }
        .community-icon {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 18px;
        }
        .community-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 15px;
        }
        .community-desc {
            font-size: 0.95rem;
            color: #475569;
            line-height: 1.6;
        }
        .game-type-section, .tag-section {
            margin: 60px 0 45px;
        }
        .section-title {
            font-size: 1.3rem;
            color: #f97316;
            margin-bottom: 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .game-types, .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-types a, .tags a {
            color: #ffffff;
            background-color: #475569;
            padding: 12px 22px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #2563eb;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .recommendation {
            background-color: #2563eb;
            padding: 30px;
            border-radius: 15px;
            margin: 50px 0;
            text-align: center;
            font-size: 1.15rem;
            line-height: 2;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            color: #ffffff;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 3px solid #e2e8f0;
            font-size: 1rem;
            color: #64748b;
            margin-top: 70px;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 25px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 16px 35px;
                font-size: 1.1rem;
                min-width: 220px;
            }
        }
        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }
            .stats-list {
                gap: 25px;
            }
            .review-container {
                gap: 30px;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #2563eb;
                padding: 35px 30px;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            }
            .nav-menu.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 50px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 60px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 40px 0 20px;
            }
            h4 {
                font-size: 1.3rem;
                margin: 30px 0 18px;
            }
            .btn {
                width: 100%;
                padding: 16px 25px;
                font-size: 1.1rem;
            }
            .stats-list {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .review-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .img-container {
                margin: 45px 0;
            }
            p {
                font-size: 1rem;
                margin-bottom: 22px;
            }
            .list {
                margin: 25px 0 35px 40px;
            }
            .list li {
                margin-bottom: 16px;
                padding-left: 20px;
            }
            .list li::before {
                left: -30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            .logo emoji {
                font-size: 2.1rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            h4 {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 1.2rem;
            }
            .game-types a, .tags a {
                padding: 10px 18px;
                font-size: 0.95rem;
            }
            .recommendation {
                padding: 25px;
                font-size: 1.05rem;
            }
            .stats-card {
                padding: 25px;
            }
            .stats-value {
                font-size: 2.5rem;
            }
            .review-card {
                padding: 30px;
            }
        }
