/* style/payment-methods.css */

/* General page styling for dark background and light text */
.page-payment-methods {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Body background color */
  line-height: 1.6;
}

/* Container for consistent content width */
.page-payment-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-payment-methods__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem); /* Responsive font size for titles */
  color: #F2C14E; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.3;
}

/* Text blocks */
.page-payment-methods__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Card background for elements on dark sections */
.page-payment-methods__card {
  background-color: #111111; /* Card background */
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #FFF6D6; /* Text on card */
}

/* Buttons */
.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  text-align: center;
}

.page-payment-methods__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-payment-methods__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%); /* Slightly lighter on hover */
  color: #0A0A0A;
}

.page-payment-methods__btn-secondary {
  background-color: transparent;
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #FFD36B; /* Glow color for border */
}

.page-payment-methods__btn-secondary:hover {
  background-color: #FFD36B; /* Glow color for background */
  color: #111111; /* Dark text on hover */
}

.page-payment-methods__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Hero Section */
.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-payment-methods__hero-content {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  z-index: 1;
  max-width: 900px;
  margin-top: -80px;
  background-color: #0A0A0A;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-payment-methods__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-payment-methods__hero-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  margin-bottom: 30px;
}

/* Introduction Section */
.page-payment-methods__introduction-section {
  padding: 60px 0;
  margin-bottom: 60px;
  background-color: #0A0A0A;
  color: #FFF6D6;
}
.page-payment-methods__introduction-section .page-payment-methods__text-block {
    text-align: left;
    max-width: 100%;
}


/* Deposit & Withdrawal Sections */
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__security-section,
.page-payment-methods__responsible-gaming-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-bottom {
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-payment-methods__dark-section {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

.page-payment-methods__methods-grid,
.page-payment-methods__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__method-card,
.page-payment-methods__feature-item {
  text-align: center;
}

.page-payment-methods__method-icon,
.page-payment-methods__feature-icon {
  width: 200px; /* Enforce minimum size */
  height: 200px; /* Enforce minimum size */
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__method-title,
.page-payment-methods__feature-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-payment-methods__method-description,
.page-payment-methods__feature-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-payment-methods__note {
  font-style: italic;
  margin-top: 40px;
  padding: 20px;
  border-left: 5px solid #F2C14E;
  background-color: rgba(242, 193, 78, 0.05);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsible Gaming Section */
.page-payment-methods__responsible-gaming-section {
    padding: 60px 0;
    margin-bottom: 60px;
    background-color: #0A0A0A;
    color: #FFF6D6;
}
.page-payment-methods__responsible-gaming-section .page-payment-methods__text-block {
    text-align: left;
    max-width: 100%;
}
.page-payment-methods__responsible-gaming-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}


/* FAQ Section */
.page-payment-methods__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__faq-item {
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F2C14E;
  background-color: #111111;
  border-bottom: 1px solid #3A2A12;
  transition: background-color 0.3s ease;
}

.page-payment-methods__faq-question:hover {
  background-color: rgba(242, 193, 78, 0.1);
}

.page-payment-methods__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(17, 17, 17, 0.8);
  color: #FFF6D6;
}