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

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

/* Hero Section */
.page-betting-guide-beginner-tips__hero {
  background-color: #0A2342; /* Main color */
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-betting-guide-beginner-tips__hero-content {
  flex: 1;
  max-width: 600px;
  padding-left: 20px;
  z-index: 1;
}

.page-betting-guide-beginner-tips__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Accent color for title */
}

.page-betting-guide-beginner-tips__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-betting-guide-beginner-tips__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 0;
}

.page-betting-guide-beginner-tips__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-betting-guide-beginner-tips__section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-betting-guide-beginner-tips__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-betting-guide-beginner-tips__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-guide-beginner-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Accent color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-betting-guide-beginner-tips p {
  margin-bottom: 15px;
  color: #444;
}

/* Buttons */
.page-betting-guide-beginner-tips__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  font-size: 1.05em;
}

.page-betting-guide-beginner-tips__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A2342; /* Main color */
  border: 2px solid #FFD700;
}

.page-betting-guide-beginner-tips__btn--primary:hover {
  background-color: #e6c200;
  color: #000;
}

.page-betting-guide-beginner-tips__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-betting-guide-beginner-tips__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
}

.page-betting-guide-beginner-tips__btn:not(.page-betting-guide-beginner-tips__btn--primary):not(.page-betting-guide-beginner-tips__btn--secondary) {
  background-color: #0A2342;
  color: #FFFFFF;
  border: 2px solid #0A2342;
}

.page-betting-guide-beginner-tips__btn:not(.page-betting-guide-beginner-tips__btn--primary):not(.page-betting-guide-beginner-tips__btn--secondary):hover {
  background-color: #1a3a5e;
  border-color: #1a3a5e;
}

/* Registration Guide */
.page-betting-guide-beginner-tips__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}

.page-betting-guide-beginner-tips__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-betting-guide-beginner-tips__step-item:hover {
  transform: translateY(-5px);
}

.page-betting-guide-beginner-tips__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-betting-guide-beginner-tips__step-item h3 {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-betting-guide-beginner-tips__step-item p {
  color: #555;
  font-size: 0.95em;
  flex-grow: 1;
}

/* Betting Tips Grid */
.page-betting-guide-beginner-tips__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

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

.page-betting-guide-beginner-tips__tip-item:hover {
  transform: translateY(-5px);
}

.page-betting-guide-beginner-tips__tip-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-betting-guide-beginner-tips__tip-item h3 {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-betting-guide-beginner-tips__tip-item p {
  color: #555;
  font-size: 0.9em;
}

/* CTA Banner */
.page-betting-guide-beginner-tips__cta-banner {
  background-color: #0A2342;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.page-betting-guide-beginner-tips__cta-banner h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-betting-guide-beginner-tips__cta-banner p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

/* Advanced Strategies List */
.page-betting-guide-beginner-tips__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-betting-guide-beginner-tips__list li {
  background-color: #FFFFFF;
  padding: 15px 25px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #444;
  font-size: 1.05em;
}

.page-betting-guide-beginner-tips__list li strong {
  color: #0A2342;
}

/* Promotions Grid */
.page-betting-guide-beginner-tips__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

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

.page-betting-guide-beginner-tips__promo-item:hover {
  transform: translateY(-5px);
}

.page-betting-guide-beginner-tips__promo-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-betting-guide-beginner-tips__promo-item h3 {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-betting-guide-beginner-tips__promo-item p {
  color: #555;
  font-size: 0.9em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* App Download */
.page-betting-guide-beginner-tips__download-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-betting-guide-beginner-tips__download-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.page-betting-guide-beginner-tips__download-item:hover {
  transform: translateY(-5px);
}

.page-betting-guide-beginner-tips__download-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.page-betting-guide-beginner-tips__download-item h3 {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-betting-guide-beginner-tips__download-item p {
  color: #555;
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* FAQ Accordion */
.page-betting-guide-beginner-tips__accordion {
  margin-top: 30px;
}

.page-betting-guide-beginner-tips__accordion-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-betting-guide-beginner-tips__accordion-title {
  font-size: 1.25em;
  color: #0A2342;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #FFD70033; /* Light accent background */
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-betting-guide-beginner-tips__accordion-title:hover {
  background-color: #FFD70055;
}

.page-betting-guide-beginner-tips__accordion-title::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #0A2342;
  transition: transform 0.3s ease;
}

.page-betting-guide-beginner-tips__accordion-title.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-betting-guide-beginner-tips__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-betting-guide-beginner-tips__accordion-content.active {
  max-height: 500px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-betting-guide-beginner-tips__accordion-content p {
  color: #555;
  margin-bottom: 10px;
}

.page-betting-guide-beginner-tips__accordion-content .page-betting-guide-beginner-tips__btn {
  margin-top: 15px;
}

/* Conclusion CTA */
.page-betting-guide-beginner-tips__cta-footer {
  text-align: center;
  margin-top: 40px;
}

.page-betting-guide-beginner-tips__note {
  font-style: italic;
  color: #777;
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-guide-beginner-tips__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  .page-betting-guide-beginner-tips__hero-content {
    padding-left: 0;
    max-width: 100%;
  }
  .page-betting-guide-beginner-tips__hero-title {
    font-size: 2.5em;
  }
  .page-betting-guide-beginner-tips__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-guide-beginner-tips__hero-image-wrapper {
    justify-content: center;
    margin-top: 40px;
  }
  .page-betting-guide-beginner-tips__section-title {
    font-size: 2em;
  }
  .page-betting-guide-beginner-tips__download-options {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .page-betting-guide-beginner-tips__download-item {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-betting-guide-beginner-tips__hero-title {
    font-size: 2em;
  }
  .page-betting-guide-beginner-tips__hero-subtitle {
    font-size: 1em;
  }
  .page-betting-guide-beginner-tips__btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }
  .page-betting-guide-beginner-tips__btn--secondary {
    margin-left: 10px;
  }
  .page-betting-guide-beginner-tips__section {
    padding: 40px 0;
  }
  .page-betting-guide-beginner-tips__section-title {
    font-size: 1.8em;
  }
  .page-betting-guide-beginner-tips__step-item, .page-betting-guide-beginner-tips__tip-item, .page-betting-guide-beginner-tips__promo-item {
    padding: 20px;
  }
  .page-betting-guide-beginner-tips__cta-banner {
    padding: 30px;
  }
  .page-betting-guide-beginner-tips__cta-banner h3 {
    font-size: 1.6em;
  }
  .page-betting-guide-beginner-tips__accordion-title {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-betting-guide-beginner-tips__accordion-title::after {
    right: 20px;
  }
  .page-betting-guide-beginner-tips__accordion-content.active {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-betting-guide-beginner-tips__hero-title {
    font-size: 1.8em;
  }
  .page-betting-guide-beginner-tips__hero-subtitle {
    font-size: 0.9em;
  }
  .page-betting-guide-beginner-tips__hero-content .page-betting-guide-beginner-tips__btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0;
  }
  .page-betting-guide-beginner-tips__btn--secondary {
    margin-left: 0;
  }
  .page-betting-guide-beginner-tips__section-title {
    font-size: 1.5em;
  }
  .page-betting-guide-beginner-tips__cta-banner h3 {
    font-size: 1.4em;
  }
  .page-betting-guide-beginner-tips__cta-banner p {
    font-size: 1em;
  }
  .page-betting-guide-beginner-tips__cta-footer .page-betting-guide-beginner-tips__btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0;
  }
}