/* ============================================
   VERIFY PAGE STYLES
   ============================================ */

.verify-page {
  background: var(--color-black);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Grid Background */
.verify-page::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(217, 119, 6, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.02) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(
    ellipse at 50% 50%,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 70%
  );
}

/* Gradient Overlay */
.verify-page::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 70% 20%,
      rgba(217, 119, 6, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 30% 80%,
      rgba(81, 209, 255, 0.06) 0%,
      transparent 45%
    );
  pointer-events: none;
  z-index: 0;
}

/* Background Decorations */
.verify-bg-decorations {
  display: none;
}

/* Glows */
.verify-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.verify-glow-1 {
  width: 800px;
  height: 800px;
  top: -300px;
  right: -200px;
  background: rgba(217, 119, 6, 0.15);
}

.verify-glow-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -150px;
  background: rgba(81, 209, 255, 0.08);
}

/* Main Content */
.verify-main {
  position: relative;
  z-index: 1;
  padding: calc(80px + var(--spacing-lg)) var(--spacing-md) var(--spacing-xl);
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.verify-container {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.verify-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.verify-label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: var(--border-radius-full);
  color: var(--color-orange);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.verify-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.03em;
  margin-bottom: var(--spacing-sm);
}

.verify-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Verification Card */
.verify-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-lg);
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.verify-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-orange) 0%,
    rgba(217, 119, 6, 0.1) 100%
  );
}

.verify-card-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 12px;
  color: var(--color-orange);
}

.verify-card-icon svg {
  width: 24px;
  height: 24px;
}

.verify-card-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Platform Selection Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  margin-top: 0.5rem;
}

.platform-option {
  cursor: pointer;
}

.platform-option input {
  display: none;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.platform-option input:checked + .platform-card {
  background: rgba(217, 119, 6, 0.1);
  border-color: var(--color-orange);
}

.platform-icon {
  width: 28px;
  height: 28px;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.platform-option input:checked + .platform-card .platform-icon {
  color: var(--color-orange);
}

.platform-name {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  transition: var(--transition);
}

.platform-option input:checked + .platform-card .platform-name {
  color: var(--color-text);
}

/* Verify Form */
.verify-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.btn-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin-top: var(--spacing-sm);
}

.btn-verify .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-verify:hover .btn-icon {
  transform: scale(1.1);
}

/* Verify Result */
.verify-result {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: none;
}

.verify-result.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Result States */
.result-card {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  /* border-radius: 12px; */
}

.result-card.verified {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.result-card.not-verified {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.result-card.loading {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.result-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-icon svg {
  width: 24px;
  height: 24px;
}

.result-card.verified .result-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.result-card.not-verified .result-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.result-content {
  flex: 1;
}

.result-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.result-card.verified .result-title {
  color: #22c55e;
}

.result-card.not-verified .result-title {
  color: #ef4444;
}

.result-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.result-username {
  font-weight: 600;
  color: var(--color-text);
}

.result-details {
  display: flex;
  gap: var(--spacing-md);
  margin: var(--spacing-sm) 0;
  padding: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.result-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.result-detail-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-detail-value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.result-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

.result-platform svg {
  width: 14px;
  height: 14px;
}

/* Loading Spinner */
.loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Warning Notice */
.verify-warning {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.2);
  /* border-radius: 12px; */
}

.warning-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 10px;
  color: #fbbf24;
  flex-shrink: 0;
}

.warning-icon svg {
  width: 20px;
  height: 20px;
}

.warning-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 0.25rem;
}

.warning-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.warning-text strong {
  color: var(--color-text);
}

/* Footer */
.verify-footer {
  position: relative;
  z-index: 1;
  padding: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-footer-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.verify-footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.verify-footer-links a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

.verify-footer-links a:hover {
  color: var(--color-orange);
}

/* Responsive */
@media (max-width: 768px) {
  .verify-main {
    padding: calc(70px + var(--spacing-md)) var(--spacing-sm) var(--spacing-lg);
    align-items: flex-start;
  }

  .verify-card {
    padding: var(--spacing-md);
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .verify-warning {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .verify-footer-content {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .result-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .verify-glow-1 {
    width: 400px;
    height: 400px;
  }

  .verify-glow-2 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .verify-card-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .platform-card {
    padding: 0.75rem 0.5rem;
  }

  .platform-icon {
    width: 24px;
    height: 24px;
  }

  .platform-name {
    font-size: 0.7rem;
  }
}
