.shiny-text {
  display: inline-block;
}
.card-spotlight {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid #222;
  background-color: #111;
  padding: 2rem;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: rgba(255, 255, 255, 0.05);
}

.card-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card-spotlight:hover::before,
.card-spotlight:focus-within::before {
  opacity: 0.6;
}

[data-theme='light'] .card-spotlight {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

[data-theme='light'] .card-spotlight::before {
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(0, 0, 0, 0.05), transparent 80%);
}
.panel-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
}

.slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 2001;
  display: flex;
  flex-direction: column;
}

.panel-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .slide-panel {
    max-width: 100%;
  }
}
.auth-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.input-group input {
  width: 100%;
  padding: 1rem 1rem 1rem 42px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  outline: none;
  transition: all 0.2s ease;
}

.input-group input:focus {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
}

.login-btn-primary {
  width: 100%;
  padding: 1rem;
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-btn-primary:hover:not(:disabled) {
  background: #2563eb;
  transform: translateY(-2px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.login-btn-outlook {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: not-allowed;
}

.outlook-icon {
  width: 20px;
  height: 20px;
}

.auth-hint {
  font-size: 0.85rem !important;
}

/* Profile Details */
.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar-large {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.profile-info-main h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.profile-info-main p {
  color: #64748b;
  font-size: 0.9rem;
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item .icon {
  color: #3b82f6;
  margin-top: 0.2rem;
}

.detail-item label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.detail-item span {
  color: #e2e8f0;
  font-weight: 500;
}

.progress-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2.5rem;
}

.progress-card h4 {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.stats-row {
  display: flex;
  gap: 2rem;
}

.stat .val {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.stat label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.admin-btn {
  width: 100%;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 1rem;
}

.admin-btn:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.logout-btn {
  width: 100%;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.logout-btn:hover {
  background: #ef4444;
  color: #fff;
}

/* Settings List */
.settings-group {
  margin-bottom: 2rem;
}

.settings-group h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.setting-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #e2e8f0;
}

.status-badge {
  font-size: 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

.setting-hint {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.5rem;
  margin-left: 2.3rem;
}

.setting-label .icon {
  color: #94a3b8;
}

.font-selector-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.font-option {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.font-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.font-option.active {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
}

.font-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.font-name {
  font-size: 1rem;
  font-weight: 600;
}

.font-desc {
  font-size: 0.75rem;
  color: #64748b;
}

.check-icon {
  color: #3b82f6;
}

/* Toggle Switch Mock */
.toggle-switch-mock {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}

.toggle-switch-mock.active {
  background: #3b82f6;
  justify-content: flex-end;
}

.toggle-switch-mock.active .switch-knob {
  background: #fff;
}

.switch-knob {
  width: 18px;
  height: 18px;
  background: #64748b;
  border-radius: 50%;
  transition: all 0.2s ease;
}
  margin-top: 3rem;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.settings-footer p {
  font-size: 0.85rem;
  color: #64748b;
}

/* Coming Soon Placeholder */
.auth-placeholder {
  text-align: center;
  padding: 3rem 1rem;
}

.auth-icon-wrap {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.coming-soon-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.coming-soon-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.f-badge {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.lock-icon {
  color: #f59e0b;
}

.admin-entry-trigger {
  margin-top: 5rem;
  text-align: center;
}

.admin-hidden-link {
  font-size: 0.7rem;
  color: #1e293b;
  cursor: pointer;
  transition: color 0.2s;
}

.admin-hidden-link:hover {
  color: #334155;
}
