/* style/blog-top-slot-games-cash-withdrawal.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-top-slot-games-cash-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  font-size: 16px;
}

.page-blog-top-slot-games-cash-withdrawal__highlight {
  color: #26A9E0;
  font-weight: bold;
}

/* Hero Section */
.page-blog-top-slot-games-cash-withdrawal__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #ffffff;
  text-align: center;
}

.page-blog-top-slot-games-cash-withdrawal__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-blog-top-slot-games-cash-withdrawal__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-top-slot-games-cash-withdrawal__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-top-slot-games-cash-withdrawal__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 600px; /* Constrain H1 width */
  margin-left: auto;
  margin-right: auto;
}

.page-blog-top-slot-games-cash-withdrawal__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-blog-top-slot-games-cash-withdrawal__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-top-slot-games-cash-withdrawal__btn-primary,
.page-blog-top-slot-games-cash-withdrawal__btn-secondary {
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-top-slot-games-cash-withdrawal__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-top-slot-games-cash-withdrawal__btn-primary:hover {
  background-color: #d16e00;
  border-color: #d16e00;
}

.page-blog-top-slot-games-cash-withdrawal__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-top-slot-games-cash-withdrawal__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Content Area */
.page-blog-top-slot-games-cash-withdrawal__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0a0a0a; /* Ensure content area matches body bg */
  color: #ffffff; /* Light text for dark background */
}

.page-blog-top-slot-games-cash-withdrawal__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  padding-top: 20px;
}

.page-blog-top-slot-games-cash-withdrawal__content-area p {
  margin-bottom: 1em;
  font-size: 1.05em;
  opacity: 0.9;
}

.page-blog-top-slot-games-cash-withdrawal__list,
.page-blog-top-slot-games-cash-withdrawal__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-blog-top-slot-games-cash-withdrawal__list li,
.page-blog-top-slot-games-cash-withdrawal__ordered-list li {
  margin-bottom: 10px;
  opacity: 0.9;
}

.page-blog-top-slot-games-cash-withdrawal__subsection-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Game List Cards */
.page-blog-top-slot-games-cash-withdrawal__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-top-slot-games-cash-withdrawal__game-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-top-slot-games-cash-withdrawal__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-top-slot-games-cash-withdrawal__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

.page-blog-top-slot-games-cash-withdrawal__game-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-top-slot-games-cash-withdrawal__game-card p {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-top-slot-games-cash-withdrawal__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-top-slot-games-cash-withdrawal__btn-small:hover {
  background-color: #1e87bb;
}

/* Tips Grid */
.page-blog-top-slot-games-cash-withdrawal__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-top-slot-games-cash-withdrawal__tip-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-blog-top-slot-games-cash-withdrawal__tip-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-top-slot-games-cash-withdrawal__tip-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-top-slot-games-cash-withdrawal__btn-center {
  display: block;
  margin: 40px auto 20px auto;
  width: fit-content;
}

/* FAQ Section */
.page-blog-top-slot-games-cash-withdrawal__faq-container {
  margin-top: 40px;
}

.page-blog-top-slot-games-cash-withdrawal__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-blog-top-slot-games-cash-withdrawal__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  list-style: none; /* For details tag */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-blog-top-slot-games-cash-withdrawal__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-top-slot-games-cash-withdrawal__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-blog-top-slot-games-cash-withdrawal__faq-item[open] .page-blog-top-slot-games-cash-withdrawal__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-top-slot-games-cash-withdrawal__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  opacity: 0.85;
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-top-slot-games-cash-withdrawal__hero-content {
    max-width: 700px;
  }
  .page-blog-top-slot-games-cash-withdrawal__main-title {
    font-size: 2.5em;
  }
  .page-blog-top-slot-games-cash-withdrawal__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-top-slot-games-cash-withdrawal {
    font-size: 15px;
  }

  .page-blog-top-slot-games-cash-withdrawal__hero-section {
    padding: 10px 15px 40px 15px;
  }

  .page-blog-top-slot-games-cash-withdrawal__main-title {
    font-size: 2em; /* Use em for H1 */
    max-width: 100%;
  }

  .page-blog-top-slot-games-cash-withdrawal__intro-text {
    font-size: 1em;
  }

  .page-blog-top-slot-games-cash-withdrawal__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  
  .page-blog-top-slot-games-cash-withdrawal__btn-primary,
  .page-blog-top-slot-games-cash-withdrawal__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-top-slot-games-cash-withdrawal__content-area {
    padding: 40px 15px;
  }

  .page-blog-top-slot-games-cash-withdrawal__section-title {
    font-size: 1.8em;
  }

  .page-blog-top-slot-games-cash-withdrawal__game-list,
  .page-blog-top-slot-games-cash-withdrawal__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-top-slot-games-cash-withdrawal__game-image,
  .page-blog-top-slot-games-cash-withdrawal__tip-image,
  .page-blog-top-slot-games-cash-withdrawal__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Ensure all containers with images/content are responsive */
  .page-blog-top-slot-games-cash-withdrawal__section,
  .page-blog-top-slot-games-cash-withdrawal__card,
  .page-blog-top-slot-games-cash-withdrawal__container,
  .page-blog-top-slot-games-cash-withdrawal__game-card,
  .page-blog-top-slot-games-cash-withdrawal__tip-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-blog-top-slot-games-cash-withdrawal__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-blog-top-slot-games-cash-withdrawal__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-top-slot-games-cash-withdrawal__main-title {
    font-size: 1.8em;
  }
  .page-blog-top-slot-games-cash-withdrawal__section-title {
    font-size: 1.6em;
  }
  .page-blog-top-slot-games-cash-withdrawal__btn-primary,
  .page-blog-top-slot-games-cash-withdrawal__btn-secondary {
    font-size: 0.9em;
    padding: 12px 25px;
  }
}