<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Orbitron:wght@500;700&family=Montserrat:wght@400;600&family=Cinzel:wght@400;700&display=swap');

.shura {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.gold-togel-wrapper,
.shura-slot {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.gold-togel-machine {
  background: linear-gradient(145deg, #0a0a0a, #151515);
  border-radius: 20px;
  padding: 30px 25px;
  width: 100%;
  max-width: 500px;
  border: 1px solid rgba(55, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.gold-togel-machine.win-pulse {
    border-color: #9cf49c;
    box-shadow: 0 0 50px rgba(55, 175, 55, 0.3), inset 0 0 30px rgba(0,0,0,0.8);
}

.gold-togel-title {
  font-family: 'Cinzel', serif;
  background: linear-gradient(to right, #3cbf3c, #b4fcb4, #28b328);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.gold-togel-title::before {
    content: "✨ GENERATOR RIMBATOTO ✨";
}

.lucky-meter-wrapper {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 6px;
    display: block;
}

.lucky-meter-track {
    width: 100%;
    height: 6px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
}

.lucky-meter-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #2f8a2f, #9cf49c);
    border-radius: 10px;
    box-shadow: 0 0 10px #37d437;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.market-label {
  color: #666;
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.market-selector {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.chip {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(55, 175, 55, 0.4);
  color: #37d437;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0,0,0,0.3);
}

.chip:hover {
  background: rgba(55, 175, 55, 0.1);
  transform: translateY(-2px);
}

.chip.active {
  background: linear-gradient(135deg, #37d437, #2caa2c);
  border-color: #9cf49c;
  color: #000;
  box-shadow: 0 4px 15px rgba(55, 175, 55, 0.4);
  transform: translateY(-2px);
}

.gold-reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(55, 175, 55, 0.1);
  margin-bottom: 25px;
  position: relative;
}

.gold-reel.blur .gold-digit {
    filter: blur(2px);
    opacity: 0.7;
}

.gold-reel {
  width: 65px;
  height: 85px;
  background: #000000;
  border-radius: 8px;
  border: 1px solid #333;
  box-shadow: inset 0 0 20px rgba(0,0,0,1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gold-reel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.gold-digit {
  font-family: 'Orbitron', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #37d437;
  text-shadow: 0 0 10px rgba(55, 175, 55, 0.4);
  position: relative;
  z-index: 2;
}

.gold-reel.active {
    border-color: #9cf49c;
    box-shadow: inset 0 0 10px rgba(55, 175, 55, 0.2), 0 0 10px rgba(55, 175, 55, 0.2);
}

.gold-spin-btn {
  margin-top: 10px;
  background: linear-gradient(135deg, #37d437, #2caa2c);
  border: none;
  padding: 14px 45px;
  border-radius: 50px;
  font-weight: bold;
  color: #000;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(55, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.gold-spin-btn::before {
    content: "✨ ANGKA HOKI RIMBATOTO ✨";
}

.gold-spin-btn.drawing::before {
    content: "TUNGGU SEBENTAR...";
}

.gold-spin-btn.done::before {
    content: "CARI ANGKA LAIN ?";
}

.gold-spin-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #9cf49c, #37d437);
  box-shadow: 0 10px 30px rgba(55, 175, 55, 0.6);
}

.gold-spin-btn:active {
  transform: translateY(1px);
}

.gold-result {
  margin-top: 20px;
  color: #ccc;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  min-height: 24px;
  font-weight: 500;
}

.history-container {
    margin-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
    text-align: left;
}

.history-label {
    display: block;
    font-size: 10px;
    color: #666;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.history-label::before {
    content: "🏆 WINNER RIMBATOTO 🏆";
}

.history-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.history-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #888;
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.history-item span {
    color: #37d437;
}

.testimonials-wrapper {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials-scroll {
    height: 85px; 
    overflow: hidden;
    position: relative;
    text-align: left;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 5px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid #2f8a2f;
    border-radius: 0 4px 4px 0;
    animation: slideIn 0.5s ease-out;
    font-size: 12px;
}

.winner-info {
    display: flex;
    flex-direction: column;
}

.winner-name {
    color: #e0e0e0;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.winner-market {
    color: #888;
    font-size: 10px;
}

.winner-amount {
    font-family: 'Orbitron', sans-serif;
    color: #9cf49c;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(55, 175, 55, 0.3);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gold-togel-machine::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(55, 175, 55, 0.05) 50%,
    rgba(255,255,255,0) 100%);
  animation: goldShine 6s infinite;
  transform: skewX(-20deg);
  pointer-events: none;
}

@keyframes goldShine {
  0% { left: -150%; }
  20% { left: 150%; animation-timing-function: ease-out; }
  100% { left: 150%; }
}
</style>
<style>
	body {
		margin: 0;
		padding: 0;
		padding-bottom: 120px; 
		background-color: #050505;
		background-image: radial-gradient(circle at top, #1e0a0a 0%, #000000 60%);
		color: #dcdcdc;
		font-family: 'Lato', sans-serif;
		overflow-x: hidden;
	}

	h2, h3, h4 {
		font-family: 'Cinzel', serif;
		color: #37d437;
	}

	.royal-wrapper {
		max-width: 1100px;
		margin: 0 auto;
		padding: 40px 20px;
		position: relative;
		z-index: 2;
	}

	.jackpot-bar {
		background: rgba(0,0,0,0.6);
		border: 1px solid #37d437;
		border-radius: 12px;
		padding: 20px;
		margin-bottom: 40px;
		text-align: center;
		box-shadow: 0 0 30px rgba(55, 175, 55, 0.15);
		position: relative;
		overflow: hidden;
	}

	.jackpot-bar::before {
		content: "";
		position: absolute;
		top: 0; left: -100%;
		width: 50%; height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
		animation: shineMove 3s infinite;
	}

	.jackpot-label {
		font-size: 12px;
		letter-spacing: 3px;
		color: #888;
		text-transform: uppercase;
		margin-bottom: 5px;
		font-family: 'Cinzel', serif;
	}
	
	.jackpot-label::before {
		content: "Progressive Jackpot RIMBATOTO";
	}

	.jackpot-amount {
		font-family: 'Cinzel', serif;
		font-size: 32px;
		font-weight: 700;
		color: #fff;
		text-shadow: 0 0 15px #37d437;
	}

	.pred-section-title {
		text-align: center;
		margin-bottom: 25px;
		font-size: 22px;
		text-transform: uppercase;
		letter-spacing: 2px;
		position: relative;
		color: #fff;
	}
	
	.pred-section-title span { color: #37d437; }
	
	.pred-section-title::before {
		content: "Prediksi Jitu ";
	}

	.pred-section-title span::before {
		content: "RIMBATOTO";
	}

	.prediction-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 20px;
		margin-bottom: 50px;
	}

	.pred-card {
		background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
		border: 1px solid rgba(55, 175, 55, 0.2);
		border-radius: 12px;
		padding: 20px;
		text-align: center;
		transition: 0.3s;
	}

	.pred-card:hover {
		transform: translateY(-5px);
		border-color: #37d437;
		box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	}

	.pred-market {
		font-size: 18px;
		margin-bottom: 15px;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		font-family: 'Cinzel', serif;
	}

	.pred-number-group {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin: 20px 0;
	}

	.pred-num {
		width: 35px;
		height: 45px;
		background: #000;
		border: 1px solid #333;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: 'Orbitron', sans-serif; 
		font-weight: bold;
		font-size: 18px;
		color: #37d437;
		box-shadow: inset 0 0 10px rgba(55, 175, 55, 0.2);
		border-radius: 4px;
	}

	.pred-btn {
		background: #37d437;
		color: #000;
		border: 1px solid #37d437;
		padding: 8px 20px;
		font-size: 11px;
		text-transform: uppercase;
		cursor: pointer;
		letter-spacing: 1px;
		transition: 0.3s;
		border-radius: 4px;
		font-weight: 600;
	}

	.pred-btn:hover {
		background: transparent;
		color: #37d437;
	}
	
	.pred-btn::before {
		content: "⚡️ RIMBATOTO PREDIKSI ⚡️";
	}
	
	.pred-btn:disabled::before {
		content: "Mencari Angka Kuat...";
	}

	.pred-btn.locked::before {
		content: "🔥 ANGKA CANTIK RIMBATOTO 🔥";
	}
	
	.user-input {
		background: #fff;
		border: 1px solid #37d437;
		color: #37d437;
		padding: 8px 20px;
		font-size: 8px;
		text-transform: uppercase;
		cursor: text;
		transition: 0.3s;
		border-radius: 4px;
		font-weight: 600;
		text-align: center;
	}
	
	.user-input:disabled {
		background: #2b2b2b;
		color: #aaa;
		cursor: text;
	}
	
	.pred-btn:disabled,
	.pred-btn.locked {
		background: #555;
		cursor: not-allowed;
		opacity: 0.7;
	}

	.rimbatoto-section {
	  max-width: 1200px;
	  margin: 0 auto 50px;
	  padding: 40px;
	  border-radius: 20px;
	  background: linear-gradient(145deg, #080808, #0f0f0f);
	  border: 1px solid rgba(55, 175, 55, 0.3);
	  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(55, 175, 55, 0.05);
	  font-family: "Playfair Display", "Times New Roman", serif;
	  color: #e0e0e0;
	  position: relative;
	  overflow: hidden;
	}

	.rimbatoto-section h2 {
	  text-align: center;
	  font-size: 32px;
	  background: linear-gradient(to right, #3cbf3c, #b4fcb4, #28b328);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	  margin-bottom: 30px;
	  letter-spacing: 2px;
	  font-weight: 700;
	}

	.rimbatoto-faq {
	  max-width: 950px;
	  margin: 0 auto 40px;
	}

	.rimbatoto-section details {
	  background: rgba(20, 20, 20, 0.8);
	  border-radius: 15px;
	  margin-bottom: 15px;
	  padding: 20px 25px;
	  border: 1px solid rgba(55, 175, 55, 0.15);
	  transition: all 0.4s ease;
	  backdrop-filter: blur(5px);
	}

	.rimbatoto-section details:hover {
	  border-color: #37d437;
	  box-shadow: 0 5px 20px rgba(55, 175, 55, 0.15);
	  transform: translateY(-2px);
	  background: rgba(30, 30, 30, 0.9);
	}

	.rimbatoto-section summary {
	  cursor: pointer;
	  font-family: "Inter", sans-serif;
	  font-size: 17px;
	  font-weight: 600;
	  color: #37d437;
	  list-style: none;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	}
	
	.rimbatoto-section summary::after {
	  content: '+';
	  font-size: 24px;
	  color: #37d437;
	  transition: transform 0.3s;
	}
	.rimbatoto-section details[open] summary::after {
	  transform: rotate(45deg);
	}

	.rimbatoto-section details p {
	  margin-top: 15px;
	  font-family: "Inter", sans-serif;
	  font-size: 15px;
	  line-height: 1.8;
	  color: #ccc;
	  padding-top: 10px;
	  border-top: 1px solid rgba(255,255,255,0.05);
	}

	.testimoni-wrapper {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 30px;
	  margin-top: 30px;
	}

	.rimbatoto-section cite {
	  display: block;
	  margin-top: 25px;
	  font-weight: 700;
	  font-style: normal;
	  color: #9cf49c;
	  text-align: right;
	  text-transform: uppercase;
	  letter-spacing: 1px;
	  font-size: 0.85rem;
	  position: relative;
	  z-index: 1;
	}

	.rimbatoto-section::before {
	  content: "";
	  position: absolute;
	  top: 0; 
	  left: -150%;
	  width: 50%; 
	  height: 100%;
	  background: linear-gradient(120deg, rgba(0,0,0,0) 0%, rgba(55, 175, 55, 0.1) 50%, rgba(0,0,0,0) 100%);
	  transform: skewX(-20deg);
	  animation: shine 5s infinite;
	  pointer-events: none;
	}
	
	@keyframes shine {
	  0% { left: -150%; }
	  20% { left: 150%; animation-timing-function: ease-out; }
	  100% { left: 150%; }
	}
	@keyframes shineMove {
	  0% { left: -100%; }
	  100% { left: 200%; }
	}

	.shura-gacor-fixed-footer {
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  z-index: 99;
	  display: flex;
	  justify-content: space-evenly;
	  align-items: center;
	  gap: 10px;
	  padding: 12px 10px 15px 10px;
	  background: linear-gradient(180deg, #111111 0%, #000000 100%);
	  border-top: 1px solid rgba(55, 175, 55, 0.4);
	  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.9);
	  border-radius: 25px 25px 0 0;
	  font-family: "Inter", "Segoe UI", sans-serif;
	  backdrop-filter: blur(10px);
	}
	
	.shura-gacor-fixed-footer a {
	  flex: 1;
	  max-width: 90px;
	  text-align: center;
	  text-decoration: none;
	  color: #888;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 6px;
	  font-size: 12px;
	  font-weight: 500;
	  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	}
	
	.shura-gacor-fixed-footer a:hover {
	  color: #37d437;
	  transform: translateY(-6px);
	  text-shadow: 0 0 8px rgba(55, 175, 55, 0.6);
	}
	
	.shura-gacor-fixed-footer img {
	  width: 24px;
	  height: 24px;
	  transition: all 0.3s ease;
	}
	
	.shura-gacor-fixed-footer a:hover img {
	  filter: none;
	  filter: drop-shadow(0 0 5px rgba(55, 175, 55, 0.8));
	  transform: scale(1.1);
	}
	
	.shura-gacor-fixed-footer .tada {
	  background: linear-gradient(135deg, #37d437, #2caa2c);
	  border-radius: 50%;
	  padding: 12px;
	  margin-top: -25px;
	  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(55, 175, 55, 0.4);
	  border: 2px solid #9cf49c;
	  animation: goldBreath 3s infinite ease-in-out;
	}
	
	.shura-gacor-fixed-footer .tada span {
		color: #000;
		font-weight: 700;
	}

	@keyframes goldBreath {
	  0%, 100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(55, 175, 55, 0.4); }
	  50% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 25px rgba(55, 175, 55, 0.7); transform: scale(1.05); }
	}
	
	.shura-gacor-fixed-footer a:active { transform: scale(0.95); }
	
	@media (max-width: 500px) {
	  .shura-gacor-fixed-footer { padding: 8px 5px 15px 5px; border-radius: 20px 20px 0 0; }
	  .shura-gacor-fixed-footer a { font-size: 10px; }
	  .shura-gacor-fixed-footer img { width: 20px; height: 20px; }
	  .tada { margin-top: -20px; padding: 10px; }
	}
</style>