/* style/beginner-guide.css */
:root {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0056b3;
  --border-color: #e0e0e0;
}

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

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

.page-beginner-guide section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-beginner-guide .section-title {
  font-size: 38px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-beginner-guide .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-beginner-guide .section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-beginner-guide .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:ku11net,abstract-pattern,light-texture]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-beginner-guide .hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-beginner-guide .hero-title {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide .hero-description {
  font-size: 22px;
  margin-bottom: 40px;
  color: #e9ecef;
  font-weight: 300;
}

.page-beginner-guide .cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide .cta-button:hover {
  background-color: #ffda79; /* Lighter gold */
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* General Buttons */
.page-beginner-guide .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
}

.page-beginner-guide .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 1px solid var(--primary-color);
}

.page-beginner-guide .btn-primary:hover {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  transform: translateY(-1px);
}

.page-beginner-guide .btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
}

.page-beginner-guide .btn-secondary:hover {
  background-color: #ffda79;
  border-color: #ffda79;
  transform: translateY(-1px);
}

.page-beginner-guide .btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-beginner-guide .btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-1px);
}

.page-beginner-guide .btn-small {
  padding: 8px 18px;
  font-size: 14px;
}

/* Section Intro */
.page-beginner-guide .section-intro {
  background-color: #ffffff;
}

.page-beginner-guide .section-intro .content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-beginner-guide .section-intro .text-content {
  flex: 1;
  min-width: 300px;
}

.page-beginner-guide .section-intro .text-content p {
  margin-bottom: 20px;
  font-size: 17px;
  color: #555;
}

.page-beginner-guide .section-intro .image-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-beginner-guide .section-intro .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Registration Steps */
.page-beginner-guide .section-registration {
  background-color: var(--bg-light);
}

.page-beginner-guide .registration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-beginner-guide .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide .step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide .step-item .step-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-beginner-guide .step-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide .step-item p {
  font-size: 16px;
  color: #666;
}

/* Deposit Methods */
.page-beginner-guide .section-deposit {
  background-color: #ffffff;
}

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

.page-beginner-guide .method-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide .method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide .method-card .method-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-beginner-guide .method-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-beginner-guide .method-card p {
  font-size: 16px;
  color: #666;
}

.page-beginner-guide .subsection-title {
  font-size: 28px;
  color: var(--primary-color);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-beginner-guide .deposit-steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-beginner-guide .deposit-steps-list li {
  background-color: var(--bg-light);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 17px;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide .deposit-steps-list li strong {
  color: var(--primary-color);
}

/* Game Categories */
.page-beginner-guide .section-games {
  background-color: var(--bg-light);
}

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

.page-beginner-guide .game-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-beginner-guide .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide .game-card .game-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-beginner-guide .game-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide .game-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-beginner-guide .game-card a {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.page-beginner-guide .game-card a:hover {
  background-color: #ffda79;
}

/* Withdrawal Steps */
.page-beginner-guide .section-withdrawal {
  background-color: #ffffff;
}

.page-beginner-guide .withdrawal-steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-beginner-guide .withdrawal-steps-list li {
  background-color: var(--bg-light);
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  font-size: 17px;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide .withdrawal-steps-list li strong {
  color: var(--primary-color);
}

.page-beginner-guide .section-withdrawal p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: #555;
}

.page-beginner-guide .section-withdrawal ul {
  max-width: 900px;
  margin: 20px auto 40px auto;
  list-style-type: disc;
  padding-left: 20px;
}

.page-beginner-guide .section-withdrawal ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #666;
}

/* Promotions */
.page-beginner-guide .section-promotions {
  background-color: var(--bg-light);
}

.page-beginner-guide .promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-beginner-guide .promo-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide .promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide .promo-card .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-beginner-guide .promo-card h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide .promo-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Safety Features */
.page-beginner-guide .section-safety {
  background-color: #ffffff;
}

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

.page-beginner-guide .feature-item {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide .feature-item .feature-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-beginner-guide .feature-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide .feature-item p {
  font-size: 16px;
  color: #666;
}

/* Support Channels */
.page-beginner-guide .section-support {
  background-color: var(--bg-light);
}

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

.page-beginner-guide .channel-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide .channel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide .channel-item .channel-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

.page-beginner-guide .channel-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-beginner-guide .channel-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-beginner-guide .section-faq {
  background-color: #ffffff;
}

.page-beginner-guide .faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-beginner-guide .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-beginner-guide .faq-question:hover {
  background-color: var(--bg-dark);
}

.page-beginner-guide .faq-question h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
}

.page-beginner-guide .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

.page-beginner-guide .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #ffffff;
}

.page-beginner-guide .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: var(--bg-light);
  color: #444;
}

.page-beginner-guide .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 25px;
  border-top: 1px solid var(--border-color);
}

.page-beginner-guide .faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide .hero-title {
    font-size: 44px;
  }
  .page-beginner-guide .hero-description {
    font-size: 20px;
  }
  .page-beginner-guide .section-title {
    font-size: 32px;
  }
  .page-beginner-guide .section-description {
    font-size: 16px;
  }
  .page-beginner-guide .section-intro .content-wrapper {
    flex-direction: column;
  }
  .page-beginner-guide .section-intro .image-content {
    order: -1; /* Image first on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide section {
    padding: 40px 0;
  }
  .page-beginner-guide .hero-section {
    padding: 80px 15px;
  }
  .page-beginner-guide .hero-title {
    font-size: 36px;
  }
  .page-beginner-guide .hero-description {
    font-size: 18px;
  }
  .page-beginner-guide .cta-button {
    padding: 15px 30px;
    font-size: 18px;
  }
  .page-beginner-guide .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-beginner-guide .section-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-beginner-guide .step-item, .page-beginner-guide .method-card, .page-beginner-guide .game-card, .page-beginner-guide .promo-card, .page-beginner-guide .feature-item, .page-beginner-guide .channel-item {
    padding: 25px;
  }
  .page-beginner-guide .step-item h3, .page-beginner-guide .method-card h3, .page-beginner-guide .game-card h3, .page-beginner-guide .promo-card h3, .page-beginner-guide .feature-item h3, .page-beginner-guide .channel-item h3 {
    font-size: 20px;
  }
  .page-beginner-guide .faq-question {
    padding: 15px 20px;
  }
  .page-beginner-guide .faq-question h3 {
    font-size: 18px;
  }
  .page-beginner-guide .faq-toggle {
    font-size: 24px;
  }
  .page-beginner-guide .faq-answer {
    padding: 0 20px;
  }
  .page-beginner-guide .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide .hero-title {
    font-size: 30px;
  }
  .page-beginner-guide .hero-description {
    font-size: 16px;
  }
  .page-beginner-guide .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-beginner-guide .section-title {
    font-size: 24px;
  }
  .page-beginner-guide .subsection-title {
    font-size: 24px;
  }
  .page-beginner-guide .registration-steps, .page-beginner-guide .deposit-methods, .page-beginner-guide .game-categories, .page-beginner-guide .promo-list, .page-beginner-guide .safety-features, .page-beginner-guide .support-channels {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide .step-item .step-icon, .page-beginner-guide .method-card .method-icon, .page-beginner-guide .game-card .game-icon, .page-beginner-guide .feature-item .feature-icon, .page-beginner-guide .channel-item .channel-icon {
    width: 120px;
  }
}