/* CSS Variable aliases for page-specific styles */
    :root {
      --gold: var(--color-accent, #ffb703);
      --gold-hover: var(--color-accent-hover, #ffd166);
      --white: var(--text-primary, #f5f7ff);
    }
    /* Verify Page Specific Styles */
    .verify-hero {
      min-height: 45vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 20px 50px;
      position: relative;
      text-align: center;
    }
    .verify-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at center top, rgba(255, 183, 3, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .verify-hero-content {
      max-width: 600px;
      position: relative;
      z-index: 2;
    }
    .verify-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(255, 183, 3, 0.1);
      border: 1px solid rgba(255, 183, 3, 0.3);
      border-radius: 50px;
      font-size: 0.85rem;
      color: var(--gold);
      margin-bottom: 24px;
      font-weight: 600;
    }
    .verify-badge svg {
      width: 16px;
      height: 16px;
    }
    .verify-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
      background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .verify-title .highlight {
      background: linear-gradient(135deg, var(--gold) 0%, #ffd447 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .verify-subtitle {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 0;
    }
    /* Search Section */
    .verify-section {
      padding: 0 20px 80px;
      position: relative;
      z-index: 2;
    }
    .verify-card {
      max-width: 550px;
      margin: 0 auto;
      padding: 40px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }
    .verify-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .form-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.5px;
    }
    .form-input {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      color: var(--white);
      font-size: 1rem;
      font-family: 'Courier New', monospace;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.4);
      text-transform: none;
      font-family: inherit;
      letter-spacing: normal;
    }
    .form-input:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.15);
      background: rgba(255, 255, 255, 0.08);
    }
    .verify-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--gold);
      border: 2px solid var(--gold);
      border-radius: 8px;
      color: var(--color-base, #05070f);
      font-size: 1rem;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .verify-btn:hover {
      background: var(--gold-hover);
      border-color: var(--gold-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 183, 3, 0.35);
    }
    .verify-btn:active {
      transform: translateY(0);
    }
    .verify-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
    .verify-btn svg {
      width: 20px;
      height: 20px;
    }
    /* Loading State */
    .verify-loading {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 40px 20px;
    }
    .verify-loading.active {
      display: flex;
    }
    .loading-spinner {
      width: 48px;
      height: 48px;
      border: 3px solid rgba(255, 183, 3, 0.2);
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    .loading-text {
      color: var(--gold);
      font-weight: 600;
      font-size: 0.95rem;
    }
    /* Result Section */
    .result-section {
      padding: 0 20px 100px;
      display: none;
    }
    .result-section.active {
      display: block;
    }
    .result-container {
      max-width: 600px;
      margin: 0 auto;
    }
    /* Valid Certificate */
    .result-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .result-card.valid {
      border-color: rgba(34, 197, 94, 0.3);
    }
    .result-card.valid::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #22c55e, #4ade80);
    }
    .result-card.invalid {
      border-color: rgba(239, 68, 68, 0.3);
    }
    .result-card.invalid::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #ef4444, #f87171);
    }
    .result-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .result-icon.valid {
      background: rgba(34, 197, 94, 0.15);
    }
    .result-icon.invalid {
      background: rgba(239, 68, 68, 0.15);
    }
    .result-icon svg {
      width: 40px;
      height: 40px;
    }
    .result-icon.valid svg {
      color: #22c55e;
    }
    .result-icon.invalid svg {
      color: #ef4444;
    }
    .result-status {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .result-status.valid {
      color: #22c55e;
    }
    .result-status.invalid {
      color: #ef4444;
    }
    .result-message {
      color: var(--text-secondary);
      font-size: 1rem;
      margin-bottom: 32px;
      line-height: 1.6;
    }
    /* Certificate Details */
    .certificate-details {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 24px;
      text-align: left;
    }
    .detail-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      gap: 16px;
    }
    .detail-row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .detail-row:first-child {
      padding-top: 0;
    }
    .detail-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      flex-shrink: 0;
    }
    .detail-value {
      font-size: 0.95rem;
      color: var(--white);
      text-align: right;
      word-break: break-word;
    }
    .uid-value {
      font-family: 'Courier New', monospace;
      letter-spacing: 1px;
      color: var(--gold);
    }
    /* Actions */
    .result-actions {
      display: flex;
      gap: 12px;
      margin-top: 32px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .action-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .action-btn.primary {
      background: var(--gold);
      border: 2px solid var(--gold);
      color: var(--color-base, #05070f);
    }
    .action-btn.primary:hover {
      background: var(--gold-hover);
      border-color: var(--gold-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 183, 3, 0.35);
    }
    .action-btn.primary:active {
      transform: translateY(0);
    }
    .action-btn.secondary {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.15);
      color: var(--white);
    }
    .action-btn.secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }
    .action-btn.secondary:active {
      transform: translateY(0);
    }
    .action-btn svg {
      width: 18px;
      height: 18px;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .verify-hero {
        padding: 100px 16px 40px;
        min-height: 35vh;
      }
      .verify-card,
      .result-card {
        padding: 28px 20px;
        border-radius: 16px;
      }
      .certificate-details {
        padding: 20px 16px;
      }
      .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }
      .detail-value {
        text-align: left;
      }
      .result-actions {
        flex-direction: column;
      }
      .action-btn {
        width: 100%;
      }
    }
    @media (max-width: 480px) {
      .verify-hero {
        padding: 90px 16px 32px;
      }
      .verify-title {
        font-size: 1.5rem;
      }
      .verify-card,
      .result-card {
        padding: 24px 16px;
      }
      .form-input {
        padding: 14px 16px;
        font-size: 0.9rem;
      }
      .verify-btn {
        padding: 14px 24px;
      }
      .result-icon {
        width: 64px;
        height: 64px;
      }
      .result-icon svg {
        width: 32px;
        height: 32px;
      }
    }