/* style/about.css */
.page-about {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0;
  background-color: #000000;
  line-height: 1.6;
}

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

.page-about__highlight {
  color: #FFD700;
}

.page-about__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-about__btn--primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-about__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

/* Hero Section */
.page-about__hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(255, 215, 0, 0.2)), url('[GALLERY:hero:online_betting,gaming,platform,okfun,dynamic]');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  position: relative;
  color: #ffffff;
}

.page-about__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Sections General */
.page-about__section {
  padding: 80px 0;
}

.page-about__section:nth-of-type(even) {
  background-color: #1a1a1a;
}

.page-about__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
}

.page-about__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Our Story */
.page-about__our-story .page-about__story-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-about__our-story .page-about__story-text,
.page-about__our-story .page-about__story-image {
  flex: 1;
  min-width: 300px;
}

.page-about__our-story .page-about__story-text p {
  margin-bottom: 20px;
  color: #f0f0f0;
}

/* Mission & Vision */
.page-about__mission-vision .page-about__mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.page-about__mission-vision .page-about__mv-item {
  background-color: #0a0a0a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-about__mission-vision .page-about__mv-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-about__mission-vision .page-about__mv-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-about__mission-vision .page-about__mv-item p {
  color: #cccccc;
}

/* Core Values */
.page-about__core-values .page-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-about__core-values .page-about__value-item {
  background-color: #0a0a0a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-about__core-values .page-about__value-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.page-about__core-values .page-about__value-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-about__core-values .page-about__value-item p {
  color: #cccccc;
}

/* Why Us */
.page-about__why-us .page-about__why-us-content {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 40px;
}

.page-about__why-us .page-about__why-us-text,
.page-about__why-us .page-about__why-us-image {
  flex: 1;
  min-width: 300px;
}

.page-about__why-us ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-about__why-us ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #f0f0f0;
}

.page-about__why-us ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-about__why-us a {
  color: #FFD700;
  text-decoration: none;
}

.page-about__why-us a:hover {
  text-decoration: underline;
}

/* Call to Action */
.page-about__cta {
  background-color: #0a0a0a;
  text-align: center;
  padding: 60px 0;
}

.page-about__cta-content {
  background-color: #0a0a0a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-about__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #cccccc;
}

.page-about__cta-buttons .page-about__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about__hero-title {
    font-size: 2.8em;
  }

  .page-about__section-title {
    font-size: 2.2em;
  }

  .page-about__story-content,
  .page-about__why-us-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-about__hero {
    padding: 80px 0;
  }

  .page-about__hero-title {
    font-size: 2.2em;
  }

  .page-about__hero-description {
    font-size: 1em;
  }

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

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

  .page-about__mv-grid,
  .page-about__values-grid {
    grid-template-columns: 1fr;
  }

  .page-about__cta-title {
    font-size: 2em;
  }

  .page-about__cta-description {
    font-size: 1em;
  }

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

  .page-about__cta-buttons .page-about__btn {
    margin: 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-about__hero-title {
    font-size: 1.8em;
  }

  .page-about__section-title {
    font-size: 1.5em;
  }

  .page-about__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}