/* General styling for the page */
.page-tongits-go-gift-codes-2023 {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
  padding-top: 10px; /* Small decorative padding, assuming body has --header-offset */
}

.page-tongits-go-gift-codes-2023__section-title {
  font-size: 2.2em;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 15px 0;
  font-weight: bold;
}

.page-tongits-go-gift-codes-2023__section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  font-size: 1.1em;
  color: #555;
}

/* Hero Section */
.page-tongits-go-gift-codes-2023__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-tongits-go-gift-codes-2023__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
}

.page-tongits-go-gift-codes-2023__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

.page-tongits-go-gift-codes-2023__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-tongits-go-gift-codes-2023__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-tongits-go-gift-codes-2023__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-tongits-go-gift-codes-2023__hero-cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-tongits-go-gift-codes-2023__hero-cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

/* Payment Providers Section */
.page-tongits-go-gift-codes-2023__payment-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 40px 15px;
  background-color: #fff;
  margin-bottom: 40px;
}
.page-tongits-go-gift-codes-2023__payment-logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 100%;
}
.page-tongits-go-gift-codes-2023__payment-logo {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  box-sizing: border-box;
  object-fit: contain;
  display: block; /* Ensure img behaves like a block element */
}

/* Intro Section */
.page-tongits-go-gift-codes-2023__intro-section {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-tongits-go-gift-codes-2023__intro-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-tongits-go-gift-codes-2023__intro-cta-button {
  display: inline-block;
  background-color: #28a745;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-tongits-go-gift-codes-2023__intro-cta-button:hover {
  background-color: #218838;
}

/* Quick Access Section */
.page-tongits-go-gift-codes-2023__quick-access-section {
  padding: 60px 20px;
  background-color: #e9ecef;
  margin-bottom: 60px;
}

.page-tongits-go-gift-codes-2023__access-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-tongits-go-gift-codes-2023__access-button {
  display: block;
  flex: 1 1 200px; /* Allow buttons to grow but have a min-width */
  max-width: 280px;
  background-color: #17a2b8;
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-tongits-go-gift-codes-2023__access-button:hover {
  background-color: #138496;
  transform: translateY(-2px);
}

/* Games Section */
.page-tongits-go-gift-codes-2023__games-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-tongits-go-gift-codes-2023__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tongits-go-gift-codes-2023__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tongits-go-gift-codes-2023__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-tongits-go-gift-codes-2023__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

.page-tongits-go-gift-codes-2023__game-title {
  font-size: 1.5em;
  color: #007bff;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-tongits-go-gift-codes-2023__game-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 15px;
}

.page-tongits-go-gift-codes-2023__game-cta {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-tongits-go-gift-codes-2023__game-cta:hover {
  background-color: #0056b3;
}

/* Promotions Section */
.page-tongits-go-gift-codes-2023__promotions-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
  margin-bottom: 60px;
}

.page-tongits-go-gift-codes-2023__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.page-tongits-go-gift-codes-2023__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tongits-go-gift-codes-2023__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-tongits-go-gift-codes-2023__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

.page-tongits-go-gift-codes-2023__promo-title {
  font-size: 1.6em;
  color: #dc3545;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-tongits-go-gift-codes-2023__promo-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 15px;
}

.page-tongits-go-gift-codes-2023__promo-cta {
  display: inline-block;
  background-color: #dc3545;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-tongits-go-gift-codes-2023__promo-cta:hover {
  background-color: #c82333;
}

/* Security Section */
.page-tongits-go-gift-codes-2023__security-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-tongits-go-gift-codes-2023__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-tongits-go-gift-codes-2023__security-text {
  flex: 1;
  min-width: 300px;
}

.page-tongits-go-gift-codes-2023__security-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-tongits-go-gift-codes-2023__security-cta-button {
  display: inline-block;
  background-color: #6f42c1;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.page-tongits-go-gift-codes-2023__security-cta-button:hover {
  background-color: #5f34ac;
}

.page-tongits-go-gift-codes-2023__security-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
  overflow: hidden;
}

.page-tongits-go-gift-codes-2023__security-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure responsiveness */
}

/* FAQ Section */
.page-tongits-go-gift-codes-2023__faq-section {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-tongits-go-gift-codes-2023__faq-list {
  margin-top: 40px;
}

.page-tongits-go-gift-codes-2023__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-tongits-go-gift-codes-2023__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-tongits-go-gift-codes-2023__faq-question:hover {
  background-color: #e6f2ff;
}

.page-tongits-go-gift-codes-2023__faq-question-title {
  font-size: 1.2em;
  color: #007bff;
  margin: 0;
  pointer-events: none; /* Prevent text selection interference */
}

.page-tongits-go-gift-codes-2023__faq-toggle {
  font-size: 1.5em;
  color: #007bff;
  font-weight: bold;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent icon selection interference */
}

.page-tongits-go-gift-codes-2023__faq-item.active .page-tongits-go-gift-codes-2023__faq-toggle {
  transform: rotate(45deg); /* Plus to Minus */
}

.page-tongits-go-gift-codes-2023__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px; /* Initial padding */
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  color: #555;
  font-size: 1em;
}

.page-tongits-go-gift-codes-2023__faq-item.active .page-tongits-go-gift-codes-2023__faq-answer {
  max-height: 2000px !important; /* Large enough to contain content */
  padding: 20px 25px !important; /* Expanded padding */
  opacity: 1;
}

.page-tongits-go-gift-codes-2023__faq-answer p {
  margin: 0 0 10px 0;
}

/* Blog Section */
.page-tongits-go-gift-codes-2023__blog-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.page-tongits-go-gift-codes-2023__blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-tongits-go-gift-codes-2023__blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tongits-go-gift-codes-2023__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-tongits-go-gift-codes-2023__blog-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure responsiveness */
}

.page-tongits-go-gift-codes-2023__blog-content {
  padding: 20px;
}

.page-tongits-go-gift-codes-2023__blog-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-tongits-go-gift-codes-2023__blog-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tongits-go-gift-codes-2023__blog-title a:hover {
  color: #007bff;
}

.page-tongits-go-gift-codes-2023__blog-excerpt {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 15px;
}

.page-tongits-go-gift-codes-2023__blog-date {
  font-size: 0.85em;
  color: #999;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-tongits-go-gift-codes-2023__hero-title {
    font-size: 2.8em;
  }
  .page-tongits-go-gift-codes-2023__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-tongits-go-gift-codes-2023__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-tongits-go-gift-codes-2023__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Hero Section */
  .page-tongits-go-gift-codes-2023__hero-section {
    padding: 40px 15px;
  }
  .page-tongits-go-gift-codes-2023__hero-title {
    font-size: 2.2em;
  }
  .page-tongits-go-gift-codes-2023__hero-description {
    font-size: 1em;
  }
  .page-tongits-go-gift-codes-2023__hero-cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  /* Payment Providers */
  .page-tongits-go-gift-codes-2023__payment-providers {
    flex-direction: row; /* Keep as row for flex-wrap */
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 30px 10px;
  }
  .page-tongits-go-gift-codes-2023__payment-logo {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    max-height: 80px !important;
  }

  /* Intro Section */
  .page-tongits-go-gift-codes-2023__intro-section {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .page-tongits-go-gift-codes-2023__intro-paragraph {
    font-size: 1em;
  }
  .page-tongits-go-gift-codes-2023__intro-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Quick Access Section */
  .page-tongits-go-gift-codes-2023__quick-access-section {
    padding: 40px 15px;
    margin-bottom: 40px;
  }
  .page-tongits-go-gift-codes-2023__access-links {
    flex-direction: column;
    gap: 15px;
  }
  .page-tongits-go-gift-codes-2023__access-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: 1em;
  }

  /* Games Section */
  .page-tongits-go-gift-codes-2023__games-section {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .page-tongits-go-gift-codes-2023__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tongits-go-gift-codes-2023__game-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-tongits-go-gift-codes-2023__game-image {
    height: 180px;
    max-width: 100% !important; /* Ensure images are responsive */
  }
  .page-tongits-go-gift-codes-2023__game-title {
    font-size: 1.3em;
  }
  .page-tongits-go-gift-codes-2023__game-description {
    font-size: 0.9em;
  }
  .page-tongits-go-gift-codes-2023__game-cta {
    font-size: 0.85em;
  }

  /* Promotions Section */
  .page-tongits-go-gift-codes-2023__promotions-section {
    padding: 40px 15px;
    margin-bottom: 40px;
  }
  .page-tongits-go-gift-codes-2023__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tongits-go-gift-codes-2023__promo-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-tongits-go-gift-codes-2023__promo-image {
    height: 180px;
    max-width: 100% !important; /* Ensure images are responsive */
  }
  .page-tongits-go-gift-codes-2023__promo-title {
    font-size: 1.4em;
  }
  .page-tongits-go-gift-codes-2023__promo-description {
    font-size: 0.9em;
  }
  .page-tongits-go-gift-codes-2023__promo-cta {
    font-size: 0.85em;
  }

  /* Security Section */
  .page-tongits-go-gift-codes-2023__security-section {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .page-tongits-go-gift-codes-2023__security-content {
    flex-direction: column;
    gap: 20px;
  }
  .page-tongits-go-gift-codes-2023__security-paragraph {
    font-size: 1em;
  }
  .page-tongits-go-gift-codes-2023__security-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-tongits-go-gift-codes-2023__security-image {
    max-width: 100% !important; /* Ensure images are responsive */
  }

  /* FAQ Section */
  .page-tongits-go-gift-codes-2023__faq-section {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .page-tongits-go-gift-codes-2023__faq-question {
    padding: 15px 20px;
  }
  .page-tongits-go-gift-codes-2023__faq-question-title {
    font-size: 1.1em;
    word-wrap: break-word !important; /* Ensure text wraps */
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  .page-tongits-go-gift-codes-2023__faq-answer {
    padding: 0 20px;
  }
  .page-tongits-go-gift-codes-2023__faq-item.active .page-tongits-go-gift-codes-2023__faq-answer {
    padding: 15px 20px !important;
  }

  /* Blog Section */
  .page-tongits-go-gift-codes-2023__blog-section {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  .page-tongits-go-gift-codes-2023__blog-articles {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tongits-go-gift-codes-2023__blog-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-tongits-go-gift-codes-2023__blog-image {
    height: 160px;
    max-width: 100% !important; /* Ensure images are responsive */
  }
  .page-tongits-go-gift-codes-2023__blog-title {
    font-size: 1.1em;
  }
  .page-tongits-go-gift-codes-2023__blog-excerpt {
    font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .page-tongits-go-gift-codes-2023__hero-title {
    font-size: 1.8em;
  }
  .page-tongits-go-gift-codes-2023__hero-description {
    font-size: 0.95em;
  }
  .page-tongits-go-gift-codes-2023__hero-cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-tongits-go-gift-codes-2023__section-title {
    font-size: 1.6em;
  }
  .page-tongits-go-gift-codes-2023__faq-question-title {
    font-size: 1em;
  }
}