/* style/beginner-guide.css */
.page-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for main text on dark background */
  background-color: #1A1A1A; /* Dark background */
  line-height: 1.6;
}

.page-beginner-guide .highlight {
  color: #FF0055;
}

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

.page-beginner-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 0, 85, 0.2);
}

.page-beginner-guide__section:last-of-type {
  border-bottom: none;
}

.page-beginner-guide__section-title {
  font-size: 2.8em;
  color: #00FFEE;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.2;
}

.page-beginner-guide__section-title span {
  color: #FF0055;
}

.page-beginner-guide__hero-section {
  background: linear-gradient(135deg, rgba(255, 0, 85, 0.9), rgba(0, 255, 238, 0.9));
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-beginner-guide__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  overflow: hidden;
}

.page-beginner-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(5px);
}

.page-beginner-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
}

.page-beginner-guide__btn--primary {
  background-color: #FF0055;
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(255, 0, 85, 0.4);
}

.page-beginner-guide__btn--primary:hover {
  background-color: #CC0044;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 0, 85, 0.6);
}

.page-beginner-guide__btn--secondary {
  background-color: #00FFEE;
  color: #1A1A1A;
  box-shadow: 0 5px 15px rgba(0, 255, 238, 0.4);
}

.page-beginner-guide__btn--secondary:hover {
  background-color: #00CCBB;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 255, 238, 0.6);
}

.page-beginner-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  background-color: #FF0055;
  color: #FFFFFF;
}

.page-beginner-guide__btn--small:hover {
  background-color: #CC0044;
  transform: translateY(-2px);
}

.page-beginner-guide__what-is-88bet p,
.page-beginner-guide__getting-started p,
.page-beginner-guide__game-world p,
.page-beginner-guide__betting-tips p,
.page-beginner-guide__promotions p,
.page-beginner-guide__safety p,
.page-beginner-guide__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-beginner-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-beginner-guide__image:hover {
  transform: scale(1.02);
}

.page-beginner-guide__image--small {
  max-width: 80%;
  margin: 20px auto;
}

.page-beginner-guide__step-card {
  background-color: #2A2A2A;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 238, 0.1);
}

.page-beginner-guide__step-title {
  font-size: 1.8em;
  color: #FF0055;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-beginner-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-beginner-guide__list li {
  background-color: #333333;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.05em;
}

.page-beginner-guide__list li::before {
  content: '✓';
  color: #00FFEE;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-beginner-guide__list--tips li::before,
.page-beginner-guide__list--promos li::before {
  content: '★';
  color: #FF0055;
}

.page-beginner-guide__game-type {
  background-color: #2A2A2A;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 0, 85, 0.1);
}

.page-beginner-guide__game-type-title {
  font-size: 2em;
  color: #00FFEE;
  margin-bottom: 20px;
  text-align: center;
}

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

.page-beginner-guide__detail-item {
  background-color: #2A2A2A;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 238, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-beginner-guide__detail-title {
  font-size: 1.5em;
  color: #FF0055;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-beginner-guide__detail-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-beginner-guide__detail-title a:hover {
  color: #00FFEE;
}

.page-beginner-guide__detail-description {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-beginner-guide__conclusion p {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-beginner-guide__hero-title {
    font-size: 3em;
  }
  .page-beginner-guide__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide__hero-description {
    font-size: 1.1em;
  }
  .page-beginner-guide__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide__step-title {
    font-size: 1.5em;
  }
  .page-beginner-guide__game-type-title {
    font-size: 1.7em;
  }
  .page-beginner-guide__detail-list {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide__hero-description {
    font-size: 1em;
  }
  .page-beginner-guide__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide__step-title {
    font-size: 1.3em;
  }
  .page-beginner-guide__game-type-title {
    font-size: 1.5em;
  }
  .page-beginner-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-beginner-guide__list li {
    padding: 10px 15px;
    font-size: 0.95em;
  }
}