/* style/deposit-withdrawal-deposit-methods.css */

.page-deposit-withdrawal-deposit-methods {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-deposit-withdrawal-deposit-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-deposit-withdrawal-deposit-methods__hero {
  background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-deposit-withdrawal-deposit-methods__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding-left: 20px;
}

.page-deposit-withdrawal-deposit-methods__hero-title {
  font-size: 3.2em;
  color: #FFFFFF; /* White for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-deposit-withdrawal-deposit-methods__hero-description {
  font-size: 1.1em;
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-deposit-withdrawal-deposit-methods__hero-button,
.page-deposit-withdrawal-deposit-methods__method-button,
.page-deposit-withdrawal-deposit-methods__cta-banner-button,
.page-deposit-withdrawal-deposit-methods__cta-button {
  display: inline-block;
  background-color: #E53E3E; /* Accent red for buttons */
  color: #FFFFFF; /* White text on red button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposit-withdrawal-deposit-methods__hero-button:hover,
.page-deposit-withdrawal-deposit-methods__method-button:hover,
.page-deposit-withdrawal-deposit-methods__cta-banner-button:hover,
.page-deposit-withdrawal-deposit-methods__cta-button:hover {
  background-color: #C53030; /* Darker red on hover */
}

.page-deposit-withdrawal-deposit-methods__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-deposit-withdrawal-deposit-methods__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-deposit-methods__section {
  padding: 60px 0;
}

.page-deposit-withdrawal-deposit-methods__section:nth-of-type(even) {
  background-color: #2D3748; /* Slightly lighter dark background for contrast */
}

.page-deposit-withdrawal-deposit-methods__section-title {
  font-size: 2.5em;
  color: #E53E3E; /* Accent red for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-deposit-withdrawal-deposit-methods__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E53E3E;
  border-radius: 2px;
}

.page-deposit-withdrawal-deposit-methods__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #F0F0F0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-deposit-withdrawal-deposit-methods__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-deposit-withdrawal-deposit-methods__feature-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods__feature-item:hover {
  transform: translateY(-10px);
  background-color: #3A455A;
}

.page-deposit-withdrawal-deposit-methods__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(1) brightness(1.5) sepia(1) saturate(5) hue-rotate(330deg); /* Make icons red/accent colored */
}

.page-deposit-withdrawal-deposit-methods__feature-title {
  font-size: 1.5em;
  color: #FFFFFF; /* White for feature titles */
  margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-methods__feature-description {
  color: #CCCCCC;
  font-size: 0.95em;
}

.page-deposit-withdrawal-deposit-methods__method-card {
  background-color: #2D3748;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-deposit-methods__method-title {
  font-size: 2em;
  color: #E53E3E; /* Accent red for method titles */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-deposit-withdrawal-deposit-methods__method-icon {
  width: 40px;
  height: 40px;
  filter: invert(1) brightness(1.5) sepia(1) saturate(5) hue-rotate(330deg); /* Make icons red/accent colored */
}

.page-deposit-withdrawal-deposit-methods__method-description {
  color: #CCCCCC;
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-deposit-withdrawal-deposit-methods__method-subtitle {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #E53E3E;
  padding-left: 10px;
}

.page-deposit-withdrawal-deposit-methods__steps-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-deposit-withdrawal-deposit-methods__steps-list li {
  background-color: #1A202C;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  color: #F0F0F0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-deposit-withdrawal-deposit-methods__steps-list li strong {
  color: #E53E3E;
  flex-shrink: 0;
}

.page-deposit-withdrawal-deposit-methods__general-steps-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 40px;
  color: #F0F0F0;
  font-size: 1.1em;
}

.page-deposit-withdrawal-deposit-methods__general-steps-list li {
  margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-methods__cta-banner {
  background-color: #1A202C;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal-deposit-methods__cta-banner-image {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-deposit-withdrawal-deposit-methods__cta-banner-content {
  flex: 1;
}

.page-deposit-withdrawal-deposit-methods__cta-banner-title {
  font-size: 1.8em;
  color: #E53E3E;
  margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-methods__cta-banner-description {
  color: #F0F0F0;
  margin-bottom: 20px;
}

.page-deposit-withdrawal-deposit-methods__notes-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-deposit-withdrawal-deposit-methods__notes-list li {
  background-color: #2D3748;
  padding: 20px;
  border-left: 5px solid #E53E3E;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #F0F0F0;
  font-size: 1.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-deposit-methods__notes-list li strong {
  color: #FFFFFF;
}

.page-deposit-withdrawal-deposit-methods__outro-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #F0F0F0;
}