:root {
  --gold: #f2b705;
  --gold-dark: #c98a00;
  --amber: #f5d061;
  --charcoal: #1e1f24;
  --white: #ffffff;

  /* Dark mode (default) */
  --bg-primary: #0f1014;
  --bg-secondary: #1a1b23;
  --bg-tertiary: #16171f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-input: rgba(255, 255, 255, 0.04);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-input: rgba(255, 255, 255, 0.08);
}

[data-theme="light"] {
  /* Light mode - Soft warm gray, easy on eyes */
  --bg-primary: #e8e9ea;
  --bg-secondary: #f0f1f2;
  --bg-tertiary: #d8d9da;
  --bg-card: rgba(240, 241, 242, 0.95);
  --bg-input: rgba(0, 0, 0, 0.03);
  --text-primary: #2a2b35;
  --text-secondary: rgba(42, 43, 53, 0.7);
  --text-tertiary: rgba(42, 43, 53, 0.5);
  --border-color: rgba(0, 0, 0, 0.06);
  --border-input: rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  margin: 0;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-size: 14px;
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.auth-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .auth-header {
  background: rgba(240, 241, 242, 0.9);
}

.auth-header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.auth-logo:hover {
  opacity: 0.8;
}

.auth-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(242, 183, 5, 0.3));
}

.auth-company-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--bg-input);
  border-color: var(--gold);
  transform: scale(1.05);
}

.theme-icon {
  position: absolute;
  width: 20px;
  height: 20px;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-icon-dark {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-light {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

[data-theme="light"] .theme-icon-dark {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme="light"] .theme-icon-light {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 50%,
    var(--bg-primary) 100%
  );
  padding: 1.5rem;
  padding-top: 5rem;
  position: relative;
  transition: background 0.3s ease;
}

.login-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(242, 183, 5, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(242, 183, 5, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.login-container {
  width: 100%;
  max-width: 340px;
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: 0.875rem;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  transition: all 0.3s ease;
}

[data-theme="light"] .login-container {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(0, 0, 0, 0.02) inset;
}

.login-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.login-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.login-header-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.login-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.375rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
}

.login-header p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.login-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: color 0.3s ease;
}

.label-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--text-primary);
  opacity: 0.85;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.form-group:focus-within .label-icon {
  color: var(--gold);
  opacity: 1;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 0.875rem;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  font-family: inherit;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-input);
  box-shadow: 0 0 0 3px rgba(242, 183, 5, 0.08), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
}

.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-input-wrapper input {
  padding-right: 2.75rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.2s ease;
  z-index: 1;
}

.password-toggle:hover {
  color: var(--text-primary);
}

.password-toggle:focus {
  outline: none;
  color: var(--gold);
}

.eye-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  transition: all 0.2s ease;
}

.password-toggle.active .eye-open {
  display: none;
}

.password-toggle.active .eye-closed {
  display: block !important;
}

.terms-agreement {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
  margin: 1.25rem 0 0 0;
  line-height: 1.5;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.terms-agreement a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.terms-agreement a:hover {
  color: var(--amber);
  text-decoration: underline;
}

.btn-primary {
  width: 100%;
  padding: 0.8125rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  border: none;
  border-radius: 0.5rem;
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover:not(:disabled)::before {
  left: 100%;
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242, 183, 5, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(242, 183, 5, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-passkey {
  width: 100%;
  padding: 0.8125rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  margin-top: 0.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.btn-passkey:hover:not(:disabled) {
  background: var(--bg-secondary);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242, 183, 5, 0.15);
}

.btn-passkey:active:not(:disabled) {
  transform: translateY(0);
}

.btn-passkey:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-passkey .btn-icon {
  flex-shrink: 0;
  color: var(--gold);
}

.login-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.login-divider span {
  padding: 0 0.875rem;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.25rem 0;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.divider span {
  padding: 0 0.875rem;
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.125rem;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 0.5rem;
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-social::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

[data-theme="light"] .btn-social::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
}

.btn-social:hover::before {
  opacity: 1;
}

.btn-social:hover {
  background: var(--bg-card);
  border-color: var(--border-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-google:hover {
  background: rgba(66, 133, 244, 0.12);
  border-color: rgba(66, 133, 244, 0.25);
}

.btn-facebook:hover {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.25);
}

.register-link {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.register-link a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.375rem;
  transition: all 0.25s ease;
}

.register-link a:hover {
  color: var(--amber);
  text-shadow: 0 0 8px rgba(242, 183, 5, 0.3);
}

.message {
  padding: 0.875rem;
  border-radius: 0.5rem;
  margin-bottom: 1.125rem;
  font-size: 0.8125rem;
  display: none;
  animation: slideDown 0.3s ease-out;
  border-left: 3px solid;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.success {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.4);
  color: #86efac;
  display: block;
}

.message.error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  display: block;
}

/* Responsive */
@media (max-width: 480px) {
  .auth-header {
    padding: 0.875rem 1rem;
  }

  .auth-logo img {
    width: 32px;
    height: 32px;
  }

  .auth-company-name {
    font-size: 0.875rem;
  }

  .login-page {
    padding-top: 4.5rem;
  }

  .login-container {
    padding: 1.5rem;
    max-width: 100%;
  }

  .social-login {
    grid-template-columns: 1fr;
  }

  .login-header h1 {
    font-size: 1.375rem;
  }
}

/* Clean Toast Notification */
.toast-notification {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

[data-theme="light"] .toast-notification {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.toast-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-message {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-primary);
}

.toast-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.toast-close:hover {
  color: var(--text-primary);
  background: var(--bg-input);
}

.toast-success {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
}

.toast-success .toast-icon {
  color: #22c55e;
}

.toast-error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
}

.toast-error .toast-icon {
  color: #ef4444;
}

@media (max-width: 480px) {
  .toast-notification {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
    transform: translateY(-100px);
  }

  .toast-notification.show {
    transform: translateY(0);
  }
}

/* SweetAlert fine-tuning */
.swal-popup-sm {
  border-radius: 0.9rem !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8) !important;
  /* Dark mode - solid opaque background */
  background: #1a1b23 !important;
}

[data-theme="light"] .swal-popup-sm {
  background: rgba(240, 241, 242, 0.95) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15) !important;
}

.swal-title-sm {
  font-size: 0.98rem !important;
  margin-bottom: 0.35rem !important;
  color: var(--text-primary) !important;
  transition: color 0.3s ease !important;
}

.swal-html-sm {
  font-size: 0.8rem !important;
  color: var(--text-secondary) !important;
  transition: color 0.3s ease !important;
}

.swal-confirm-sm {
  font-size: 0.8rem !important;
  padding: 0.45rem 1rem !important;
  border-radius: 999px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #f2b705, #f5d061) !important;
  color: #111827 !important;
  border: none !important;
  transition: all 0.3s ease !important;
}

.swal-confirm-sm:hover {
  filter: brightness(1.1) !important;
}

.swal-icon-sm {
  transform: scale(0.7) !important;
  margin: 0.1rem auto 0.25rem !important;
}

/* SweetAlert success icon color */
.swal-popup-sm .swal2-success {
  border-color: #22c55e !important;
}

.swal-popup-sm .swal2-success [class^="swal2-success-line"] {
  background-color: #22c55e !important;
}

.swal-popup-sm .swal2-success .swal2-success-ring {
  border-color: rgba(34, 197, 94, 0.3) !important;
}

/* SweetAlert error icon color */
.swal-popup-sm .swal2-error {
  border-color: #ef4444 !important;
}

.swal-popup-sm .swal2-error [class^="swal2-x-mark-line"] {
  background-color: #ef4444 !important;
}

.swal-popup-sm .swal2-error .swal2-x-mark {
  border-color: rgba(239, 68, 68, 0.3) !important;
}

/* Account Locked Modal Styles */
.swal-popup-lock {
  border-radius: 1.25rem !important;
  background: #1a1b23 !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-primary) !important;
  padding: 2rem 1.5rem !important;
  transition: all 0.3s ease !important;
  overflow: visible !important;
}

[data-theme="light"] .swal-popup-lock {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
  background: #f0f1f2 !important;
}

[data-theme="dark"] .swal-popup-lock {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
  background: #1a1b23 !important;
}

.swal-title-lock {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  transition: color 0.3s ease !important;
  font-family: "Space Grotesk", sans-serif !important;
}

.swal-html-lock {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.swal-icon-lock {
  display: none !important;
}

.swal-show-lock {
  animation: lockModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

@keyframes lockModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lock-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  width: 100%;
}

.lock-modal-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(242, 183, 5, 0.15),
    rgba(242, 183, 5, 0.05)
  );
  border: 2px solid rgba(242, 183, 5, 0.3);
  color: #f2b705;
  margin: 0 auto;
  animation: lockIconPulse 2s ease-in-out infinite;
}

@keyframes lockIconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(242, 183, 5, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(242, 183, 5, 0);
  }
}

.lock-modal-icon svg {
  width: 40px;
  height: 40px;
}

.lock-modal-message {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 320px;
}

.lock-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.lock-modal-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.lock-modal-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-input);
  border-radius: 1rem;
  border: 1px solid var(--border-input);
  min-width: 200px;
  transition: all 0.3s ease;
}

[data-theme="light"] .lock-modal-timer {
  background: rgba(242, 183, 5, 0.08);
  border-color: rgba(242, 183, 5, 0.2);
}

[data-theme="dark"] .lock-modal-timer {
  background: rgba(242, 183, 5, 0.1);
  border-color: rgba(242, 183, 5, 0.25);
}

.lock-timer-display {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Space Grotesk", monospace;
  color: #f2b705;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(242, 183, 5, 0.2);
  transition: all 0.3s ease;
  animation: timerUpdate 1s ease-in-out;
}

@keyframes timerUpdate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.lock-timer-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .swal-popup-lock {
    width: 90% !important;
    padding: 1.5rem 1.25rem !important;
  }

  .lock-modal-icon {
    width: 70px;
    height: 70px;
  }

  .lock-modal-icon svg {
    width: 35px;
    height: 35px;
  }

  .lock-timer-display {
    font-size: 2rem;
  }

  .lock-modal-timer {
    padding: 1rem 1.5rem;
    min-width: 180px;
  }
}
