/* style/blog-top-5-online-poker-tips.css */

/* Base styles for the page */
.page-blog-top-5-online-poker-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

/* Hero Section */
.page-blog-top-5-online-poker-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.page-blog-top-5-online-poker-tips__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-top-5-online-poker-tips__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 15px;
}

.page-blog-top-5-online-poker-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #F2C14E; /* Main color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-blog-top-5-online-poker-tips__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-blog-top-5-online-poker-tips__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-top-5-online-poker-tips__cta-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-top-5-online-poker-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-blog-top-5-online-poker-tips__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-blog-top-5-online-poker-tips__article-intro {
  margin-bottom: 60px;
  text-align: center;
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
}

.page-blog-top-5-online-poker-tips__article-intro p {
  font-size: 1.05rem;
  color: #FFF6D6;
}

.page-blog-top-5-online-poker-tips__tip-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-top-5-online-poker-tips__tip-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #FFD36B; /* Glow color for highlights */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-top-5-online-poker-tips__tip-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 25px;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-top-5-online-poker-tips__tip-card p {
  font-size: 1rem;
  color: #FFF6D6;
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-top-5-online-poker-tips__section-callout {
  text-align: center;
  background-color: #F2C14E; /* Main color */
  padding: 50px 30px;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-top-5-online-poker-tips__section-callout .page-blog-top-5-online-poker-tips__section-title {
  color: #0A0A0A; /* Dark text for light background */
  margin-bottom: 25px;
}

.page-blog-top-5-online-poker-tips__section-callout p {
  font-size: 1.1rem;
  color: #0A0A0A; /* Dark text for light background */
  margin-bottom: 30px;
}

/* FAQ Section */
.page-blog-top-5-online-poker-tips__faq-section {
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  box-sizing: border-box;
}

.page-blog-top-5-online-poker-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-top-5-online-poker-tips__faq-item {
  border-bottom: 1px solid #3A2A12; /* Border */
  padding: 15px 0;
}

.page-blog-top-5-online-poker-tips__faq-item:last-child {
  border-bottom: none;
}

.page-blog-top-5-online-poker-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #FFF6D6;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-top-5-online-poker-tips__faq-question:hover {
  color: #F2C14E; /* Main color on hover */
}

.page-blog-top-5-online-poker-tips__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  transition: transform 0.3s ease;
}

.page-blog-top-5-online-poker-tips__faq-item.active .page-blog-top-5-online-poker-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-top-5-online-poker-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  font-size: 0.95rem;
}

.page-blog-top-5-online-poker-tips__faq-item.active .page-blog-top-5-online-poker-tips__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px;
}

/* General text styles */
.page-blog-top-5-online-poker-tips p,
.page-blog-top-5-online-poker-tips li {
  color: #FFF6D6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-top-5-online-poker-tips__hero-content {
    margin-top: 20px;
  }
  .page-blog-top-5-online-poker-tips__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-blog-top-5-online-poker-tips {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px !important;
  }
  
  .page-blog-top-5-online-poker-tips__hero-section {
    padding: 0 15px 30px;
  }

  .page-blog-top-5-online-poker-tips__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-top-5-online-poker-tips__hero-description {
    font-size: 1rem;
  }

  .page-blog-top-5-online-poker-tips__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-top-5-online-poker-tips__content-area {
    padding: 30px 15px;
  }

  .page-blog-top-5-online-poker-tips__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-top-5-online-poker-tips__article-intro,
  .page-blog-top-5-online-poker-tips__tip-card,
  .page-blog-top-5-online-poker-tips__section-callout,
  .page-blog-top-5-online-poker-tips__faq-section {
    padding: 20px;
  }

  .page-blog-top-5-online-poker-tips__tip-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  /* Mobile image adaptation */
  .page-blog-top-5-online-poker-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-top-5-online-poker-tips__section,
  .page-blog-top-5-online-poker-tips__card,
  .page-blog-top-5-online-poker-tips__container,
  .page-blog-top-5-online-poker-tips__hero-section,
  .page-blog-top-5-online-poker-tips__content-area,
  .page-blog-top-5-online-poker-tips__article-intro,
  .page-blog-top-5-online-poker-tips__tip-card,
  .page-blog-top-5-online-poker-tips__section-callout,
  .page-blog-top-5-online-poker-tips__faq-section,
  .page-blog-top-5-online-poker-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-top-5-online-poker-tips__faq-answer {
    padding: 0 10px;
  }
  .page-blog-top-5-online-poker-tips__faq-item.active .page-blog-top-5-online-poker-tips__faq-answer {
    padding: 10px;
  }

  /* Ensure buttons adapt to mobile */
  .page-blog-top-5-online-poker-tips__cta-button,
  .page-blog-top-5-online-poker-tips a[class*="button"],
  .page-blog-top-5-online-poker-tips a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-top-5-online-poker-tips__cta-buttons,
  .page-blog-top-5-online-poker-tips__button-group,
  .page-blog-top-5-online-poker-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-blog-top-5-online-poker-tips__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

@media (max-width: 480px) {
  .page-blog-top-5-online-poker-tips__hero-content {
    margin-top: 15px;
  }
  .page-blog-top-5-online-poker-tips__hero-image {
    max-height: 300px;
  }
  .page-blog-top-5-online-poker-tips__hero-description {
    font-size: 0.9rem;
  }
  .page-blog-top-5-online-poker-tips__cta-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}