* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            padding-bottom: 50px;
        }
        .header {
            background-color: #2c3e50;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #f1c40f;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fff;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f1c40f;
        }
        .daman-link {
            background-color: #f1c40f;
            padding: 8px 15px;
            border-radius: 5px;
            color: #2c3e50 !important;
            font-weight: 600;
        }
        .daman-link:hover {
            background-color: #e6b800;
        }
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #2c3e50;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
        }
        .container {
            max-width: 1100px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 36px;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1c40f;
        }
        h2 {
            font-size: 28px;
            color: #2c3e50;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #f1c40f;
        }
        h3 {
            font-size: 22px;
            color: #34495e;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #e74c3c;
        }
        .keyword {
            font-weight: 700;
            color: #2980b9;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 50px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 15px 30px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .download-btn {
            background-color: #27ae60;
            color: #fff;
        }
        .download-btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        .login-btn {
            background-color: #e74c3c;
            color: #fff;
        }
        .login-btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .stats-table th {
            background-color: #2c3e50;
            color: #fff;
            font-weight: 600;
        }
        .stats-table tr:hover {
            background-color: #f9f9f9;
        }
        .guide-list {
            margin: 20px 0 30px 40px;
        }
        .guide-list li {
            margin-bottom: 15px;
            font-size: 17px;
        }
        .tabs {
            display: flex;
            gap: 10px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 10px 20px;
            background-color: #34495e;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .tab-btn.active {
            background-color: #f1c40f;
            color: #2c3e50;
            font-weight: 600;
        }
        .tab-content {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .community-card {
            background-color: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .community-card h4 {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        .footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .game-genres {
            margin-bottom: 30px;
        }
        .game-genres h3 {
            color: #f1c40f;
            margin-bottom: 15px;
        }
        .genres-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .genres-list a {
            color: #fff;
            text-decoration: none;
            background-color: #34495e;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .genres-list a:hover {
            background-color: #f1c40f;
            color: #2c3e50;
        }
        .tags-section {
            margin-bottom: 30px;
        }
        .tags-section h3 {
            color: #f1c40f;
            margin-bottom: 15px;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tags-list a {
            color: #fff;
            text-decoration: none;
            background-color: #34495e;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        .tags-list a:hover {
            background-color: #f1c40f;
            color: #2c3e50;
        }
        .recommendation {
            background-color: #34495e;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
            font-size: 18px;
        }
        .recommendation a {
            color: #f1c40f;
            font-weight: 600;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 14px;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p, .guide-list li {
                font-size: 16px;
            }
            .btn {
                padding: 12px 25px;
                font-size: 16px;
                width: 100%;
            }
            .stats-table th, .stats-table td {
                padding: 12px;
                font-size: 14px;
            }
        }
