/* style/blog-how-to-deposit-withdraw-tic88.css */

/* Base styles for the page */
.page-blog-how-to-deposit-withdraw-tic88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Main text color */
  background-color: var(--background-color, #08160F); /* Fallback for body background */
}

.page-blog-how-to-deposit-withdraw-tic88 a {
  color: #57E38D;
  text-decoration: none;
}

.page-blog-how-to-deposit-withdraw-tic88 a:hover {
  text-decoration: underline;
}

.page-blog-how-to-deposit-withdraw-tic88__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, body handles --header-offset */
  min-height: 500px;
  overflow: hidden;
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.page-blog-how-to-deposit-withdraw-tic88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-how-to-deposit-withdraw-tic88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-how-to-deposit-withdraw-tic88__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #F2FFF6;
  /* No fixed font-size, rely on clamp for responsiveness if needed, but not fixed large value */
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-how-to-deposit-withdraw-tic88__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8;
}

.page-blog-how-to-deposit-withdraw-tic88__content-section {
  padding: 60px 0;
}

.page-blog-how-to-deposit-withdraw-tic88__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__light-bg {
  background-color: #11271B; /* Card BG color for light sections */
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-deposit-withdraw-tic88__section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #A7D9B8;
}

.page-blog-how-to-deposit-withdraw-tic88__features-grid,
.page-blog-how-to-deposit-withdraw-tic88__issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-deposit-withdraw-tic88__feature-card,
.page-blog-how-to-deposit-withdraw-tic88__issue-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-deposit-withdraw-tic88__feature-card:hover,
.page-blog-how-to-deposit-withdraw-tic88__issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-deposit-withdraw-tic88__feature-title,
.page-blog-how-to-deposit-withdraw-tic88__issue-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__feature-description,
.page-blog-how-to-deposit-withdraw-tic88__issue-description {
  font-size: 0.95rem;
  color: #A7D9B8;
}

.page-blog-how-to-deposit-withdraw-tic88__step-by-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-how-to-deposit-withdraw-tic88__step-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  padding-left: 80px;
}

.page-blog-how-to-deposit-withdraw-tic88__step-number {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 40px;
  height: 40px;
  background-color: #13994A;
  color: #F2FFF6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.page-blog-how-to-deposit-withdraw-tic88__step-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__step-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-blog-how-to-deposit-withdraw-tic88__list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 15px;
  color: #A7D9B8;
}

.page-blog-how-to-deposit-withdraw-tic88__list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.page-blog-how-to-deposit-withdraw-tic88__inline-link {
  color: #57E38D;
  font-weight: bold;
}

.page-blog-how-to-deposit-withdraw-tic88__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-blog-how-to-deposit-withdraw-tic88__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block; /* Ensures no extra space below image */
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-deposit-withdraw-tic88__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* body handles --header-offset, small top padding for this section */
  background-color: #08160F;
  color: #F2FFF6;
  text-align: center;
}

.page-blog-how-to-deposit-withdraw-tic88__video-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-how-to-deposit-withdraw-tic88__video-link {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.page-blog-how-to-deposit-withdraw-tic88__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-section {
  padding: 60px 0;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  user-select: none;
  list-style: none;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-toggle {
  margin-left: 15px;
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8;
  border-top: 1px solid #1E3A2A;
  margin-top: -1px;
}

.page-blog-how-to-deposit-withdraw-tic88__faq-item:not([open]) .page-blog-how-to-deposit-withdraw-tic88__faq-answer {
  display: none;
}

.page-blog-how-to-deposit-withdraw-tic88__conclusion-section {
  padding: 60px 0;
  text-align: center;
  background-color: #11271B;
  color: #F2FFF6;
}

.page-blog-how-to-deposit-withdraw-tic88__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-deposit-withdraw-tic88__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-blog-how-to-deposit-withdraw-tic88__step-by-step {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-blog-how-to-deposit-withdraw-tic88__step-by-step {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-deposit-withdraw-tic88__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
    min-height: 400px;
  }

  .page-blog-how-to-deposit-withdraw-tic88__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .page-blog-how-to-deposit-withdraw-tic88__intro-text {
    font-size: 1rem;
  }

  .page-blog-how-to-deposit-withdraw-tic88__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-deposit-withdraw-tic88__container,
  .page-blog-how-to-deposit-withdraw-tic88__video-wrapper,
  .page-blog-how-to-deposit-withdraw-tic88__faq-list {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsiveness */
  .page-blog-how-to-deposit-withdraw-tic88 img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-how-to-deposit-withdraw-tic88__image-wrapper,
  .page-blog-how-to-deposit-withdraw-tic88__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Video responsiveness */
  .page-blog-how-to-deposit-withdraw-tic88 video,
  .page-blog-how-to-deposit-withdraw-tic88__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-to-deposit-withdraw-tic88__video-section {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px !important;
  }
  .page-blog-how-to-deposit-withdraw-tic88__video-container,
  .page-blog-how-to-deposit-withdraw-tic88__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Button responsiveness */
  .page-blog-how-to-deposit-withdraw-tic88__btn-primary {
    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-how-to-deposit-withdraw-tic88__features-grid,
  .page-blog-how-to-deposit-withdraw-tic88__issues-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-deposit-withdraw-tic88__step-item {
    padding-left: 60px;
  }

  .page-blog-how-to-deposit-withdraw-tic88__step-number {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  .page-blog-how-to-deposit-withdraw-tic88__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-deposit-withdraw-tic88__faq-answer {
    padding: 0 20px 15px;
  }
}