/* style/index.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #0056b3; /* Darker shade for hover */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
  --button-login: #EA7C07;
}

.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--background-light);
}

/* Video Area */
.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: #0d0d0d; /* Dark background for video section */
  color: var(--text-light);
}

.page-index__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-index__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}

.page-index__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.page-index__video-link:hover .page-index__video-overlay {
  opacity: 1;
}

.page-index__video-click-hint {
  color: var(--text-light);
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  background: rgba(38, 169, 224, 0.8);
  border-radius: 5px;
  white-space: nowrap;
}

.page-index__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-index__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-index__play-now-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index__play-now-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Module 1: H1 Title + CTA Buttons */
.page-index__title-section {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-index__title-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.2;
}

.page-index__title-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555555;
}

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

.page-index__cta-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index__cta-button--primary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-index__cta-button--primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-index__cta-button--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Module 3: Brand Introduction */
.page-index__brand-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-index__brand-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__brand-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-light);
}

.page-index__brand-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__brand-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-index__brand-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__brand-item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-index__brand-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
}

/* Additional Content: Why Choose Us */
.page-index__features-section {
  padding: 80px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-index__features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__features-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.page-index__features-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #555555;
}

.page-index__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index__feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index__feature-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__feature-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index__feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
}

/* Additional Content: Game Types */
.page-index__game-types-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-index__game-types-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__game-types-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-index__game-types-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #f0f0f0;
}

.page-index__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-index__game-type-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index__game-type-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index__game-type-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

.page-index__game-type-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-index__cta-center {
  text-align: center;
}

/* Module 2: FAQ Common Questions Area */
.page-index__faq-section {
  padding: 80px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-index__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__faq-main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--primary-color);
}

.page-index__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-index__faq-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-index__faq-item.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-index__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-index__faq-item.active .page-index__faq-question {
  border-bottom: none;
}

.page-index__faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.page-index__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-index__faq-item.active .page-index__faq-toggle {
  transform: rotate(45deg);
}

.page-index__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index__faq-item.active .page-index__faq-answer {
  max-height: 200px; /* Adjust based on expected content height */
  padding: 15px 25px 20px;
}

.page-index__faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin: 0;
}

/* Module 4: Blog List Section */
.page-index__blog-section {
  padding: 80px 20px;
  background-color: #f0f2f5;
  color: var(--text-dark);
  text-align: center;
}

.page-index__blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__blog-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--primary-color);
}

.page-index__blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__blog-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index__blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index__blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index__blog-item-title {
  font-size: 22px;
  font-weight: 600;
  margin: 20px 25px 10px;
  color: var(--primary-color);
}

.page-index__blog-item-excerpt {
  font-size: 16px;
  line-height: 1.7;
  color: #666666;
  margin: 0 25px 15px;
}

.page-index__blog-item-date {
  display: block;
  font-size: 14px;
  color: #999999;
  margin: 0 25px 20px;
}

/* Testimonials Section */
.page-index__testimonials-section {
  padding: 80px 20px;
  background-color: var(--background-light);
  color: var(--text-dark);
  text-align: center;
}

.page-index__testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-index__testimonials-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-index__testimonials-description {
  font-size: 18px;
  margin-bottom: 50px;
  color: #555555;
}

.page-index__testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index__testimonial-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index__testimonial-card img {
  
  
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary-color);
}

.page-index__testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
  font-style: italic;
}

.page-index__testimonial-author {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

/* Call to Action Section */
.page-index__call-to-action-section {
  padding: 80px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-index__call-to-action-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__call-to-action-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-index__call-to-action-description {
  font-size: 19px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-index__main-title {
    font-size: 36px;
  }
  .page-index__brand-title,
  .page-index__features-title,
  .page-index__game-types-title,
  .page-index__faq-main-title,
  .page-index__blog-title,
  .page-index__testimonials-title,
  .page-index__call-to-action-title {
    font-size: 32px;
  }
  .page-index__brand-content,
  .page-index__features-grid,
  .page-index__game-types-grid,
  .page-index__blog-list,
  .page-index__testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index__video-section,
  .page-index__title-section,
  .page-index__brand-section,
  .page-index__features-section,
  .page-index__game-types-section,
  .page-index__faq-section,
  .page-index__blog-section,
  .page-index__testimonials-section,
  .page-index__call-to-action-section {
    padding: 50px 15px;
  }
  .page-index__main-title {
    font-size: 30px;
  }
  .page-index__title-description {
    font-size: 16px;
  }
  .page-index__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__cta-button {
    width: 100%;
    max-width: 300px;
  }
  .page-index__brand-title,
  .page-index__features-title,
  .page-index__game-types-title,
  .page-index__faq-main-title,
  .page-index__blog-title,
  .page-index__testimonials-title,
  .page-index__call-to-action-title {
    font-size: 28px;
  }
  .page-index__brand-item-title,
  .page-index__feature-card-title,
  .page-index__game-type-card-title,
  .page-index__blog-item-title {
    font-size: 20px;
  }
  .page-index__faq-question h3 {
    font-size: 16px;
  }
  .page-index__call-to-action-title {
    font-size: 30px;
  }
  .page-index__call-to-action-description {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .page-index__main-title {
    font-size: 26px;
  }
  .page-index__brand-title,
  .page-index__features-title,
  .page-index__game-types-title,
  .page-index__faq-main-title,
  .page-index__blog-title,
  .page-index__testimonials-title,
  .page-index__call-to-action-title {
    font-size: 24px;
  }
  .page-index__video-click-hint {
    font-size: 16px;
    padding: 8px 15px;
  }
  .page-index__play-now-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-index__cta-button {
    font-size: 16px;
    padding: 12px 25px;
  }
  .page-index__brand-item img,
  .page-index__feature-card img,
  .page-index__game-type-card img,
  .page-index__blog-item img {
    
  }
  .page-index__faq-question h3 {
    font-size: 15px;
  }
  .page-index__faq-answer p {
    font-size: 14px;
  }
  .page-index__testimonial-text {
    font-size: 15px;
  }
  .page-index__call-to-action-title {
    font-size: 26px;
  }
  .page-index__call-to-action-description {
    font-size: 16px;
  }
}