/* style/payment-methods-cryptocurrency-deposit.css */
.page-payment-methods-cryptocurrency-deposit {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A1A;
  line-height: 1.6;
}

.page-payment-methods-cryptocurrency-deposit__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods-cryptocurrency-deposit__hero {
  background: linear-gradient(135deg, #CC0000 0%, #800000 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-payment-methods-cryptocurrency-deposit__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(204,0,0,0) 70%);
  opacity: 0.3;
  animation: page-payment-methods-cryptocurrency-deposit__pulse 10s infinite alternate;
}

@keyframes page-payment-methods-cryptocurrency-deposit__pulse {
  0% { transform: scale(0.8); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.4; }
}

.page-payment-methods-cryptocurrency-deposit__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  color: #FFD700;
}

.page-payment-methods-cryptocurrency-deposit__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  color: #F0F0F0;
}

.page-payment-methods-cryptocurrency-deposit__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-payment-methods-cryptocurrency-deposit__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods-cryptocurrency-deposit__btn--primary {
  background-color: #FFD700;
  color: #333333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods-cryptocurrency-deposit__btn--primary:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-payment-methods-cryptocurrency-deposit__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
}

.page-payment-methods-cryptocurrency-deposit__btn--secondary:hover {
  background-color: #FFD700;
  color: #333333;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-payment-methods-cryptocurrency-deposit__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-payment-methods-cryptocurrency-deposit__section:last-of-type {
  border-bottom: none;
}

.page-payment-methods-cryptocurrency-deposit__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-payment-methods-cryptocurrency-deposit__section-title .highlight {
  color: #CC0000;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-payment-methods-cryptocurrency-deposit__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #CC0000;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-payment-methods-cryptocurrency-deposit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-payment-methods-cryptocurrency-deposit__advantage-item,
.page-payment-methods-cryptocurrency-deposit__tip-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-payment-methods-cryptocurrency-deposit__advantage-item:hover,
.page-payment-methods-cryptocurrency-deposit__tip-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-payment-methods-cryptocurrency-deposit__advantage-icon,
.page-payment-methods-cryptocurrency-deposit__tip-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-payment-methods-cryptocurrency-deposit__advantage-title,
.page-payment-methods-cryptocurrency-deposit__tip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods-cryptocurrency-deposit__advantage-description,
.page-payment-methods-cryptocurrency-deposit__tip-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-payment-methods-cryptocurrency-deposit__intro-text {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 60px;
  color: #F0F0F0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-cryptocurrency-deposit__intro-text .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-payment-methods-cryptocurrency-deposit__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-payment-methods-cryptocurrency-deposit__step-item {
  background-color: #2A2A2A;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border: 1px solid rgba(204, 0, 0, 0.2);
}

.page-payment-methods-cryptocurrency-deposit__step-number {
  width: 60px;
  height: 60px;
  background-color: #CC0000;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(204, 0, 0, 0.6);
  z-index: 1;
}

.page-payment-methods-cryptocurrency-deposit__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-payment-methods-cryptocurrency-deposit__step-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 30px;
  max-width: 800px;
}

.page-payment-methods-cryptocurrency-deposit__step-description .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-payment-methods-cryptocurrency-deposit__link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-payment-methods-cryptocurrency-deposit__link:hover {
  color: #E0B800;
}

.page-payment-methods-cryptocurrency-deposit__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-payment-methods-cryptocurrency-deposit__note-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  text-align: left;
  width: 100%;
  max-width: 700px;
}

.page-payment-methods-cryptocurrency-deposit__note-list li {
  background-color: #3A3A3A;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 0.95em;
  color: #D0D0D0;
}

.page-payment-methods-cryptocurrency-deposit__note-list li strong {
  color: #FFD700;
}

.page-payment-methods-cryptocurrency-deposit__grid--tips {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-payment-methods-cryptocurrency-deposit__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-methods-cryptocurrency-deposit__accordion-item {
  background-color: #2A2A2A;
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-cryptocurrency-deposit__accordion-header {
  width: 100%;
  background-color: #CC0000;
  color: #FFFFFF;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.25em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-radius: 10px;
}

.page-payment-methods-cryptocurrency-deposit__accordion-header:hover {
  background-color: #B30000;
}

.page-payment-methods-cryptocurrency-deposit__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-payment-methods-cryptocurrency-deposit__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods-cryptocurrency-deposit__accordion-content {
  padding: 0 25px;
  background-color: #3A3A3A;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-payment-methods-cryptocurrency-deposit__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-payment-methods-cryptocurrency-deposit__accordion-content p {
  margin: 0;
  color: #D0D0D0;
  font-size: 1em;
}

.page-payment-methods-cryptocurrency-deposit__accordion-content .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-payment-methods-cryptocurrency-deposit__call-to-action {
  text-align: center;
  background-color: #2A2A2A;
  padding: 80px 0;
}

.page-payment-methods-cryptocurrency-deposit__cta-text {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-cryptocurrency-deposit__title {
    font-size: 3em;
  }
  .page-payment-methods-cryptocurrency-deposit__subtitle {
    font-size: 1.2em;
  }
  .page-payment-methods-cryptocurrency-deposit__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-cryptocurrency-deposit__hero {
    padding: 80px 0;
  }
  .page-payment-methods-cryptocurrency-deposit__title {
    font-size: 2.5em;
  }
  .page-payment-methods-cryptocurrency-deposit__subtitle {
    font-size: 1em;
  }
  .page-payment-methods-cryptocurrency-deposit__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-cryptocurrency-deposit__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-payment-methods-cryptocurrency-deposit__section {
    padding: 40px 0;
  }
  .page-payment-methods-cryptocurrency-deposit__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-payment-methods-cryptocurrency-deposit__grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-cryptocurrency-deposit__step-item {
    padding: 30px 20px;
  }
  .page-payment-methods-cryptocurrency-deposit__step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
  }
  .page-payment-methods-cryptocurrency-deposit__step-title {
    font-size: 1.6em;
  }
  .page-payment-methods-cryptocurrency-deposit__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-payment-methods-cryptocurrency-deposit__accordion-content {
    padding: 15px 20px;
  }
  .page-payment-methods-cryptocurrency-deposit__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-cryptocurrency-deposit__title {
    font-size: 2em;
  }
  .page-payment-methods-cryptocurrency-deposit__subtitle {
    font-size: 0.9em;
  }
  .page-payment-methods-cryptocurrency-deposit__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-cryptocurrency-deposit__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-payment-methods-cryptocurrency-deposit__advantage-title,
  .page-payment-methods-cryptocurrency-deposit__tip-title {
    font-size: 1.3em;
  }
  .page-payment-methods-cryptocurrency-deposit__step-title {
    font-size: 1.4em;
  }
  .page-payment-methods-cryptocurrency-deposit__intro-text {
    font-size: 1em;
  }
}