/* ============================================
   KEMETION — Inner Pages Stylesheet
   Neon Arena Cyberpunk Sports Theme
   ============================================ */

/* Page Hero Banner */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.03) 0%, transparent 60%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 107, 0, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #39FF14;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero h1 span {
  color: #39FF14;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.page-hero p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
}

/* Page Content Area */
.page-content {
  padding: 60px 0 100px;
  min-height: 50vh;
}

.page-content .container {
  max-width: 900px;
}

/* Content Card */
.content-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .content-card {
    padding: 28px 20px;
  }
}

.content-card h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #39FF14;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
}

.content-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FF6B00;
  margin: 28px 0 12px;
}

.content-card p,
.content-card li {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 14px;
}

.content-card ul,
.content-card ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-card ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.content-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #39FF14;
  font-weight: bold;
}

.content-card ol li {
  margin-bottom: 10px;
}

.content-card a {
  color: #39FF14;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
  transition: border-color 0.3s;
}

.content-card a:hover {
  border-color: #39FF14;
}

.content-card strong {
  color: #fff;
  font-weight: 600;
}

.content-card .highlight-box {
  background: rgba(57, 255, 20, 0.05);
  border-left: 3px solid #39FF14;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.content-card .highlight-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.content-card .warning-box {
  background: rgba(255, 107, 0, 0.05);
  border-left: 3px solid #FF6B00;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}

.content-card .warning-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Last Updated */
.last-updated {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
  text-align: center;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #39FF14;
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2339FF14' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #0A0A0F;
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: #39FF14;
  color: #0A0A0F;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  width: fit-content;
}

.btn-submit:hover {
  background: #4dff33;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
  transform: translateY(-2px);
}

/* Help Center Grid */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.help-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.help-card:hover {
  border-color: rgba(57, 255, 20, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.08);
}

.help-card .help-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(57, 255, 20, 0.08);
  color: #39FF14;
}

.help-card.orange .help-icon {
  background: rgba(255, 107, 0, 0.08);
  color: #FF6B00;
}

.help-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.help-card p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.help-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #39FF14;
  text-decoration: none;
  transition: gap 0.3s;
}

.help-card a:hover {
  gap: 10px;
}

/* FAQ Page Standalone */
.faq-page-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-page-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(57, 255, 20, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-page-item:hover {
  border-color: rgba(57, 255, 20, 0.25);
}

.faq-page-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-page-item .faq-question:hover {
  color: #39FF14;
}

.faq-page-item .faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: #39FF14;
}

.faq-page-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-page-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-page-item.active .faq-answer {
  max-height: 500px;
}

.faq-page-item .faq-answer-inner {
  padding: 0 24px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* Back to Home Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #39FF14;
  text-decoration: none;
  margin-bottom: 30px;
  transition: gap 0.3s;
}

.back-link:hover {
  gap: 12px;
}

.back-link svg {
  width: 18px;
  height: 18px;
}

/* Success Message */
.success-message {
  display: none;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.success-message.show {
  display: block;
}

.success-message h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  color: #39FF14;
  margin-bottom: 8px;
}

.success-message p {
  font-family: 'Rajdhani', sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

/* Table styles for policy pages */
.content-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.content-card table th,
.content-card table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.content-card table th {
  color: #39FF14;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.content-card table tr:hover td {
  background: rgba(57, 255, 20, 0.03);
}
