* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', sans-serif;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.8;
        }
        body {
            color: #2d3436;
            background-color: #f8f9fa;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header-container {
            background-color: #27ae60;
            color: #ffffff;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 3px 5px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo span {
            color: #f1c40f;
        }
        .main-nav {
            display: flex;
            gap: 35px;
        }
        .main-nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .main-nav a:hover {
            color: #f1c40f;
            border-bottom: 3px solid #f1c40f;
        }
        .daman-link {
            background-color: #f1c40f;
            color: #27ae60 !important;
            padding: 12px 24px;
            border-radius: 40px;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 3px 8px rgba(241,196,15,0.3);
        }
        .daman-link:hover {
            background-color: #d4ac0d;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(241,196,15,0.4);
        }
        .hamburger-btn {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #ffffff;
            background: transparent;
            border: none;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #219653;
                padding: 30px 25px;
                gap: 25px;
                border-top: 3px solid #f1c40f;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger-btn {
                display: block;
            }
            .logo {
                font-size: 2.2rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 3.2rem;
            color: #27ae60;
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 6px solid #f1c40f;
            padding-bottom: 25px;
            font-weight: 900;
            letter-spacing: 0.8px;
        }
        h2 {
            font-size: 2.4rem;
            color: #2c3e50;
            margin: 80px 0 35px;
            padding-left: 30px;
            border-left: 7px solid #27ae60;
            font-weight: 800;
        }
        h3 {
            font-size: 1.9rem;
            color: #3498db;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3 emoji {
            font-size: 1.7rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #e67e22;
            margin: 40px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #e74c3c;
            text-decoration: underline;
            text-underline-offset: 6px;
        }
        .keyword {
            font-weight: 900;
            color: #27ae60;
            font-size: 1.3rem;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 35px;
            margin: 50px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
            padding: 20px;
            border-radius: 12px;
            background-color: #f9f9f9;
            border: 2px solid #27ae60;
        }
        .stat-value {
            font-size: 2.8rem;
            font-weight: 900;
            color: #27ae60;
            margin-bottom: 12px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #34495e;
            font-weight: 600;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            background-color: #ffffff;
            padding: 20px;
            font-size: 1.1rem;
            color: #2c3e50;
            font-style: italic;
            border-top: 2px solid #27ae60;
        }
        .btn-section {
            text-align: center;
            margin: 70px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 45px;
            font-size: 1.4rem;
            font-weight: 700;
            border: none;
            border-radius: 45px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .download-btn {
            background-color: #f1c40f;
            color: #27ae60;
        }
        .download-btn:hover {
            background-color: #d4ac0d;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(241,196,15,0.4);
        }
        .login-btn {
            background-color: #27ae60;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #219653;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(39,174,96,0.4);
        }
        ul, ol {
            margin: 35px 0 40px 60px;
            font-size: 1.2rem;
            line-height: 2.2;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 15px;
        }
        .tab-container {
            margin: 60px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .tab-header {
            background-color: #27ae60;
            color: #ffffff;
            padding: 20px 30px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
        }
        .tab-content {
            background-color: #ffffff;
            padding: 30px;
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .game-categories {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            margin: 70px 0 50px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        .categories-title, .tags-title {
            font-size: 1.7rem;
            color: #27ae60;
            margin-bottom: 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .category-link, .tag-link {
            color: #27ae60;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 35px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .category-link {
            background-color: #f0f9f5;
            border: 2px solid #2ecc71;
        }
        .category-link:hover {
            background-color: #27ae60;
            color: #ffffff;
            border-color: #27ae60;
        }
        .tag-link {
            background-color: #fff9e6;
            color: #f39c12;
            border: 2px solid #f1c40f;
        }
        .tag-link:hover {
            background-color: #f1c40f;
            color: #27ae60;
            border-color: #f1c40f;
        }
        .recommendation {
            background-color: #f0f9f5;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            text-align: center;
            border: 3px solid #2ecc71;
        }
        .recommendation-text {
            font-size: 1.4rem;
            color: #27ae60;
            margin-bottom: 30px;
            line-height: 2.1;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            color: #7f8c8d;
            padding: 40px 25px;
            border-top: 3px solid #e8f5e9;
            margin-top: 70px;
            font-size: 1.1rem;
            background-color: #ffffff;
            border-radius: 20px 20px 0 0;
        }
        @media (max-width: 480px) {
            .btn {
                padding: 15px 35px;
                font-size: 1.2rem;
                width: 100%;
                justify-content: center;
            }
            h1 {
                font-size: 2.5rem;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2rem;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.7rem;
            }
            .stats-box {
                padding: 25px;
                gap: 20px;
            }
            .stat-value {
                font-size: 2.4rem;
            }
            ul, ol {
                margin-left: 40px;
            }
        }
