.page-support {
  background-color: #B71C1C;
  color: #FFF5E1;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__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 */
  color: #FFF5E1;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-support__main-title {
  font-size: 3.2em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFD86A; /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #FFF5E1;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #333333; /* Dark text for contrast with gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.page-support__section {
  padding: 60px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #FFD86A; /* Gold color for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-support__sub-title {
  font-size: 1.8em;
  color: #FFCC66; /* Glow color for sub-titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #FFF5E1;
}

.page-support__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.page-support__grid-two-columns--reversed {
  direction: rtl; /* Reverse order for content and image */
}

.page-support__grid-two-columns--reversed > * {
  direction: ltr; /* Restore text direction */
}

.page-support__image-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-support__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-support__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #FFF5E1;
}

.page-support__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD86A; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: transparent;
  color: #FFD86A;
  text-decoration: none;
  border: 2px solid #FFD86A;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-support__btn-secondary:hover {
  background: #FFD86A;
  color: #333333;
  transform: translateY(-1px);
}

.page-support__game-cards, .page-support__promotions-grid, .page-support__link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__card {
  background: #D32F2F; /* Card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  color: #FFF5E1;
  border: 1px solid #F2B544; /* Border color */
}

.page-support__card img {
  width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-support__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0 15px 10px;
  color: #FFCC66; /* Glow color for card titles */
}

.page-support__card-title a {
  color: #FFCC66;
  text-decoration: none;
}

.page-support__card-title a:hover {
  text-decoration: underline;
}

.page-support__card-text {
  font-size: 0.95em;
  margin: 0 15px 20px;
  flex-grow: 1;
  color: #FFF5E1;
}

.page-support__card-link {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #333333;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  margin-top: auto; /* Push link to bottom */
  margin-left: 15px;
  margin-right: 15px;
}

.page-support__card-link:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-1px);
}

.page-support__button-group {
  text-align: center;
  margin-top: 50px;
}

.page-support__faq-section {
  padding-bottom: 80px;
}

.page-support__faq-list {
  margin-top: 40px;
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544; /* Border color */
  overflow: hidden;
  background: #D32F2F; /* Card background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-support__faq-item summary.page-support__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: #FFCC66; /* Glow color for FAQ question */
  font-weight: bold;
}

details.page-support__faq-item summary.page-support__faq-question::-webkit-details-marker {
  display: none;
}

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: #7A0E0E; /* Deep Red on hover */
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.5;
  text-align: left;
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD86A; /* Gold color for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 20px;
  background: #7A0E0E; /* Deep Red for answer background */
  border-radius: 0 0 10px 10px;
  color: #FFF5E1;
  font-size: 1.05em;
}

.page-support__quick-link-card {
  text-align: left;
  padding: 25px;
  height: auto;
}

.page-support__quick-link-card .page-support__card-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-support__quick-link-card .page-support__card-text {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__main-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
  .page-support__grid-two-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-support__grid-two-columns--reversed {
    direction: ltr;
  }
  .page-support__grid-two-columns--reversed > * {
    direction: ltr;
  }
  .page-support__image-wrapper {
    order: -1; /* Image always on top for mobile */
  }
  .page-support__card img {
    
  }
}

@media (max-width: 768px) {
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__main-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-support__section {
    padding: 40px 15px;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-support__sub-title {
    font-size: 1.5em;
  }
  .page-support__paragraph, .page-support__list-item {
    font-size: 0.95em;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px;
  }
  .page-support__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__game-cards, .page-support__promotions-grid, .page-support__link-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__card img {
    
  }
  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-qtext {
    font-size: 1em;
  }
  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 20px 15px;
  }
  .page-support__quick-link-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-support__main-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.6em;
  }
  .page-support__cta-button {
    font-size: 0.95em;
  }
  .page-support__card-title {
    font-size: 1.2em;
  }
  .page-support__card-text {
    font-size: 0.9em;
  }
  .page-support__faq-toggle {
    font-size: 20px;
  }
}