/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo-img {
  height: 50px;
  max-height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}
.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #ffc107;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #222, #000);
  padding: 60px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}
.cta-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 8px;
  font-weight: bold;
  background-color: #ffc107;
  color: #000;
}
.cta-buttons .btn-outline {
  background: none;
  border: 2px solid #ffc107;
  color: #ffc107;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: #111;
}
.feature-box {
  max-width: 300px;
  background: #1c1c1c;
  margin: 10px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px #000;
}
.feature-box h2 {
  color: #ffc107;
  margin-bottom: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #888;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }
  .features {
    flex-direction: column;
    align-items: center;
  }
}

/* Form Section */
.form-section {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  text-align: center;
}
.form-section h2 {
  margin-bottom: 20px;
  color: #ffc107;
}
.form-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
}
.form-box button {
  width: 100%;
}
.form-footer {
  margin-top: 15px;
  font-size: 0.9rem;
}
.form-footer a {
  color: #ffc107;
}

/* Promo Section */
.promo-section {
  padding: 40px 20px;
  background-color: #111;
  text-align: center;
}
.promo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.promo-box {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 10px #000;
}
.promo-box h3 {
  color: #ffc107;
  margin-bottom: 10px;
}


.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  color: #ffc107;
  padding: 10px 15px;
  font-size: 1rem;
}

.icon-bars {
  font-size: 1.5rem;
  cursor: pointer;
}

.icon-megaphone {
  margin-right: 8px;
  font-size: 1.2rem;
}

.flex-col {
  display: flex;
  align-items: center;
}

.flex-left {
  justify-content: flex-start;
}
.flex-right {
  justify-content: flex-end;
}
.flex-grow {
  flex-grow: 1;
}

.text-right {
  text-align: right;
}

.ann-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.ann-content marquee {
  color: #ffc107;
  font-size: 0.9rem;
  white-space: nowrap;
}

.show-for-medium {
  display: none;
}

.hide-for-medium {
  display: flex;
}

@media (max-width: 768px) {
  .show-for-medium {
    display: flex !important;
  }
  .hide-for-medium {
    display: none !important;
  }
}


body {
  margin: 0;
  background-color: #000;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #1a1a1a;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  align-items: center;
  border-bottom: 2px solid #333;
}

.nav-item {
  color: #f39c12;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item .icon {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

.hot-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: red;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
}



.jackpot-container {
  background-color: black;
  padding: 20px 0;
  text-align: center;
}

.jackpot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid gold;
  border-radius: 10px;
  padding: 10px 20px;
  box-shadow: 0 0 20px gold;
  position: relative;
}

.jackpot-left,
.jackpot-right {
  width: 50px;
  height: auto;
}

.jackpot-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin: 0 15px;
  text-shadow: 0 0 5px gold;
}

#jackpotAmount {
  font-size: 26px;
  color: #fff;
}
body {
  margin: 0;
  background-color: #000;
  font-family: Arial, sans-serif;
}

.navbar {
  background-color: #1a1a1a;
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  align-items: center;
  border-bottom: 2px solid #333;
}

.nav-item {
  color: #f39c12;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item .icon {
  font-size: 24px;
  display: block;
  margin-bottom: 5px;
}

.hot-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: red;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
}



/* Reset basic */
body {
  margin: 0;
  padding: 0;
  background: #000;
  font-family: Arial, sans-serif;
}

.main-nav {
  background-color: #1a1a1a;
  padding: 0;
  text-align: center;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  padding: 15px 20px;
  color: #FFA500;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.nav-item > a:hover {
  background-color: #333;
}

.hot-badge {
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 4px;
  margin-left: 5px;
}

/* Submenu */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  min-width: 160px;
  display: none;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.submenu li {
  border-bottom: 1px solid #444;
}

.submenu li a {
  padding: 12px 15px;
  display: block;
  color: white;
  text-align: left;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: #333;
  color: #FFD700;
}

/* Show submenu on hover */
.nav-item:hover .submenu {
  display: block;
}





.nav-bar {
  display: flex;
  background: #1a1a1a;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 15px 20px;
  color: orange;
  text-decoration: none;
}

.nav-item:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  padding: 15px;
  top: 100%;
  z-index: 100;
  width: 800px;
}

.game-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.game-item {
  width: 120px;
  text-align: center;
  color: #00aaff;
}

.game-item img {
  width: 100px;
}



.promo-banner {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px; /* beri jarak dari carousel */
}

.promo-banner img {
  width: 100%;
  display: block;
}



.tooltip-icon {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: orange;
}

.tooltip-icon .tooltip-text {
  display: none;
  position: absolute;
  bottom: 125%; /* muncul di atas ikon */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 100;
}

.tooltip-icon:hover .tooltip-text {
  display: block;
}




