body {
  font-family: Arial, sans-serif;
  background: #f0f9ff;
  color: #003366;
  margin: 0;
  padding: 0;
}
:root {
  --primary-color: #2b8bfa;
  --primary-dark: #1e79ef;
  --primary-light: #e5f1ff;

  --accent-color: #2377f7;
  --link-color: #005be1;
  --link-hover: #003f9e;

  --background-color: #f2f7ff;
  --card-background: #ffffff;
  --text-color: #111111;
  --text-muted: #444e63;

  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;

  --border-color: #dde6f1;
  --shadow-color: rgba(0, 0, 0, 0.05);
}
.hero-header {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  padding: 60px 20px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 28px 28px;
}

.hero-header-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-header-text h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #fff;
  text-shadow: 1px 1px 0 #0a0a0a, 2px 2px 4px rgba(0, 0, 0, 0.4),
    0 0 8px var(--primary-light);
  letter-spacing: 0.5px;
}

.hero-header-text .highlight {
  color: var(--primary-light);
  font-weight: 900;
  text-shadow: 1px 1px 0 #0a0a0a, 0 0 6px var(--accent-color),
    0 0 12px var(--accent-color);
}

.hero-header-text p {
  font-size: 16px;
  opacity: 0.9;
}

.language-switcher {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.lang-btn {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-header-text h1 {
    font-size: 22px;
  }

  .hero-header-text p {
    font-size: 14px;
  }
}

.section {
  margin-bottom: 40px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  border: 1px solid #ccc;
  padding: 15px;
  background: white;
  margin: 10px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}
.game-feature-section {
  padding: 20px;
  text-align: center;
}

.section-title {
  font-size: 38px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-description {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 50px;
}

.game-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.game-card {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px 20px;
  width: 300px;
  box-shadow: 0 0 12px rgba(0, 112, 243, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.game-card:hover {
  box-shadow: 0 0 20px rgba(0, 112, 243, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 10px rgba(0, 112, 243, 0.3);
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #0070f3, #005ad1);
  color: white;
  border: none;
  box-shadow: 0 0 10px rgba(0, 112, 243, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #005ad1, #0040b0);
  box-shadow: 0 0 12px rgba(0, 90, 209, 0.5);
  transform: translateY(-1px);
}

.icon {
  font-size: 28px;
}

.game-title {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.game-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.game-stat {
  background: var(--primary-light);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.game-stat strong {
  display: block;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: bold;
}

.game-stat span {
  color: var(--text-muted);
  font-size: 13px;
}

.all-games-btn {
  margin-top: 40px;
}

.all-games-btn .btn {
  padding: 12px 28px;
}

.btn-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  filter: drop-shadow(0 0 2px var(--primary-color));
}

@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .game-card {
    width: 100%;
    max-width: 330px;
  }
}
.invite-referral-section {
  padding: 60px 20px;
  background: var(--background-color);
}

.invite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.invite-card {
  background: linear-gradient(135deg, #e5f1ff, #f5f9ff);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.invite-card.dark {
  background: linear-gradient(135deg, #d6e8ff, #e2eeff);
  border-color: #0049b7;
}

.invite-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.invite-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.invite-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.invite-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0 0 24px 0;
}

.invite-benefits li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-color);
}

.invite-btn {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

.invite-btn:hover {
  background: var(--accent-color);
}

.invite-btn.alt {
  background: #0049b7;
}

.invite-btn.alt:hover {
  background: #003a9c;
}

@media (max-width: 600px) {
  .invite-title {
    font-size: 18px;
  }

  .invite-desc {
    font-size: 14px;
  }

  .invite-btn {
    font-size: 12px;
  }
}
.deposit-bonus-section {
  padding: 60px 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.bonus-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.bonus-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 28px;
}

.bonus-benefits li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-color);
  background: #e1efff;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 112, 243, 0.05);
}

.btn-deposit {
  display: inline-block;
  background: linear-gradient(135deg, #0070f3, #0049b7);
  color: white;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 112, 243, 0.3);
}

.btn-deposit:hover {
  background: linear-gradient(135deg, #0049b7, #002f87);
  box-shadow: 0 6px 20px rgba(0, 80, 200, 0.5);
  transform: translateY(-2px);
}

.bonus-levels {
  background: white;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.level-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #003b9a;
}

.level-card {
  background: #f2f7ff;
  border: 2px solid #0070f3;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s ease;
}

.level-card:hover {
  background: #e1efff;
  border-color: #0049b7;
}

.level-note {
  background: #d8eeff;
  border-left: 4px solid #0070f3;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 16px;
  font-weight: 500;
  color: #004b9f;
}

@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .btn-deposit {
    text-align: center;
  }
}
.cta-highlight-section {
  padding: 80px 20px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--primary-dark)
  );
  text-align: center;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-title {
  font-size: 38px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-description {
  font-size: 22px;
  line-height: 1.8;
  color: var(--border-color);
  margin-bottom: 40px;
}

.cta-button {
  background: linear-gradient(135deg, #0070f3, #0049b7);
  color: #fff;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.697);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  position: relative;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(108, 174, 249, 0.4);
}

.pulse {
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(179, 204, 233, 0.761);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(118, 176, 242, 0.263);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 200, 242, 0.244);
  }
}

@media (max-width: 600px) {
  .cta-title {
    font-size: 22px;
  }

  .cta-description {
    font-size: 14px;
  }

  .cta-button {
    font-size: 12px;
  }
}
.about-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f2f7ff, #eaf3ff);
  border-top: 1px solid var(--border-color);
}

.about-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  text-align: center;
}

.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

.about-text em {
  font-style: italic;
  color: var(--primary-dark);
}

@media (max-width: 600px) {
  .about-title {
    font-size: 22px;
  }

  .about-text {
    font-size: 14px;
  }
}
.site-footer {
  background: #f5f9ff;
  border-top: 1px solid var(--border-color);
  padding: 40px 20px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-container {
  max-width: 1024px;
  margin: 0 auto;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-color);
  font-family: "Segoe UI", sans-serif;
}

.footer-highlight {
  color: var(--primary-dark);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

@media (max-width: 600px) {
  .footer-logo-text {
    font-size: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
.slots-section {
  padding: 60px 20px;
}

.slot-category {
  margin-bottom: 60px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.category-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.category-header h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--accent-color);
  border-radius: 4px;
  margin-top: 6px;
}

.see-more {
  color: var(--link-color);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.see-more:hover {
  color: var(--link-hover);
}

.slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.slot-card {
  width: 200px;
  height: 120px;
  background: #000;
  border: 2px solid rgba(0, 191, 255, 0.2);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.slot-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 225, 255, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .slot-row {
    justify-content: center;
  }

  .slot-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .slot-card {
    width: 100%;
  }
}
.slot-card {
  background-size: cover;
  background-position: center;
}

/* PG Slots */
.slot-card.bonaza {
  background-image: url("images/bonaza.jpg");
}
.slot-card.fruit {
  background-image: url("images/fruit.jpg");
}
.slot-card.bookra {
  background-image: url("images/bookra.webp");
}
.slot-card.lady {
  background-image: url("images/lady.webp");
}
.slot-card.gonzo {
  background-image: url("images/gonzo.jpg");
}

/* JILI Slots */
.slot-card.mega {
  background-image: url("images/mega.webp");
}
.slot-card.monkey {
  background-image: url("images/monkey.jpg");
}
.slot-card.star {
  background-image: url("images/star.webp");
}
.slot-card.scarlet-season {
  background-image: url("images/scarlet-season.jpg");
}
.slot-card.penalty-roulette {
  background-image: url("images/penalty-roulette.jpg");
}

.limited-offer {
  background: var(--primary-light);
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-container {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  padding: 2rem 3rem;
  text-align: center;
}

.offer-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.offer-title span {
  color: var(--danger-color);
}

.offer-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.offer-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.offer-button:hover {
  background-color: var(--link-hover);
}

@media (max-width: 768px) {
  .offer-title {
    font-size: 1.5rem;
  }
  .offer-subtitle {
    font-size: 1rem;
  }
  .offer-container {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .offer-container {
    padding: 1.5rem;
  }
}
