/* style/deposit.css */
:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-dark: #2c3e50;
  --accent-red: #e74c3c;
}

.page-deposit {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

/* Hero Section */
.page-deposit .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: var(--primary-color);
  color: var(--text-light);
  overflow: hidden;
}

.page-deposit .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-deposit .hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-deposit .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-deposit .hero-section h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-deposit .hero-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-deposit .hero-section p a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-deposit .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-deposit .cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-deposit section {
  padding: 60px 0;
  text-align: center;
}

.page-deposit section:nth-of-type(even) {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-deposit section:nth-of-type(even) h2,
.page-deposit section:nth-of-type(even) h3 {
  color: var(--secondary-color);
}

.page-deposit section:nth-of-type(even) p,
.page-deposit section:nth-of-type(even) li {
  color: rgba(255, 255, 255, 0.8);
}

.page-deposit section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-deposit section p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* Methods Section */
.page-deposit .methods-section {
  background-color: var(--background-light);
}

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

.page-deposit .method-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-deposit .method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-deposit .method-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-deposit .method-card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-deposit .method-card h3 .card-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-deposit .method-card h3 .card-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-deposit .method-card p {
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-deposit .method-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.page-deposit .method-card ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95em;
}

.page-deposit .method-card ul li::before {
  content: '✔';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-deposit .method-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposit .method-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Guide Section */
.page-deposit .guide-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-deposit .guide-section h2 {
  color: var(--secondary-color);
}

.page-deposit .guide-section p {
  color: rgba(255, 255, 255, 0.85);
}

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

.page-deposit .guide-item {
  background: #34495e;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-deposit .guide-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-deposit .guide-item h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-deposit .guide-item p {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
}

.page-deposit .guide-item a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Promotions Section */
.page-deposit .promotions-section {
  background-color: var(--background-light);
}

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

.page-deposit .promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-deposit .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-deposit .promo-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-deposit .promo-card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-deposit .promo-card h3 .card-link {
  color: var(--primary-color);
  text-decoration: none;
}

.page-deposit .promo-card h3 .card-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-deposit .promo-card p {
  font-size: 1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-deposit .promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--accent-red);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-deposit .promo-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

/* Important Notes Section */
.page-deposit .important-notes-section {
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: left;
}

.page-deposit .important-notes-section h2 {
  text-align: center;
  color: var(--secondary-color);
}

.page-deposit .important-notes-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-deposit .important-notes-section ul li {
  background: #34495e;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 45px;
  font-size: 1.05em;
  color: rgba(255, 255, 255, 0.9);
}

.page-deposit .important-notes-section ul li strong {
  color: var(--secondary-color);
}

.page-deposit .important-notes-section ul li::before {
  content: '⚠';
  color: var(--accent-red);
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-deposit .important-notes-section ul li a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* FAQ Section */
.page-deposit .faq-section {
  background-color: var(--background-light);
}

.page-deposit .faq-section h2 {
  color: var(--primary-color);
}

.page-deposit .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-deposit .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-deposit .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-deposit .faq-question:hover {
  background: #f5f5f5;
}

.page-deposit .faq-question h3 {
  font-size: 1.25em;
  margin: 0;
  color: var(--primary-color);
}

.page-deposit .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.page-deposit .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-red);
}

.page-deposit .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  color: var(--text-dark);
}

.page-deposit .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-deposit .faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
}

.page-deposit .faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-deposit .faq-answer a:hover {
  color: var(--secondary-color);
}

/* Conclusion Section */
.page-deposit .conclusion-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 20px;
}

.page-deposit .conclusion-section h2 {
  font-size: 2.8em;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.page-deposit .conclusion-section p {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-deposit .large-cta {
  padding: 18px 50px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-deposit .hero-section h1 {
    font-size: 2.8em;
  }
  .page-deposit section h2 {
    font-size: 2.2em;
  }
  .page-deposit .method-card, .page-deposit .promo-card, .page-deposit .guide-item {
    padding: 25px;
  }
  .page-deposit .method-card h3, .page-deposit .promo-card h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-deposit .hero-section {
    padding: 40px 15px;
  }
  .page-deposit .hero-section h1 {
    font-size: 2.2em;
  }
  .page-deposit .hero-section p {
    font-size: 1em;
  }
  .page-deposit .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-deposit section {
    padding: 40px 0;
  }
  .page-deposit section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-deposit .method-cards, .page-deposit .step-by-step-guide, .page-deposit .promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-deposit .method-card img, .page-deposit .promo-card img, .page-deposit .guide-item img {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-deposit .guide-item {
    text-align: center;
    align-items: center;
  }
  .page-deposit .important-notes-section ul li {
    padding: 15px 15px 15px 40px;
    font-size: 0.95em;
  }
  .page-deposit .faq-question {
    padding: 15px 20px;
  }
  .page-deposit .faq-question h3 {
    font-size: 1.1em;
  }
  .page-deposit .faq-toggle {
    font-size: 1.5em;
  }
  .page-deposit .faq-answer {
    padding: 0 20px;
  }
  .page-deposit .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-deposit .conclusion-section h2 {
    font-size: 2em;
  }
  .page-deposit .conclusion-section p {
    font-size: 1em;
  }
  .page-deposit .large-cta {
    padding: 15px 40px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-deposit .hero-section h1 {
    font-size: 1.8em;
  }
  .page-deposit section h2 {
    font-size: 1.6em;
  }
  .page-deposit .method-card h3, .page-deposit .promo-card h3 {
    font-size: 1.4em;
  }
  .page-deposit .guide-item h3 {
    font-size: 1.4em;
  }
  .page-deposit .important-notes-section ul li::before {
    left: 10px;
  }
  .page-deposit .faq-question h3 {
    font-size: 1em;
  }
  .page-deposit .faq-toggle {
    font-size: 1.3em;
  }
  .page-deposit .conclusion-section h2 {
    font-size: 1.8em;
  }
}