/* style/beginner-guide.css */
.page-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensuring content area also respects dark background */
}

.page-beginner-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-beginner-guide__section-title,
.page-beginner-guide__hero-title,
.page-beginner-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-beginner-guide__section-description,
.page-beginner-guide__hero-description,
.page-beginner-guide__cta-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Hero Section */
.page-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
  color: #ffffff;
  overflow: hidden;
}

.page-beginner-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-beginner-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-beginner-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-beginner-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-beginner-guide__btn-primary,
.page-beginner-guide__btn-secondary,
.page-beginner-guide__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-beginner-guide__btn-primary {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-beginner-guide__btn-primary:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #FFD700;
}

.page-beginner-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-beginner-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

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

.page-beginner-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Video Section */
.page-beginner-guide__video-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
}

.page-beginner-guide__video-wrapper {
  max-width: 800px;
  margin: 30px auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-beginner-guide__video-cta {
  margin-top: 30px;
}

/* General Section Styling */
.page-beginner-guide__section {
  padding: 60px 0;
}

.page-beginner-guide__introduction {
  background-color: #0d0d0d;
}

.page-beginner-guide__why-choose {
  background-color: #1a1a1a;
}

.page-beginner-guide__getting-started {
  background-color: #0d0d0d;
}

.page-beginner-guide__bet-types {
  background-color: #1a1a1a;
}

.page-beginner-guide__tips-strategies {
  background-color: #0d0d0d;
}

.page-beginner-guide__faq {
  background-color: #1a1a1a;
}

.page-beginner-guide__cta-bottom {
  background: linear-gradient(45deg, #8B0000, #FFD700);
  color: #ffffff;
  text-align: center;
}

.page-beginner-guide__cta-content {
  padding: 50px 20px;
}

/* Feature Grid */
.page-beginner-guide__feature-grid,
.page-beginner-guide__steps-grid,
.page-beginner-guide__bet-type-grid,
.page-beginner-guide__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide__feature-item,
.page-beginner-guide__step-item,
.page-beginner-guide__bet-type-item,
.page-beginner-guide__strategy-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-beginner-guide__feature-item:hover,
.page-beginner-guide__step-item:hover,
.page-beginner-guide__bet-type-item:hover,
.page-beginner-guide__strategy-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-beginner-guide__feature-title,
.page-beginner-guide__step-title,
.page-beginner-guide__bet-type-title,
.page-beginner-guide__strategy-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}