* {
            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: #1a202c;
            background-color: #fafafa;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header-container {
            background-color: #e63946;
            color: #ffffff;
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.2);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            text-shadow: 0 4px 6px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 18px;
        }
        .logo span {
            color: #ffd166;
        }
        .main-nav {
            display: flex;
            gap: 38px;
        }
        .main-nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-bottom: 3px solid transparent;
        }
        .main-nav a:hover {
            color: #ffd166;
            border-bottom: 3px solid #ffd166;
        }
        .daman-link {
            background-color: #ffd166;
            color: #e63946 !important;
            padding: 14px 28px;
            border-radius: 45px;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(255,209,102,0.4);
        }
        .daman-link:hover {
            background-color: #ffbe0b;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(255,209,102,0.5);
        }
        .hamburger-btn {
            display: none;
            font-size: 2.4rem;
            cursor: pointer;
            color: #ffffff;
            background: transparent;
            border: none;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background-color: #c1121f;
                padding: 35px 30px;
                gap: 28px;
                border-top: 4px solid #ffd166;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger-btn {
                display: block;
            }
            .logo {
                font-size: 2.4rem;
            }
        }
        .container {
            max-width: 1250px;
            margin: 70px auto;
            padding: 0 28px;
        }
        h1 {
            font-size: 3.5rem;
            color: #e63946;
            margin-bottom: 45px;
            text-align: center;
            border-bottom: 7px solid #ffd166;
            padding-bottom: 30px;
            font-weight: 900;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 2.6rem;
            color: #2b2d42;
            margin: 90px 0 40px;
            padding-left: 35px;
            border-left: 8px solid #e63946;
            font-weight: 800;
        }
        h3 {
            font-size: 2.1rem;
            color: #06d6a0;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 18px;
        }
        h3 emoji {
            font-size: 1.9rem;
        }
        h4 {
            font-size: 1.7rem;
            color: #118ab2;
            margin: 45px 0 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.25rem;
            text-align: justify;
            line-height: 2;
        }
        .highlight {
            font-weight: 800;
            color: #e63946;
            text-decoration: underline;
            text-underline-offset: 8px;
        }
        .keyword {
            font-weight: 900;
            color: #e63946;
            font-size: 1.4rem;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 40px;
            margin: 60px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 220px;
            padding: 25px;
            border-radius: 15px;
            background-color: #f8f9fa;
            border: 3px solid #e63946;
        }
        .stat-value {
            font-size: 3.2rem;
            font-weight: 900;
            color: #e63946;
            margin-bottom: 15px;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #4a5568;
            font-weight: 600;
        }
        .img-container {
            margin: 70px 0;
            text-align: center;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            background-color: #ffffff;
            padding: 25px;
            font-size: 1.2rem;
            color: #2b2d42;
            font-style: italic;
            border-top: 3px solid #e63946;
        }
        .btn-section {
            text-align: center;
            margin: 80px 0;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 50px;
            font-size: 1.5rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 18px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #ffd166;
            color: #e63946;
        }
        .download-btn:hover {
            background-color: #ffbe0b;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(255,209,102,0.5);
        }
        .login-btn {
            background-color: #e63946;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #c1121f;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(230,57,70,0.5);
        }
        ul, ol {
            margin: 40px 0 45px 70px;
            font-size: 1.25rem;
            line-height: 2.3;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 20px;
        }
        .tab-container {
            margin: 70px 0;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .tab-header {
            background-color: #e63946;
            color: #ffffff;
            padding: 22px 35px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.3rem;
        }
        .tab-content {
            background-color: #ffffff;
            padding: 35px;
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .game-categories {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 45px;
            margin: 80px 0 60px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .categories-title, .tags-title {
            font-size: 1.8rem;
            color: #e63946;
            margin-bottom: 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
        }
        .category-link, .tag-link {
            color: #e63946;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 40px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.2rem;
        }
        .category-link {
            background-color: #fff5f5;
            border: 2px solid #ef4444;
        }
        .category-link:hover {
            background-color: #e63946;
            color: #ffffff;
            border-color: #e63946;
        }
        .tag-link {
            background-color: #fffbeb;
            color: #e63946;
            border: 2px solid #ffd166;
        }
        .tag-link:hover {
            background-color: #ffd166;
            color: #e63946;
            border-color: #ffd166;
        }
        .recommendation {
            background-color: #f0fdf4;
            border-radius: 25px;
            padding: 45px;
            margin: 70px 0;
            text-align: center;
            border: 3px solid #06d6a0;
        }
        .recommendation-text {
            font-size: 1.5rem;
            color: #059669;
            margin-bottom: 35px;
            line-height: 2.2;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            color: #718096;
            padding: 45px 30px;
            border-top: 3px solid #f5f5f5;
            margin-top: 80px;
            font-size: 1.2rem;
            background-color: #ffffff;
            border-radius: 25px 25px 0 0;
        }
        @media (max-width: 480px) {
            .btn {
                padding: 18px 40px;
                font-size: 1.3rem;
                width: 100%;
                justify-content: center;
            }
            h1 {
                font-size: 2.8rem;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.2rem;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.9rem;
            }
            .stats-box {
                padding: 30px;
                gap: 25px;
            }
            .stat-value {
                font-size: 2.8rem;
            }
            ul, ol {
                margin-left: 50px;
            }
            p {
                font-size: 1.15rem;
                line-height: 1.9;
            }
        }
