/**
 * about.css - About page styles
 */

/* Hero Section */
.about-hero-section {
  text-align: center;
  padding: 8px 0 24px;
  margin-bottom: 24px;
}

.about-hero-title {
  font-size: 22px;
  font-weight: bold;
  color: #808080;
  margin-bottom: 12px;
}

.about-hero-subtitle {
  font-size: 14px;
  color: #808080;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.about-card-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 20px 24px;
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.about-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009678;
  font-size: 22px;
  flex-shrink: 0;
}

.about-card-icon img {
  height: 24px;
  width: auto;
  max-width: none;
}

.about-card-title {
  font-size: 16px;
  font-weight: bold;
  color: #808080;
  margin: 0;
}

.about-card-content {
  color: #808080;
  font-size: 14px;
  line-height: 1.8;
}

.about-card-content p {
  margin: 10px 0;
}

.about-card-content a:not(.about-cta-button) {
  color: #0088cc;
}

/* Prize Table */
.about-prize-section {
  margin: 32px 0;
}

.about-prize-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #808080;
  margin-bottom: 8px;
}

.about-prize-subtitle {
  text-align: center;
  color: #808080;
  font-size: 13px;
  margin-bottom: 16px;
}

.about-prize-table-container {
  overflow-x: auto;
  margin: 16px 0;
}

.about-prize-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  color: #808080;
  border-collapse: collapse;
}

.about-prize-table th,
.about-prize-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}

.about-prize-table th {
  font-weight: bold;
  color: #808080;
}

.about-prize-table th.about-gold {
  color: #c8a000;
}

.about-prize-table th.about-silver {
  color: #999999;
}

.about-prize-table th.about-bronze {
  color: #b87333;
}

.about-prize-table td:first-child {
  font-weight: bold;
}

.about-prize-table .about-prize-amount {
  font-weight: bold;
  color: #808080;
}

/* CTA Buttons */
.about-cta-container {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #0088cc;
  color: #ffffff !important;
  border-radius: 8px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 14px;
}

.about-cta-button:hover {
  opacity: 0.92;
  color: #ffffff !important;
}

.about-cta-button-secondary {
  background: #ffffff;
  color: #0088cc !important;
  border: 1px solid #0088cc;
}

.about-cta-button-secondary:hover {
  background: #f5fbff;
  color: #0088cc !important;
  opacity: 1;
}

/* Info Box */
.about-info-box {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
}

.about-info-box-title {
  font-weight: bold;
  color: #808080;
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-info-box-content {
  color: #808080;
  font-size: 13px;
  line-height: 1.7;
}

.about-info-box-content i {
  color: #009678;
  margin-right: 8px;
}

/* Icon styles */
.about-icon-store {
  color: #0088cc;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .about-card {
    padding: 16px;
  }

  .about-card-title {
    font-size: 15px;
  }

  .about-cta-button {
    width: 100%;
    justify-content: center;
  }

  .about-prize-table {
    font-size: 13px;
  }

  .about-prize-table th,
  .about-prize-table td {
    padding: 10px 8px;
  }
}
