.page-about {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--color-background);
}

.page-about__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-about__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.page-about__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-about p {
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-main);
}

.page-about ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-about ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 17px;
}

.page-about ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Hero Section */
.page-about__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, var(--deep-red) 0%, var(--primary-color) 100%);
  border-bottom: 5px solid var(--gold);
}

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

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

.page-about__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-about__main-title {
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.1;
}

.page-about__intro-text {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #333333; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border-color);
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-about__cta-button.--large {
  padding: 18px 50px;
  font-size: 22px;
}

/* Content Grid */
.page-about__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-about__content-grid.--reverse {
  flex-direction: row-reverse;
}

.page-about__text-block {
  flex: 1;
}

.page-about__image-block {
  flex: 1;
  min-width: 300px;
}

.page-about__image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Core Values */
.page-about__values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__value-item {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-about__value-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-about__value-item p {
  font-size: 16px;
  color: var(--text-main);
}

/* Diverse Entertainment */
.page-about__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-about__game-item {
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__game-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

/* Social Responsibility */
.page-about__responsibility-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

.page-about__responsibility-list li {
  padding: 15px 20px;
  margin-bottom: 15px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--gold);
  font-size: 17px;
  color: var(--text-main);
}

.page-about__responsibility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none; /* Hide default checkmark, use border-left */
}

/* FAQ Section */
.page-about__faq-section {
  background: var(--background);
  border-top: 1px solid var(--border-color);
}

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

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}

details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.2);
}

.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--gold);
}

.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 25px;
  background: rgba(var(--card-bg-rgb), 0.8); /* Slightly lighter background for answer */
  border-radius: 0 0 12px 12px;
}

.page-about__faq-answer p {
  color: var(--text-main);
  font-size: 16px;
}

/* Final CTA */
.page-about__cta-final {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--deep-red) 100%);
  padding: 80px 20px;
  border-top: 5px solid var(--gold);
}

.page-about__cta-final .page-about__section-title {
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__cta-final p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-main);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-about__content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-about__content-grid.--reverse {
    flex-direction: column;
  }

  .page-about__text-block,
  .page-about__image-block {
    flex: none;
    width: 100%;
  }

  .page-about__image-block img {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__hero-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .page-about__main-title {
    font-size: clamp(24px, 7vw, 48px);
  }

  .page-about__intro-text {
    font-size: clamp(15px, 3vw, 18px);
  }

  .page-about__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-about__cta-button.--large {
    padding: 15px 35px;
    font-size: 18px;
  }

  .page-about__section {
    padding: 40px 0;
  }

  .page-about__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-about__sub-title {
    font-size: 20px;
  }

  .page-about p,
  .page-about ul li {
    font-size: 16px;
  }

  .page-about__values-list,
  .page-about__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-about__value-item,
  .page-about__game-item {
    padding: 20px;
    border-radius: 8px;
  }

  .page-about__value-item img {
    
  }

  details.page-about__faq-item summary.page-about__faq-question {
    padding: 15px 20px;
  }

  .page-about__faq-qtext {
    font-size: 16px;
  }

  .page-about__faq-toggle {
    font-size: 24px;
    width: 24px;
  }

  details.page-about__faq-item .page-about__faq-answer {
    padding: 0 20px 20px;
  }

  .page-about__faq-answer p {
    font-size: 15px;
  }

  .page-about__image-block img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-about__section,
  .page-about__card,
  .page-about__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-about__cta-final {
    padding: 50px 15px;
  }

  .page-about__cta-final p {
    font-size: 16px;
  }
}

/* Custom Colors */
:root {
  --primary-color: #C91F17; /* Main Red */
  --primary-color-rgb: 201, 31, 23;
  --secondary-color: #E53935; /* Auxiliary Red */
  --secondary-color-rgb: 229, 57, 53;
  --card-bg: #D32F2F; /* Card Background Red */
  --card-bg-rgb: 211, 47, 47;
  --background: #B71C1C; /* Section Background Red */
  --background-rgb: 183, 28, 28;
  --text-main: #FFF5E1; /* Main Text White-Gold */
  --border-color: #F2B544; /* Border Gold */
  --glow-color: #FFCC66; /* Glow Gold */
  --gold: #F4D34D; /* Gold Color */
  --deep-red: #7A0E0E; /* Deep Red */
}

.page-about {
  background: var(--background);
  color: var(--text-main);
}

.page-about__card {
  background: var(--card-bg);
  color: var(--text-main);
}

.page-about__cta-button {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #333333; /* Dark text for bright button */
  border: 2px solid var(--border-color);
}

.page-about__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-about__section-title, .page-about__sub-title {
  color: var(--gold);
}

.page-about ul li::before {
  color: var(--gold);
}

.page-about__responsibility-list li {
  background: var(--card-bg);
  border-left-color: var(--gold);
}

.page-about__faq-item {
  background: var(--card-bg);
  border-color: var(--border-color);
}

details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(var(--primary-color-rgb), 0.2);
}

.page-about__faq-qtext, .page-about__faq-toggle {
  color: var(--gold);
}

details.page-about__faq-item .page-about__faq-answer {
  background: rgba(var(--card-bg-rgb), 0.8);
}

.page-about__cta-final {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--deep-red) 100%);
  border-top-color: var(--gold);
}