/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Utility Classes */
.block {
  background: #fff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 1200px;
}

/* Header Styles */
.header {
  background: #000;
  padding: 20px;
}
.header a {
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.site-title {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
}

/* Introduction Block */
.intro {
  text-align: center;
}

.intro h1 {
  margin-bottom: 10px;
  color: #222;
}

.article-navigation {
  display: flex;
  justify-content: center;
  background: #ffffff;
  max-width: 200px;
  margin: 0 auto;
  padding: 10px;

  border: 1px solid #cccccc;
  border-radius: 8px;
}

/* Navigation List Under H1 */
.intro-nav {
  /* list-style-type: disc; */
  list-style-type: decimal;
  padding-left: 20px;
  font-size: 0.9rem;
  text-align: left;
  /* margin: 10px auto; */
  /* max-width: 300px; */
}
.intro-nav li {
  margin-bottom: 5px;
}
.intro-nav li:last-child {
  margin-bottom: 0;
}
.intro-nav a {
  text-decoration: none;
  color: #B8860B;
}
.intro-nav a:hover {
  text-decoration: underline;
}

.intro p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.intro-media {
  text-align: center;
  margin-bottom: 20px;
}
.intro-media img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}
.intro-media button {
  display: block;
  margin: 10px auto 0;
}

/* Slots Section */
.slots h2 {
  margin-bottom: 10px;
  color: #222;
}
.slots p {
  margin-bottom: 20px;
}
.games-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.game-card {
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  width: 300px;
}

.game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.game-card .game-card-title {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.17em;
  font-weight: 600;
}

/* Hide extra game cards */
.hidden {
  display: none;
}

/* Center the "Show More" button */
#showMoreGames {
  display: block;
  margin: 20px auto 0;
}

/* Promotion Section */
.promo h2 {
  margin-bottom: 10px;
  color: #222;
}
.promo p {
  margin-bottom: 20px;
}
.promo-content {
  display: block;
  text-align: center;
}
.promo-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  margin: 0 auto 10px;
}

/* Information Block (Latest Updates) */
.info h2 {
  margin-bottom: 10px;
  color: #222;
}
.info p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* FAQ Section */
.faq h2 {
  margin-bottom: 20px;
  color: #222;
}
.faq-item {
  margin-bottom: 15px;
}
.faq-item details {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.faq-item summary {
  cursor: pointer;
  font-weight: bold;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

/* Button Styles */
.btn {
  background: #B8860B;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-top: 10px;
}

.btn:hover {
  background: #8B691E;
}

.btn.play-btn-center {
  display: block;
  margin: 10px auto 0;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .games-container {
    flex-direction: column;
    align-items: center;
  }
  .logo-container {
    flex-direction: column;
  }
  .logo-container img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 5px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.general-ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 16px;
}

.general-table tr td {
  padding: 10px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.pros-cons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.pros, .cons {
  flex: 1;
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.pros p, .cons p {
  font-size: 1.17em;
  font-weight: 600;
  margin: 0;
}
.pros p {
  color: green;
}
.cons p {
  color: red;
}
.pros ul, .cons ul {
  padding-left: 20px;
}
