/* Parameter Page Professional Styling */

.parameter-page {
  max-width: 100%;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 140px);
}

.parameter-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Parameter Card */
.parameter-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.parameter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.parameter-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  text-align: center;
  color: white;
}

.parameter-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.parameter-subtitle {
  font-size: 18px;
  margin: 0;
  opacity: 0.95;
  font-weight: 300;
}

.parameter-body {
  padding: 50px;
}

.parameter-content h2 {
  font-size: 28px;
  color: #1f2937;
  margin: 30px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #667eea;
  font-weight: 600;
}

.parameter-content h3 {
  font-size: 22px;
  color: #374151;
  margin: 25px 0 15px 0;
  font-weight: 600;
}

.parameter-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0 0 20px 0;
}

.parameter-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.parameter-content img:hover {
  transform: scale(1.02);
}

/* Hide anchor links */
.parameter-content .anchor,
.parameter-content h1 .anchor,
.parameter-content h2 .anchor,
.parameter-content h3 .anchor,
.parameter-content h4 .anchor,
.parameter-content h5 .anchor,
.parameter-content h6 .anchor {
  display: none !important;
  visibility: hidden !important;
}

.parameter-content h1:hover .anchor,
.parameter-content h2:hover .anchor,
.parameter-content h3:hover .anchor,
.parameter-content h4:hover .anchor,
.parameter-content h5:hover .anchor,
.parameter-content h6:hover .anchor {
  display: none !important;
  visibility: hidden !important;
}

/* Parameter Info Section */
.parameter-info-section {
  margin-top: 50px;
}

.info-title {
  font-size: 32px;
  color: #1f2937;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.info-card h3 {
  font-size: 20px;
  color: #1f2937;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .parameter-page {
    padding: 20px 15px;
  }

  .parameter-header {
    padding: 30px 20px;
  }

  .parameter-title {
    font-size: 32px;
  }

  .parameter-subtitle {
    font-size: 16px;
  }

  .parameter-body {
    padding: 30px 20px;
  }

  .parameter-content h2 {
    font-size: 24px;
  }

  .parameter-content h3 {
    font-size: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .parameter-title {
    font-size: 28px;
  }

  .parameter-subtitle {
    font-size: 14px;
  }

  .parameter-content h2 {
    font-size: 22px;
  }

  .parameter-content h3 {
    font-size: 18px;
  }
}
