/* style/resources-slot365-app-download-tutorial.css */

/* Base styles for the page content */
.page-resources-slot365-app-download-tutorial {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

/* Header offset for fixed header */
.page-resources-slot365-app-download-tutorial__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-slot365-app-download-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-slot365-app-download-tutorial__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-slot365-app-download-tutorial__subtitle {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-slot365-app-download-tutorial__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-resources-slot365-app-download-tutorial__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-slot365-app-download-tutorial__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-slot365-app-download-tutorial__numbered-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Hero Section */
.page-resources-slot365-app-download-tutorial__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #26A9E0, #1a7bbd);
  color: #ffffff;
  padding: 80px 0;
  min-height: 600px;
  gap: 40px;
}

.page-resources-slot365-app-download-tutorial__hero-content {
  flex: 1;
  max-width: 600px;
  padding-left: 50px;
}

.page-resources-slot365-app-download-tutorial__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-resources-slot365-app-download-tutorial__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-resources-slot365-app-download-tutorial__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-slot365-app-download-tutorial__btn-primary,
.page-resources-slot365-app-download-tutorial__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-slot365-app-download-tutorial__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-slot365-app-download-tutorial__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-resources-slot365-app-download-tutorial__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-slot365-app-download-tutorial__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a7bbd;
  border-color: #1a7bbd;
}

.page-resources-slot365-app-download-tutorial__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 50px;
}

.page-resources-slot365-app-download-tutorial__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 400px; /* Minimum size for hero image */
  min-height: 225px;
}

/* Introduction Section */
.page-resources-slot365-app-download-tutorial__introduction-section {
  padding: 60px 0;
}

/* Guide Section */
.page-resources-slot365-app-download-tutorial__guide-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-slot365-app-download-tutorial__guide-section .page-resources-slot365-app-download-tutorial__section-title,
.page-resources-slot365-app-download-tutorial__guide-section .page-resources-slot365-app-download-tutorial__subtitle {
  color: #ffffff;
}

.page-resources-slot365-app-download-tutorial__guide-block {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-slot365-app-download-tutorial__guide-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 30px;
}

.page-resources-slot365-app-download-tutorial__guide-content ol {
  flex: 2;
}

.page-resources-slot365-app-download-tutorial__guide-image {
  flex: 1;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 150px;
}

.page-resources-slot365-app-download-tutorial__button-wrapper {
  text-align: center;
  margin-top: 30px;
}

/* Benefits Section */
.page-resources-slot365-app-download-tutorial__benefits-section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-slot365-app-download-tutorial__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-slot365-app-download-tutorial__benefit-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-slot365-app-download-tutorial__benefit-card:hover {
  transform: translateY(-5px);
}

.page-resources-slot365-app-download-tutorial__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-slot365-app-download-tutorial__card-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-slot365-app-download-tutorial__benefits-image {
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 150px;
}

/* FAQ Section */
.page-resources-slot365-app-download-tutorial__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-resources-slot365-app-download-tutorial__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-slot365-app-download-tutorial__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f0f8ff;
  transition: background-color 0.3s ease;
}

.page-resources-slot365-app-download-tutorial__faq-question:hover {
  background-color: #e6f2ff;
}

.page-resources-slot365-app-download-tutorial__faq-question h3 {
  margin: 0;
  color: #26A9E0;
}

.page-resources-slot365-app-download-tutorial__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-slot365-app-download-tutorial__faq-item.active .page-resources-slot365-app-download-tutorial__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-slot365-app-download-tutorial__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555555;
}

.page-resources-slot365-app-download-tutorial__faq-item.active .page-resources-slot365-app-download-tutorial__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-resources-slot365-app-download-tutorial__faq-answer p {
  margin: 0;
}

/* Conclusion Section */
.page-resources-slot365-app-download-tutorial__conclusion-section {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.page-resources-slot365-app-download-tutorial__conclusion-section .page-resources-slot365-app-download-tutorial__section-title {
  color: #ffffff;
}

.page-resources-slot365-app-download-tutorial__cta-footer {
  margin-top: 40px;
}

/* Image sizing for content area - ensure minimum 200x200px */
.page-resources-slot365-app-download-tutorial img {
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-slot365-app-download-tutorial__hero-title {
    font-size: 3em;
  }

  .page-resources-slot365-app-download-tutorial__hero-description {
    font-size: 1.1em;
  }

  .page-resources-slot365-app-download-tutorial__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-slot365-app-download-tutorial {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-slot365-app-download-tutorial__hero-section {
    flex-direction: column;
    padding: 40px 0;
    min-height: auto;
  }

  .page-resources-slot365-app-download-tutorial__hero-content {
    padding: 0 20px;
    text-align: center;
    max-width: 100%;
  }

  .page-resources-slot365-app-download-tutorial__hero-title {
    font-size: 2.5em;
  }

  .page-resources-slot365-app-download-tutorial__hero-description {
    font-size: 1em;
  }

  .page-resources-slot365-app-download-tutorial__cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .page-resources-slot365-app-download-tutorial__btn-primary,
  .page-resources-slot365-app-download-tutorial__btn-secondary {
    width: 100% !important;
    max-width: 300px !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-slot365-app-download-tutorial__hero-image-wrapper {
    padding: 20px;
    width: 100%;
  }

  .page-resources-slot365-app-download-tutorial__hero-image,
  .page-resources-slot365-app-download-tutorial__guide-image,
  .page-resources-slot365-app-download-tutorial__benefits-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 150px !important;
  }

  .page-resources-slot365-app-download-tutorial__introduction-section,
  .page-resources-slot365-app-download-tutorial__guide-section,
  .page-resources-slot365-app-download-tutorial__benefits-section,
  .page-resources-slot365-app-download-tutorial__faq-section,
  .page-resources-slot365-app-download-tutorial__conclusion-section {
    padding: 40px 0;
  }

  .page-resources-slot365-app-download-tutorial__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-slot365-app-download-tutorial__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-slot365-app-download-tutorial__subtitle {
    font-size: 1.5em;
  }

  .page-resources-slot365-app-download-tutorial__paragraph,
  .page-resources-slot365-app-download-tutorial__list-item,
  .page-resources-slot365-app-download-tutorial__card-description {
    font-size: 1em;
  }

  .page-resources-slot365-app-download-tutorial__guide-block {
    padding: 20px;
  }

  .page-resources-slot365-app-download-tutorial__guide-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }

  .page-resources-slot365-app-download-tutorial__guide-content ol {
    flex: none;
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }

  .page-resources-slot365-app-download-tutorial__guide-image {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .page-resources-slot365-app-download-tutorial__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-slot365-app-download-tutorial__benefit-card {
    padding: 20px;
  }

  .page-resources-slot365-app-download-tutorial__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-slot365-app-download-tutorial__faq-answer {
    padding: 0 20px;
  }

  .page-resources-slot365-app-download-tutorial__faq-item.active .page-resources-slot365-app-download-tutorial__faq-answer {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-slot365-app-download-tutorial__hero-title {
    font-size: 2em;
  }

  .page-resources-slot365-app-download-tutorial__section-title {
    font-size: 1.5em;
  }

  .page-resources-slot365-app-download-tutorial__subtitle {
    font-size: 1.3em;
  }
}

/* Color Contrast Fixes (as per instructions) */
.page-resources-slot365-app-download-tutorial__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

.page-resources-slot365-app-download-tutorial__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-resources-slot365-app-download-tutorial__faq-question h3 {
  color: #26A9E0;
}

.page-resources-slot365-app-download-tutorial__card-title {
  color: #26A9E0;
}