/* style/resources-how-to-watch-thomo-live.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --button-login-color: #EA7C07;
}

.page-resources-how-to-watch-thomo-live {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--secondary-color); /* Body background is white */
}

.page-resources-how-to-watch-thomo-live__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO Section */
.page-resources-how-to-watch-thomo-live__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: var(--primary-color);
  color: var(--text-color-light);
  overflow: hidden;
}

.page-resources-how-to-watch-thomo-live__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-how-to-watch-thomo-live__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-how-to-watch-thomo-live__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-thomo-live__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-how-to-watch-thomo-live__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-color-light);
}

.page-resources-how-to-watch-thomo-live__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-watch-thomo-live__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-thomo-live__cta-button:hover {
  background: #E06C00; /* Slightly darker orange */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styles */
.page-resources-how-to-watch-thomo-live__section {
  padding: 80px 0;
  background-color: var(--secondary-color);
  border-bottom: 1px solid #f0f0f0;
}

.page-resources-how-to-watch-thomo-live__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-resources-how-to-watch-thomo-live__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.page-resources-how-to-watch-thomo-live__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--button-login-color);
  border-radius: 2px;
}

.page-resources-how-to-watch-thomo-live p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
}

/* Image wrappers */
.page-resources-how-to-watch-thomo-live__image-wrapper {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.page-resources-how-to-watch-thomo-live__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.page-resources-how-to-watch-thomo-live__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-how-to-watch-thomo-live__step-item {
  background-color: var(--text-color-light);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-how-to-watch-thomo-live__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-watch-thomo-live__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.page-resources-how-to-watch-thomo-live__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--button-login-color);
  color: var(--text-color-light);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: bold;
}

.page-resources-how-to-watch-thomo-live__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-resources-how-to-watch-thomo-live__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
}

.page-resources-how-to-watch-thomo-live__btn-primary:hover {
  background: #1e87b7; /* Darker primary color */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Rules and Tips Section */
.page-resources-how-to-watch-thomo-live__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-watch-thomo-live__grid-item {
  background-color: var(--text-color-light);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-watch-thomo-live__grid-title {
  font-size: 1.3em;
  color: var(--button-login-color);
  margin-bottom: 15px;
}

.page-resources-how-to-watch-thomo-live__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-resources-how-to-watch-thomo-live__list li {
  margin-bottom: 8px;
}

.page-resources-how-to-watch-thomo-live__responsible-gambling {
  background-color: #f0f8ff;
  border-left: 5px solid var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  margin-top: 60px;
  text-align: center;
}

.page-resources-how-to-watch-thomo-live__responsible-gambling .page-resources-how-to-watch-thomo-live__grid-title {
  color: var(--primary-color);
}

.page-resources-how-to-watch-thomo-live__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-watch-thomo-live__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-color-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Advantages Section */
.page-resources-how-to-watch-thomo-live__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-watch-thomo-live__advantage-item {
  background-color: var(--text-color-light);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.page-resources-how-to-watch-thomo-live__advantage-item:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-watch-thomo-live__advantage-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* FAQ Section */
.page-resources-how-to-watch-thomo-live__faq {
  background-color: #f9f9f9;
}

.page-resources-how-to-watch-thomo-live__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-watch-thomo-live__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--text-color-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-how-to-watch-thomo-live__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-how-to-watch-thomo-live__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-color-dark);
}

.page-resources-how-to-watch-thomo-live__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-toggle {
  color: var(--button-login-color);
  transform: rotate(45deg); /* Changed to rotate for a more dynamic effect */
}

.page-resources-how-to-watch-thomo-live__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #fdfdfd;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
}

/* Bottom CTA */
.page-resources-how-to-watch-thomo-live__cta-bottom {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
}

.page-resources-how-to-watch-thomo-live__cta-bottom-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-watch-thomo-live__cta-bottom .page-resources-how-to-watch-thomo-live__section-title {
  color: var(--text-color-light);
}

.page-resources-how-to-watch-thomo-live__cta-bottom .page-resources-how-to-watch-thomo-live__section-title::after {
  background-color: var(--button-login-color);
}

.page-resources-how-to-watch-thomo-live__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-how-to-watch-thomo-live__cta-bottom-btn {
  background: var(--button-login-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-watch-thomo-live__cta-bottom-btn:hover {
  background: #E06C00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-watch-thomo-live__main-title {
    font-size: 2.8em;
  }
  .page-resources-how-to-watch-thomo-live__intro-text {
    font-size: 1.2em;
  }
  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-watch-thomo-live__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-watch-thomo-live__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-how-to-watch-thomo-live__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-resources-how-to-watch-thomo-live__cta-button,
  .page-resources-how-to-watch-thomo-live__btn-primary,
  .page-resources-how-to-watch-thomo-live__btn-secondary,
  .page-resources-how-to-watch-thomo-live a[class*="button"],
  .page-resources-how-to-watch-thomo-live 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;
    font-size: 1em;
  }
  
  .page-resources-how-to-watch-thomo-live__cta-wrapper,
  .page-resources-how-to-watch-thomo-live__responsible-gambling,
  .page-resources-how-to-watch-thomo-live__cta-bottom-content,
  .page-resources-how-to-watch-thomo-live__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-watch-thomo-live__section {
    padding: 50px 0;
  }

  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  
  .page-resources-how-to-watch-thomo-live p {
    font-size: 1em;
  }

  .page-resources-how-to-watch-thomo-live__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 6px;
  }

  .page-resources-how-to-watch-thomo-live__step-title {
    font-size: 1.2em;
    padding-left: 35px;
  }

  .page-resources-how-to-watch-thomo-live__step-title::before {
    width: 25px;
    height: 25px;
    font-size: 0.8em;
  }

  .page-resources-how-to-watch-thomo-live__grid-title,
  .page-resources-how-to-watch-thomo-live__advantage-title {
    font-size: 1.1em;
  }

  .page-resources-how-to-watch-thomo-live__faq-question {
    padding: 15px 20px;
  }

  .page-resources-how-to-watch-thomo-live__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-how-to-watch-thomo-live__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }

  .page-resources-how-to-watch-thomo-live__faq-item.active .page-resources-how-to-watch-thomo-live__faq-answer {
    padding: 15px 20px !important;
  }
  
  .page-resources-how-to-watch-thomo-live__cta-bottom p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-watch-thomo-live__main-title {
    font-size: 1.8em;
  }

  .page-resources-how-to-watch-thomo-live__section-title {
    font-size: 1.5em;
  }
}