/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-beginner-guide-first-deposit .hero-section {
  background: linear-gradient(135deg, #0A2463, #FFD700);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-beginner-guide-first-deposit .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-beginner-guide-first-deposit .hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-beginner-guide-first-deposit .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-beginner-guide-first-deposit .btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark Blue */
  font-size: 1.1em;
}

.page-beginner-guide-first-deposit .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit .btn-secondary {
  background-color: #0A2463; /* Dark Blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  font-size: 1em;
}

.page-beginner-guide-first-deposit .btn-secondary:hover {
  background-color: #061a47;
  transform: translateY(-2px);
}

.page-beginner-guide-first-deposit .btn-large {
  padding: 15px 35px;
  font-size: 1.3em;
}

.page-beginner-guide-first-deposit .content-block {
  padding: 60px 0;
}

.page-beginner-guide-first-deposit .bg-light {
  background-color: #f0f2f5;
}

.page-beginner-guide-first-deposit .bg-dark {
  background-color: #0A2463;
  color: #fff;
}

.page-beginner-guide-first-deposit .section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-beginner-guide-first-deposit .section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}

.page-beginner-guide-first-deposit .text-white {
  color: #fff;
}

.page-beginner-guide-first-deposit .why-bj38-deposit-section .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-beginner-guide-first-deposit .feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit .feature-item:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-first-deposit .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit .deposit-steps-section .steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-beginner-guide-first-deposit .step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-beginner-guide-first-deposit .step-number {
  width: 60px;
  height: 60px;
  background-color: #0A2463;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
}

.page-beginner-guide-first-deposit .step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit .step-item p {
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .step-item a {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-beginner-guide-first-deposit .step-item a:hover {
  color: #FFD700;
}

.page-beginner-guide-first-deposit .step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

.page-beginner-guide-first-deposit .payment-methods-section .method-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-beginner-guide-first-deposit .method-tabs .tab-button {
  background-color: #eee;
  border: none;
  padding: 12px 25px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 8px;
  margin: 5px;
  color: #0A2463;
  font-weight: bold;
}

.page-beginner-guide-first-deposit .method-tabs .tab-button.active {
  background-color: #FFD700;
  color: #0A2463;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .method-tabs .tab-button:hover:not(.active) {
  background-color: #ddd;
}

.page-beginner-guide-first-deposit .tab-content-wrapper {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-first-deposit .tab-pane {
  display: none;
}

.page-beginner-guide-first-deposit .tab-pane.active {
  display: block;
}

.page-beginner-guide-first-deposit .method-subtitle {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 20px;
  text-align: center;
}

.page-beginner-guide-first-deposit .tab-pane ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-beginner-guide-first-deposit .tab-pane ul li {
  background-color: #f8f8f8;
  margin-bottom: 10px;
  padding: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
}

.page-beginner-guide-first-deposit .method-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-first-deposit .important-notes-section .note-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-beginner-guide-first-deposit .note-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #0A2463;
}

.page-beginner-guide-first-deposit .note-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-beginner-guide-first-deposit .faq-section .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-beginner-guide-first-deposit .accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-beginner-guide-first-deposit .accordion-header {
  background-color: #0A2463;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-first-deposit .accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit .accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-beginner-guide-first-deposit .accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-beginner-guide-first-deposit .accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}

.page-beginner-guide-first-deposit .cta-section {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide-first-deposit .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-beginner-guide-first-deposit .cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-beginner-guide-first-deposit .responsible-gambling-section {
  text-align: center;
  padding: 60px 0;
}

.page-beginner-guide-first-deposit .responsible-gambling-section .section-title {
  color: #FFD700;
}

.page-beginner-guide-first-deposit .responsible-gambling-section p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-first-deposit .hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-first-deposit .section-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit .feature-grid, .page-beginner-guide-first-deposit .note-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-beginner-guide-first-deposit .cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-first-deposit .hero-section, .page-beginner-guide-first-deposit .cta-section {
    padding: 60px 0;
  }
  .page-beginner-guide-first-deposit .hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-first-deposit .hero-description, .page-beginner-guide-first-deposit .cta-description {
    font-size: 1em;
  }
  .page-beginner-guide-first-deposit .section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-beginner-guide-first-deposit .step-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit .method-tabs .tab-button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-beginner-guide-first-deposit .tab-content-wrapper {
    padding: 30px;
  }
  .page-beginner-guide-first-deposit .method-subtitle {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit .note-title {
    font-size: 1.4em;
  }
  .page-beginner-guide-first-deposit .accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-beginner-guide-first-deposit .btn-large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit .hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-first-deposit .section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-first-deposit .feature-grid, .page-beginner-guide-first-deposit .note-list {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-first-deposit .method-tabs {
    flex-direction: column;
  }
  .page-beginner-guide-first-deposit .tab-button {
    width: 100%;
    margin: 5px 0;
  }
  .page-beginner-guide-first-deposit .tab-content-wrapper {
    padding: 20px;
  }
  .page-beginner-guide-first-deposit .cta-title {
    font-size: 1.8em;
  }
}