/* style/about.css */
.page-about {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  padding-bottom: 50px;
}

.page-about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-about__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop: Header offset */
  background: linear-gradient(135deg, rgba(242, 193, 78, 0.2), rgba(255, 211, 107, 0.2)), url('[GALLERY:bg:1920x1080:abstract gold lines,dark luxury,55bmw background]') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
}

.page-about__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-about__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-about__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-about__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-about__hero-description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

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

.page-about__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-about__section-description {
  font-size: 1.1rem;
  color: #FFF6D6;
  text-align: center;
  max-width: 800px;
  margin: -20px auto 60px auto;
}

.page-about__mission-vision-section,
.page-about__values-section,
.page-about__game-variety-section,
.page-about__technology-section,
.page-about__faq-section,
.page-about__cta-section {
  padding: 60px 0;
}

.page-about__mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.page-about__mission-card,
.page-about__vision-card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border */
}

.page-about__card-title {
  font-size: 1.8rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__card-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

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

.page-about__value-item {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border */
}

.page-about__value-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.page-about__value-title {
  font-size: 1.5rem;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__value-text {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
}

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

.page-about__game-item {
  background: #111111; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border */
}

.page-about__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-about__game-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-about__game-text {
  font-size: 0.95rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-about__btn-link {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.page-about__btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 211, 107, 0.4);
}

.page-about__dark-section {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-about__technology-section .page-about__section-title {
  color: #F2C14E; /* Main Color */
}

.page-about__tech-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  text-align: center;
}

.page-about__tech-item {
  flex: 1 1 300px;
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12; /* Border */
}

.page-about__tech-title {
  font-size: 1.7rem;
  color: #FFD36B; /* Auxiliary Color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-about__tech-text {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

.page-about__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-about__faq-item {
  background: #111111; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
}

.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: #F2C14E; /* Main Color */
  font-weight: bold;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
  background-color: #2a2a2a;
}

.page-about__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
  font-size: 1rem;
}

.page-about__faq-item.active .page-about__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px;
}

.page-about__faq-answer p {
  margin-bottom: 10px;
}

.page-about__cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(242, 193, 78, 0.1), rgba(255, 211, 107, 0.1));
  border-top: 1px solid #3A2A12; /* Border */
}

.page-about__cta-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Main Color */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-about__cta-description {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-about__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-about__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 211, 107, 0.5);
}

.page-about__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-about__btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.3);
  background: #222222;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .page-about__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-about__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile: Header offset */
  }
  .page-about__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-about__hero-description,
  .page-about__section-description,
  .page-about__card-text,
  .page-about__value-text,
  .page-about__game-text,
  .page-about__tech-text,
  .page-about__faq-answer p,
  .page-about__cta-description {
    font-size: 0.95rem;
  }

  .page-about__section-title {
    font-size: 1.8rem;
  }

  .page-about__card-title,
  .page-about__value-title,
  .page-about__game-title,
  .page-about__tech-title {
    font-size: 1.4rem;
  }

  .page-about__hero-cta-buttons,
  .page-about__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-about__btn-primary,
  .page-about__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-about__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-about__faq-answer {
    padding: 0 20px;
  }
  .page-about__faq-item.active .page-about__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsiveness */
  .page-about img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }
  
  .page-about__section,
  .page-about__card,
  .page-about__container,
  .page-about__hero-image-wrapper,
  .page-about__game-item,
  .page-about__tech-item,
  .page-about__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__hero-section .page-about__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-about__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-about__mission-vision-section .page-about__container,
  .page-about__values-section .page-about__container,
  .page-about__game-variety-section .page-about__container,
  .page-about__technology-section .page-about__container,
  .page-about__faq-section .page-about__container,
  .page-about__cta-section .page-about__container {
      padding-left: 0;
      padding-right: 0;
  }
  .page-about__mission-card,
  .page-about__vision-card,
  .page-about__value-item,
  .page-about__game-item,
  .page-about__tech-item,
  .page-about__faq-item {
      padding-left: 20px;
      padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .page-about__section-title {
    font-size: 1.5rem;
  }
  .page-about__cta-title {
    font-size: 1.8rem;
  }
  .page-about__value-icon {
    width: 80px;
    height: 80px;
  }
}