/**
 * License Check Page Styles
 */

.license-section {
  padding: 16px 0 80px;
}

.license-card {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e3a8a 0%, #4338ca 40%, #7c3aed 100%);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(67, 56, 202, 0.3);
}

.license-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.license-card-icon svg {
  width: 32px;
  height: 32px;
  color: #fbbf24;
}

.license-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.license-card-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.5;
}

.license-input-group {
  margin-bottom: 24px;
}

.license-input {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  text-align: center;
  letter-spacing: 0.05em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.license-input::placeholder {
  color: #94a3b8;
  letter-spacing: normal;
}

.license-input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
}

.license-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  background: #fbbf24;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.license-btn:hover {
  background: #f59e0b;
}

.license-btn svg {
  width: 20px;
  height: 20px;
}

.license-result {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: none;
}

.license-result.visible {
  display: block;
  animation: licenseResultFadeIn 0.3s ease;
}

@keyframes licenseResultFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.license-result-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.license-result-value {
  font-size: 20px;
  font-weight: 700;
  color: #fbbf24;
}

.license-result-status {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

.license-result.error .license-result-value {
  color: #f87171;
}

.license-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.license-note-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.license-note-text a {
  color: #fbbf24;
  text-decoration: none;
}

.license-note-text a:hover {
  text-decoration: underline;
}
