/* style/deposits-withdrawals.css */
.page-deposits-withdrawals {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #0D1A30; /* Darker background for contrast */
}

.page-deposits-withdrawals__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2C50 0%, #0D1A30 100%);
  color: #FFD700;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-deposits-withdrawals__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-deposits-withdrawals__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: 700;
}

.page-deposits-withdrawals__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-deposits-withdrawals__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2C50;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-deposits-withdrawals__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-deposits-withdrawals__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-deposits-withdrawals__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-deposits-withdrawals__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-deposits-withdrawals__section:nth-of-type(even) {
  background-color: #122140; /* Slightly lighter dark blue for alternating sections */
}

.page-deposits-withdrawals__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-deposits-withdrawals__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #B0B0B0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-deposits-withdrawals__why-choose .page-deposits-withdrawals__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-deposits-withdrawals__feature-item {
  background-color: #1A2C50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-deposits-withdrawals__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-deposits-withdrawals__feature-item p {
  color: #E0E0E0;
}

.page-deposits-withdrawals__deposit-methods .page-deposits-withdrawals__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-deposits-withdrawals__method-item {
  background-color: #1A2C50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-deposits-withdrawals__method-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #FFD700;
}

.page-deposits-withdrawals__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-deposits-withdrawals__method-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-deposits-withdrawals__method-item p {
  color: #E0E0E0;
  margin-bottom: 15px;
}

.page-deposits-withdrawals__method-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-deposits-withdrawals__method-details li {
  margin-bottom: 8px;
  color: #C0C0C0;
}

.page-deposits-withdrawals__method-details li strong {
  color: #FFD700;
}

.page-deposits-withdrawals__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2C50;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposits-withdrawals__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-deposits-withdrawals__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-deposits-withdrawals__withdrawal-process .page-deposits-withdrawals__process-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-deposits-withdrawals__step-item {
  background-color: #1A2C50;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-deposits-withdrawals__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A2C50;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 3px solid #1A2C50;
}

.page-deposits-withdrawals__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-deposits-withdrawals__step-item p {
  color: #E0E0E0;
}

.page-deposits-withdrawals__process-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-deposits-withdrawals__process-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-deposits-withdrawals__process-text {
  background-color: #1A2C50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
}

.page-deposits-withdrawals__process-text h4 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-deposits-withdrawals__process-text ul {
  list-style: disc;
  margin-left: 20px;
  color: #E0E0E0;
}

.page-deposits-withdrawals__process-text ul li {
  margin-bottom: 10px;
}

.page-deposits-withdrawals__process-text ul li strong {
  color: #FFD700;
}

.page-deposits-withdrawals__limits-times .page-deposits-withdrawals__table-container {
  overflow-x: auto;
  margin-bottom: 30px;
}

.page-deposits-withdrawals__transaction-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: #1A2C50;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-deposits-withdrawals__transaction-table th,
.page-deposits-withdrawals__transaction-table td {
  padding: 15px;
  border: 1px solid #2A3E62; /* Slightly lighter border for visibility */
  text-align: left;
  color: #E0E0E0;
}

.page-deposits-withdrawals__transaction-table th {
  background-color: #FFD700;
  color: #1A2C50;
  font-weight: bold;
  font-size: 1.1em;
  white-space: nowrap;
}

.page-deposits-withdrawals__transaction-table tbody tr:nth-child(odd) {
  background-color: #122140;
}

.page-deposits-withdrawals__transaction-table tbody tr:hover {
  background-color: #2A3E62;
}

.page-deposits-withdrawals__note {
  font-style: italic;
  color: #B0B0B0;
  margin-top: 20px;
  font-size: 0.95em;
}

.page-deposits-withdrawals__faq .page-deposits-withdrawals__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.page-deposits-withdrawals__faq-item {
  background-color: #1A2C50;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-right: 5px solid #FFD700;
}

.page-deposits-withdrawals__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-deposits-withdrawals__faq-item p {
  color: #E0E0E0;
}

.page-deposits-withdrawals__faq-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-deposits-withdrawals__responsible-gaming .page-deposits-withdrawals__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.page-deposits-withdrawals__safety-item {
  background-color: #1A2C50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 5px solid #FFD700;
}

.page-deposits-withdrawals__safety-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-deposits-withdrawals__safety-item p {
  color: #E0E0E0;
}

.page-deposits-withdrawals__safety-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFD700;
}

.page-deposits-withdrawals__related-pages .page-deposits-withdrawals__detail-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-deposits-withdrawals__detail-page-item {
  background-color: #1A2C50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 5px solid #FFD700;
}

.page-deposits-withdrawals__detail-page-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-deposits-withdrawals__detail-page-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
}

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

.page-deposits-withdrawals__detail-page-description {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-deposits-withdrawals__action-area {
  margin-top: 40px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-deposits-withdrawals__hero-title {
    font-size: 2.8em;
  }
  .page-deposits-withdrawals__section-title {
    font-size: 2.2em;
  }
  .page-deposits-withdrawals__process-info {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-deposits-withdrawals__hero {
    padding: 60px 15px;
  }
  .page-deposits-withdrawals__hero-title {
    font-size: 2.2em;
  }
  .page-deposits-withdrawals__hero-description {
    font-size: 1em;
  }
  .page-deposits-withdrawals__section {
    padding: 40px 15px;
  }
  .page-deposits-withdrawals__section-title {
    font-size: 1.8em;
  }
  .page-deposits-withdrawals__section-intro {
    font-size: 0.95em;
  }
  .page-deposits-withdrawals__withdrawal-process .page-deposits-withdrawals__process-steps {
    flex-direction: column;
    align-items: center;
  }
  .page-deposits-withdrawals__step-item {
    width: 100%;
    max-width: 400px;
  }
  .page-deposits-withdrawals__table-container {
    overflow-x: scroll;
  }
  .page-deposits-withdrawals__transaction-table {
    min-width: 700px;
  }
}

@media (max-width: 480px) {
  .page-deposits-withdrawals__hero-title {
    font-size: 1.8em;
  }
  .page-deposits-withdrawals__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-deposits-withdrawals__section-title {
    font-size: 1.5em;
  }
  .page-deposits-withdrawals__feature-title,
  .page-deposits-withdrawals__method-title,
  .page-deposits-withdrawals__step-title,
  .page-deposits-withdrawals__faq-question,
  .page-deposits-withdrawals__safety-title,
  .page-deposits-withdrawals__detail-page-title {
    font-size: 1.2em;
  }
  .page-deposits-withdrawals__process-text h4 {
    font-size: 1.1em;
  }
}