/* style/blog-top-slot-games-2024.css */
:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --card-bg: #10233F;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
}

.page-blog-top-slot-games-2024 {
  color: var(--text-main); /* Body background #08162B is dark, so use light text */
  background-color: var(--deep-navy);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 17px;
}

.page-blog-top-slot-games-2024__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body */
  background-color: var(--deep-navy);
  color: var(--text-main);
  overflow: hidden;
}

.page-blog-top-slot-games-2024__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-top-slot-games-2024__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-blog-top-slot-games-2024__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-blog-top-slot-games-2024__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-blog-top-slot-games-2024__description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-top-slot-games-2024__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-top-slot-games-2024__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-top-slot-games-2024__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.page-blog-top-slot-games-2024__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-blog-top-slot-games-2024__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-blog-top-slot-games-2024__text-block {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-blog-top-slot-games-2024__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-top-slot-games-2024__game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-top-slot-games-2024__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-2024__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--divider-color);
}

.page-blog-top-slot-games-2024__game-title {
  font-size: 1.6rem;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-top-slot-games-2024__game-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-top-slot-games-2024__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-top-slot-games-2024__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-top-slot-games-2024__strategy-list,
.page-blog-top-slot-games-2024__guide-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-top-slot-games-2024__strategy-list li,
.page-blog-top-slot-games-2024__guide-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  padding: 18px 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-top-slot-games-2024__strategy-list li strong,
.page-blog-top-slot-games-2024__guide-list li strong {
  color: var(--gold-color);
  margin-right: 10px;
  flex-shrink: 0;
}

.page-blog-top-slot-games-2024__guide-list li::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  font-weight: bold;
  color: var(--gold-color);
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.page-blog-top-slot-games-2024__image-container {
  text-align: center;
  margin: 40px 0;
}

.page-blog-top-slot-games-2024__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.page-blog-top-slot-games-2024__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-top-slot-games-2024__btn-secondary {
  display: inline-block;
  padding: 18px 45px;
  background: var(--card-bg);
  color: var(--gold-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--gold-color);
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-top-slot-games-2024__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  background: var(--gold-color);
  color: var(--deep-navy);
}

.page-blog-top-slot-games-2024__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

details.page-blog-top-slot-games-2024__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--gold-color);
}

details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question:hover {
  background: rgba(var(--primary-color), 0.2);
}

.page-blog-top-slot-games-2024__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-blog-top-slot-games-2024__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--glow-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-blog-top-slot-games-2024__faq-item .page-blog-top-slot-games-2024__faq-answer {
  padding: 0 25px 25px;
  background: rgba(var(--card-bg), 0.5);
  border-radius: 0 0 10px 10px;
  color: var(--text-secondary);
  font-size: 1rem;
}

.page-blog-top-slot-games-2024__cta-banner {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-blog-top-slot-games-2024__banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  border-radius: 15px;
}

.page-blog-top-slot-games-2024__banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-blog-top-slot-games-2024__banner-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-top-slot-games-2024__banner-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-top-slot-games-2024__hero-image img {
    border-radius: 10px;
  }
  .page-blog-top-slot-games-2024__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-top-slot-games-2024__description {
    font-size: 1rem;
  }
  .page-blog-top-slot-games-2024__cta-button,
  .page-blog-top-slot-games-2024__btn-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-top-slot-games-2024 {
    font-size: 16px;
    line-height: 1.5;
  }
  .page-blog-top-slot-games-2024__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-top-slot-games-2024__hero-image img {
    border-radius: 8px;
  }
  .page-blog-top-slot-games-2024__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-top-slot-games-2024__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-blog-top-slot-games-2024__cta-button,
  .page-blog-top-slot-games-2024__btn-secondary {
    padding: 15px 25px;
    font-size: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-blog-top-slot-games-2024__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-top-slot-games-2024__content-area {
    padding: 40px 15px;
  }
  .page-blog-top-slot-games-2024__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
    margin-top: 40px;
  }
  .page-blog-top-slot-games-2024__text-block {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .page-blog-top-slot-games-2024__game-list {
    gap: 20px;
  }
  .page-blog-top-slot-games-2024__game-card {
    padding: 20px;
  }
  .page-blog-top-slot-games-2024__game-title {
    font-size: 1.4rem;
  }
  .page-blog-top-slot-games-2024__game-image {
    height: 180px;
  }
  .page-blog-top-slot-games-2024__strategy-list li,
  .page-blog-top-slot-games-2024__guide-list li {
    padding: 15px 20px;
    font-size: 0.95rem;
    flex-wrap: wrap;
  }
  .page-blog-top-slot-games-2024__strategy-list li strong,
  .page-blog-top-slot-games-2024__guide-list li strong {
    width: 100%;
    margin-bottom: 5px;
  }
  .page-blog-top-slot-games-2024__guide-list li::before {
    margin-right: 5px;
  }
  .page-blog-top-slot-games-2024__content-image {
    border-radius: 8px;
  }
  details.page-blog-top-slot-games-2024__faq-item {
    border-radius: 8px;
  }
  details.page-blog-top-slot-games-2024__faq-item summary.page-blog-top-slot-games-2024__faq-question {
    padding: 15px 20px;
  }
  .page-blog-top-slot-games-2024__faq-qtext {
    font-size: 1rem;
  }
  .page-blog-top-slot-games-2024__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-blog-top-slot-games-2024__faq-item .page-blog-top-slot-games-2024__faq-answer {
    padding: 0 20px 20px;
  }
  .page-blog-top-slot-games-2024__cta-banner {
    padding: 30px 20px;
    border-radius: 10px;
  }
  .page-blog-top-slot-games-2024__banner-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .page-blog-top-slot-games-2024__banner-text {
    font-size: 0.95rem;
  }
  .page-blog-top-slot-games-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-top-slot-games-2024__section,
  .page-blog-top-slot-games-2024__card,
  .page-blog-top-slot-games-2024__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-top-slot-games-2024__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-top-slot-games-2024__game-list {
    grid-template-columns: 1fr;
  }
  .page-blog-top-slot-games-2024__game-image {
    height: 160px;
  }
  .page-blog-top-slot-games-2024__main-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }
  .page-blog-top-slot-games-2024__cta-button,
  .page-blog-top-slot-games-2024__btn-secondary {
    font-size: 0.95rem;
  }
}