/* ==================== TERMINAL PAGE STYLES ==================== */

.terminal-nav-btn {
  /* Reset browser defaults */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  min-width: 140px;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.terminal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.terminal-nav-btn:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.terminal-nav-btn:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.2) !important;
}

/* NFC Terminal Section */
.nfc-terminal-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 20px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.nfc-terminal-btn {
  /* Reset browser defaults */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: linear-gradient(135deg, #294A42, #2a4e44);
  color: white;
  padding: 16px 32px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 200px;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(41, 74, 66, 0.3);
  position: relative;
  overflow: hidden;
}

.nfc-terminal-btn:hover {
  background: linear-gradient(135deg, #2a4e44, #2c5146) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(41, 74, 66, 0.4);
  border-color: #2a4e44 !important;
  color: white !important;
}

.nfc-terminal-btn:focus {
  outline: none;
  background: linear-gradient(135deg, #2a4e44, #2c5146) !important;
  border-color: #2a4e44 !important;
  color: white !important;
}

.nfc-terminal-btn:active {
  transform: translateY(0);
  background: linear-gradient(135deg, #294A42, #2a4e44) !important;
  color: white !important;
}

/* ==================== MOBILE STYLES ==================== */
@media (max-width: 768px) {
  .nfc-terminal-section {
    padding: 16px 20px;
  }

  .nfc-terminal-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .nfc-terminal-section {
    padding: 12px 16px;
  }

  .nfc-terminal-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}