<!
DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-
scale=1.0, user-scalable=no">
<title>Kalkulator Jualan Coin - Jeniustoto</title>
<link href="https://fonts.googleapis.com/css2?
family=Orbitron:wght@400;700&family=Poppins:wght@400;600&display=swap"
rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: linear-gradient(135deg, #1a0b2e, #3c1b5e, #2e1e4e);
color: #fff;
padding: 10px;
overflow-x: hidden;
-webkit-tap-highlight-color: transparent;
}
.container {
max-width: 100%;
margin: auto;
padding: 15px;
}
/* Logo */
.logo-container {
text-align: center;
margin: 15px 0;
animation: fadeIn 1s ease;
}
.logo img {
max-width: 80%;
height: auto;
filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.7));
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Banner */
.banner {
position: relative;
margin-bottom: 15px;
}
.banner img {
width: 100%;
height: auto;
border-radius: 12px;
box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}
/* Link Buttons */
.link-container {
display: flex;
justify-content: center;
gap: 10px;
margin: 15px 0;
}
.register-button, .login-button {
flex: 1;
padding: 12px;
background: linear-gradient(90deg, #ff00cc, #00ffcc);
color: #fff;
font-family: 'Orbitron', sans-serif;
font-weight: 700;
font-size: 14px;
text-transform: uppercase;
text-decoration: none;
border-radius: 8px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
.register-button:hover, .login-button:hover {
background: linear-gradient(90deg, #00ffcc, #ff00cc);
transform: scale(1.05);
box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}
/* Site Description */
.site-description {
text-align: center;
margin: 20px 0;
animation: slideIn 1s ease;
}
.site-description h1 {
font-family: 'Orbitron', sans-serif;
color: #ff00cc;
font-size: 18px;
margin-bottom: 8px;
text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}
.site-description p {
color: #ddd;
font-size: 14px;
line-height: 1.5;
}
@keyframes slideIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Kalkulator */
.calculator-container {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(5px);
border-radius: 15px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}
.calculator-container h2 {
color: #ff00cc;
font-family: 'Orbitron', sans-serif;
font-size: 20px;
margin-bottom: 15px;
text-transform: uppercase;
text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
text-align: center;
}
.input-group {
margin-bottom: 15px;
position: relative;
}
label {
display: block;
color: #fff;
font-weight: 600;
font-size: 14px;
margin-bottom: 8px;
}
input[type="number"] {
width: 100%;
padding: 12px 35px 12px 15px;
border: none;
border-radius: 8px;
background: rgba(255, 255, 255, 0.15);
font-size: 16px;
color: #fff;
transition: all 0.3s ease;
-webkit-appearance: none;
}
input[type="number"]:focus {
outline: none;
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
}
.input-group::after {
content: '💰';
position: absolute;
right: 15px;
top: 35px;
font-size: 16px;
color: #ff00cc;
}
.ggr-input::after {
content: '%';
position: absolute;
right: 15px;
top: 35px;
font-size: 16px;
color: #ff00cc;
}
.button-group {
display: flex;
gap: 10px;
}
button {
flex: 1;
padding: 14px;
background: linear-gradient(90deg, #ff00cc, #00ffcc);
border: none;
border-radius: 8px;
color: #fff;
font-family: 'Orbitron', sans-serif;
font-size: 16px;
font-weight: 700;
cursor: pointer;
text-transform: uppercase;
transition: all 0.3s ease;
box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
button:hover {
background: linear-gradient(90deg, #00ffcc, #ff00cc);
transform: scale(1.05);
box-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}
.result {
margin-top: 15px;
font-size: 18px;
font-weight: 600;
color: #ff00cc;
background: rgba(255, 0, 255, 0.1);
padding: 12px;
border-radius: 8px;
animation: coinDrop 0.5s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.result::before {
content: '🪙';
font-size: 20px;
animation: spin 1s infinite linear;
}
@keyframes spin {
0% { transform: rotateY(0deg); }
100% { transform: rotateY(360deg); }
}
@keyframes coinDrop {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.error {
margin-top: 15px;
font-size: 14px;
color: #ff4d4d;
background: rgba(255, 77, 77, 0.1);
padding: 10px;
border-radius: 8px;
text-align: center;
}
/* Game Section */
.game_section {
margin: 20px 0;
}
.game_list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.game_box {
text-align: center;
position: relative;
}
.game_box a {
text-decoration: none;
color: #fff;
transition: transform 0.3s ease;
display: block;
}
.game_box a:hover {
transform: scale(1.05);
}
.game_box img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
}
.game_box span {
display: block;
margin-top: 8px;
font-size: 12px;
font-weight: 600;
line-height: 1.3;
text-shadow: 0 0 5px rgba(255, 0, 255, 0.3);
}
/* Copyright */
.copy {
text-align: center;
margin: 20px 0 80px 0;
color: #ddd;
font-size: 12px;
}
/* Fixed Footer */
.fixed-footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.9);
padding: 8px;
display: flex;
justify-content: space-around;
align-items: center;
box-shadow: 0 -3px 10px rgba(255, 0, 255, 0.3);
}
.fixed-footer a {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
color: #ff00cc;
text-decoration: none;
font-size: 10px;
font-weight: 600;
transition: color 0.3s ease;
}
.fixed-footer a:hover {
color: #00ffcc;
}
.fixed-footer img {
width: 20px;
height: 20px;
filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.5));
}
@media (min-width: 768px) {
.container { max-width: 1000px; padding: 20px; }
.logo img { max-width: 50%; }
.site-description h1 { font-size: 24px; }
.site-description p { font-size: 16px; }
.calculator-container { padding: 30px; }
.calculator-container h2 { font-size: 24px; }
label { font-size: 16px; }
input[type="number"] { font-size: 18px; }
button { font-size: 18px; }
.result { font-size: 20px; }
.error { font-size: 16px; }
.game_list { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.game_box span { font-size: 14px; }
.link-container { gap: 20px; }
.register-button, .login-button { font-size: 16px; padding: 15px
40px; }
.fixed-footer a { font-size: 12px; }
.fixed-footer img { width: 24px; height: 24px; }
}
</style>
</head>
<body>
<!-- Logo -->
<div class="logo-container">
<a href="https://jeniustoto.com" class="logo">
<img src="https://jen.jeniusbaik.com/jeni/us/img/logo.webp"
alt="Jeniustoto">
</a>
</div>
<!-- Banner -->
<div class="banner container">
<img src="https://jen.jeniusbaik.com/jeni/us/img/linkjeniustoto.webp"
alt="Demo Gratis" title="Demo Gratis PG Soft & Pragmatic Play">
</div>
<!-- Link Buttons -->
<div class="link-container container">
<a href="https://cutt.ly/DaftarJeniusToto" target="_blank" rel="noopener
noreferrer" class="register-button">DAFTAR</a>
<a href="https://cutt.ly/JeniusTotoLogin" target="_blank" rel="noopener
noreferrer" class="login-button">MASUK</a>
</div>
<!-- Site Description -->
<div class="site-description container">
<h1>Demo Gratis PG Soft & Pragmatic Play</h1>
<p>Mainkan demo gratis dari PG Soft dan Pragmatic Play. Tim akun demo pasti
gacor, jamin maxwin x1000! Coba sekarang dan rasakan sensasi permainan slot terbaik
dengan grafis memukau dan peluang menang besar.</p>
</div>
<!-- Kalkulator -->
<div class="calculator-container container">
<h2>Kalkulator Jualan Coin</h2>
<form id="coinForm" onsubmit="calculateCoin(event)">
<div class="input-group">
<label for="amount">Masukkan Jumlah Uang (Rp)</label>
<input type="number" id="amount" step="1" min="0"
placeholder="Contoh: 150000" required>
</div>
<div class="input-group ggr-input">
<label for="ggr">Persentase GGR (%)</label>
<input type="number" id="ggr" step="0.1" min="0" max="100"
placeholder="Contoh: 15" value="15" required>
</div>
<div class="button-group">
<button type="submit">Hitung Coin</button>
<button type="button" onclick="resetForm()">Reset</button>
</div>
</form>
<div class="result" id="result"></div>
<div class="error" id="error"></div>
</div>
<!-- Game Section -->
<div class="game_section container">
<div class="game_list">
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20olympgold&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20olympgold.webp" alt="Gates of
Olympus Super Scatter" title="Gates of Olympus Super Scatter" loading="lazy">
<span>Gates of Olympus Super</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vswaysmahwblck&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vswaysmahwblck.webp" alt="Mahjong Wins
3 Scatter Hitam" title="Mahjong Wins 3 Scatter Hitam" loading="lazy">
<span>Mahjong Wins 3</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20olympx&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20olympx.webp" alt="Gates of Olympus
1000" title="Gates of Olympus 1000" loading="lazy">
<span>Gates of Olympus 1000</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20olympgate&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20olympgate.webp" alt="Gates of
Olympus" title="Gates of Olympus" loading="lazy">
<span>Gates of Olympus</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20starlightx&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20starlightx.webp" alt="Starlight
Princess 1000" title="Starlight Princess 1000" loading="lazy">
<span>Starlight Princess 1000</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20fruitswx&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20fruitswx.webp" alt="Sweet Bonanza
1000" title="Sweet Bonanza 1000" loading="lazy">
<span>Sweet Bonanza 1000</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vswaysmahwin2&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vswaysmahwin2.webp" alt="Mahjong Wins
2" title="Mahjong Wins 2" loading="lazy">
<span>Mahjong Wins 2</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20procountx&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20procountx.webp" alt="Wisdom of
Athena 1000" title="Wisdom of Athena 1000" loading="lazy">
<span>Wisdom of Athena 1000</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs5triple8gold&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs5triple8gold.webp" alt="888 Gold"
title="888 Gold" loading="lazy">
<span>888 Gold</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs243empcaishen&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs243empcaishen.webp" alt="Emperor
Caishen" title="Emperor Caishen" loading="lazy">
<span>Emperor Caishen</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20sugarrushx&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20sugarrushx.webp" alt="Sugar Rush
1000" title="Sugar Rush 1000" loading="lazy">
<span>Sugar Rush 1000</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20fruitsw&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20fruitsw.webp" alt="Sweet Bonanza"
title="Sweet Bonanza" loading="lazy">
<span>Sweet Bonanza</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20mkrush&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20mkrush.webp" alt="Wukong Rush"
title="Wukong Rush" loading="lazy">
<span>Wukong Rush</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs5aztecgems&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs5aztecgems.webp" alt="Aztec Gems"
title="Aztec Gems" loading="lazy">
<span>Aztec Gems</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20gatotx&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20gatotx.webp" alt="Gates of Gatot
Kaca 1000" title="Gates of Gatot Kaca 1000" loading="lazy">
<span>Gatot Kaca 1000</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20starlight&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20starlight.webp" alt="Starlight
Princess" title="Starlight Princess" loading="lazy">
<span>Starlight Princess</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20pbonanza&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20pbonanza.webp" alt="Pyramid
Bonanza" title="Pyramid Bonanza" loading="lazy">
<span>Pyramid Bonanza</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs1024mahjwins&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs1024mahjwins.webp" alt="Mahjong Wins"
title="Mahjong Wins" loading="lazy">
<span>Mahjong Wins</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20rujakbnz&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20rujakbnz.webp" alt="Rujak Bonanza"
title="Rujak Bonanza" loading="lazy">
<span>Rujak Bonanza</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20sbxmas&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20sbxmas.webp" alt="Sweet Bonanza
Xmas" title="Sweet Bonanza Xmas" loading="lazy">
<span>Sweet Bonanza Xmas</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs5joker&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/vs5joker.webp"
alt="Joker's Jewels" title="Joker's Jewels" loading="lazy">
<span>Joker's Jewels</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20gatotgates&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20gatotgates.webp" alt="Gates of
Gatot Kaca" title="Gates of Gatot Kaca" loading="lazy">
<span>Gates of Gatot Kaca</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs20procount&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs20procount.webp" alt="Wisdom of
Athena" title="Wisdom of Athena" loading="lazy">
<span>Wisdom of Athena</span>
</a>
</div>
<div class="game_box">
<a href="https://d3pvfi6m7bxu71.cloudfront.net/gs2c/openGame.do?
lang=id&cur=IDR&gameSymbol=vs1024butterfly&websiteUrl=https%3A%2F
%2FPragmaticgamesfree.pragmaticplay.net&jurisdiction=99" target="_blank"
rel="noopener noreferrer">
<img
src="https://jen.jeniusbaik.com/jeni/us/img/vs1024butterfly.webp" alt="Jade
Butterfly" title="Jade Butterfly" loading="lazy">
<span>Jade Butterfly</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/74/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/74.webp"
alt="Mahjong Ways 2" title="Mahjong Ways 2" loading="lazy">
<span>Mahjong Ways 2</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/65/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/65.webp"
alt="Mahjong Ways" title="Mahjong Ways" loading="lazy">
<span>Mahjong Ways</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/89/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/89.webp"
alt="Lucky Neko" title="Lucky Neko" loading="lazy">
<span>Lucky Neko</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/87/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/87.webp"
alt="Treasures of Aztec" title="Treasures of Aztec" loading="lazy">
<span>Treasures of Aztec</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/104/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/104.webp"
alt="Wild Bandito" title="Wild Bandito" loading="lazy">
<span>Wild Bandito</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/106/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/106.webp"
alt="Ways of the Qilin" title="Ways of the Qilin" loading="lazy">
<span>Ways of the Qilin</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/79/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/79.webp"
alt="Dreams of Macau" title="Dreams of Macau" loading="lazy">
<span>Dreams of Macau</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/71/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/71.webp"
alt="Caishen Wins" title="Caishen Wins" loading="lazy">
<span>Caishen Wins</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/110/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/110.webp"
alt="Jurassic Kingdom" title="Jurassic Kingdom" loading="lazy">
<span>Jurassic Kingdom</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/117/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/117.webp"
alt="Cocktail Nights" title="Cocktail Nights" loading="lazy">
<span>Cocktail Nights</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/75/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/75.webp"
alt="Ganesha Fortune" title="Ganesha Fortune" loading="lazy">
<span>Ganesha Fortune</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/53/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/53.webp"
alt="The Great Icescape" title="The Great Icescape" loading="lazy">
<span>The Great Icescape</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/57/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/57.webp"
alt="Dragon Hatch" title="Dragon Hatch" loading="lazy">
<span>Dragon Hatch</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/60/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/60.webp"
alt="Leprechaun Riches" title="Leprechaun Riches" loading="lazy">
<span>Leprechaun Riches</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/62/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/62.webp"
alt="Gem Saviour Conquest" title="Gem Saviour Conquest" loading="lazy">
<span>Gem Saviour Conquest</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/84/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/84.webp"
alt="Queen of Bounty" title="Queen of Bounty" loading="lazy">
<span>Queen of Bounty</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/92/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/92.webp"
alt="Thai River Wonders" title="Thai River Wonders" loading="lazy">
<span>Thai River Wonders</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/119/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/119.webp"
alt="Spirited Wonders" title="Spirited Wonders" loading="lazy">
<span>Spirited Wonders</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/83/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/83.webp"
alt="Wild Fireworks" title="Wild Fireworks" loading="lazy">
<span>Wild Fireworks</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/115/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/115.webp"
alt="Supermarket Spree" title="Supermarket Spree" loading="lazy">
<span>Supermarket Spree</span>
</a>
</div>
<div class="game_box">
<a href="https://m.pg-demo.com/95/index.html?
l=en&ot=ca7094186b309ee149c55c8822e7ecf2&btt=2&__refer=m.pg-
redirect.net&or=static.pg-demo.com" target="_blank" rel="noopener noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/95.webp"
alt="Majestic Treasures" title="Majestic Treasures" loading="lazy">
<span>Majestic Treasures</span>
</a>
</div>
</div>
</div>
<!-- Copyright -->
<div class="copy container">Copyright © Jeniustoto 2025 All Rights
Reserved.</div>
<!-- Fixed Footer -->
<footer class="fixed-footer">
<a href="https://cutt.ly/JeniusTotoLogin" target="_blank" rel="noopener
noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/home.webp"
alt="MASUK">MASUK
</a>
<a href="https://cutt.ly/DaftarJeniusToto" target="_blank" rel="noopener
noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/daftar.webp"
alt="REGISTER">DAFTAR
</a>
<a href="https://cutt.ly/wajeniustoto" target="_blank" rel="noopener
noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/whatsapp.webp"
alt="WHATSAPP">WHATSAPP
</a>
<a href="https://cutt.ly/csjeniustoto" target="_blank" rel="noopener
noreferrer">
<img src="https://jen.jeniusbaik.com/jeni/us/img/livechat.webp"
alt="LIVECHAT">LIVECHAT
</a>
</footer>
<script>
function calculateCoin(event) {
event.preventDefault();
const amountInput = document.getElementById('amount');
const ggrInput = document.getElementById('ggr');
const errorDiv = document.getElementById('error');
const resultDiv = document.getElementById('result');
const amount = parseFloat(amountInput.value);
const ggr = parseFloat(ggrInput.value);
// Validasi input
if (isNaN(amount) || amount <= 0) {
errorDiv.textContent = 'Masukkan jumlah uang yang valid!';
resultDiv.textContent = '';
return;
}
if (isNaN(ggr) || ggr < 0 || ggr > 100) {
errorDiv.textContent = 'GGR harus antara 0% dan 100%!';
resultDiv.textContent = '';
return;
}
// Perhitungan
const baseCoinRate = 1000000 / 150000; // 6.66667 coin per Rp
const defaultGGR = 15; // GGR default 15%
const adjustedRate = baseCoinRate * (defaultGGR / (ggr || 0.1)); //
Hindari pembagian dengan 0
const totalCoin = amount * adjustedRate;
errorDiv.textContent = '';
resultDiv.textContent = `${Math.floor(totalCoin).toLocaleString('id-
ID')} coin`;
}
function resetForm() {
const form = document.getElementById('coinForm');
const errorDiv = document.getElementById('error');
const resultDiv = document.getElementById('result');
form.reset();
errorDiv.textContent = '';
resultDiv.textContent = '';
document.getElementById('ggr').value = '15'; // Set default GGR
}
</script>
</body>
</html>