.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.mesh-bg {
  background-color: #0A0A0A;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(225, 197, 114, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(84, 236, 198, 0.06), transparent),
    linear-gradient(rgba(255, 225, 139, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 225, 139, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
}
.glass {
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 225, 139, 0.12);
}
.text-gold {
  background: linear-gradient(135deg, #ffe18b 0%, #c9a227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #54ECC6;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(84, 236, 198, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(84, 236, 198, 0); }
}
/* Auth form inputs — flex layout avoids icon/placeholder overlap; overrides Tailwind forms plugin */
.input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 3rem;
  padding: 0;
  overflow: hidden;
  background-color: #1e1e1e !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-group:focus-within {
  border-color: rgba(255, 225, 139, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 225, 139, 0.1);
}
.input-group .input-icon-slot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.25);
  color: #94a3b8;
  pointer-events: none;
}
.input-group .input-icon-slot .material-symbols-outlined {
  font-size: 1.25rem;
  line-height: 1;
}
.input-group .input-field {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0.75rem 1rem !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #f1f5f9 !important;
  font-size: 0.9375rem !important;
  line-height: 1.5 !important;
  -webkit-text-fill-color: #f1f5f9 !important;
}
.input-group .input-field:focus {
  outline: none;
  box-shadow: none;
  ring: none;
}
.input-group .input-field::placeholder {
  color: #64748b;
  opacity: 1;
}
.input-group select.input-field {
  cursor: pointer;
  padding-right: 0.25rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 1.25rem;
}
.input-group select.input-field option {
  background-color: #141414;
  color: #e2e2e2;
}
/* Tailwind @tailwindcss/forms resets */
input.input-field,
select.input-field,
textarea.input-field {
  color: #e2e2e2;
  background-color: transparent;
}
input.input-field:-webkit-autofill,
input.input-field:-webkit-autofill:hover,
input.input-field:-webkit-autofill:focus {
  -webkit-text-fill-color: #e2e2e2;
  -webkit-box-shadow: 0 0 0 1000px #141414 inset;
  transition: background-color 5000s ease-in-out 0s;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: #94a3b8;
  transition: background 0.2s, color 0.2s;
}
.sidebar-link:hover { background: rgba(255, 225, 139, 0.06); color: #e2e2e2; }
.sidebar-link.active {
  background: rgba(255, 225, 139, 0.12);
  color: #ffe18b;
  font-weight: 500;
}
.stat-card { transition: border-color 0.2s; }
.stat-card:hover { border-color: rgba(255, 225, 139, 0.25); }

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.contact-modal.hidden { display: none; }
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}
.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  border-radius: 1rem;
  padding: 1.5rem;
}
.contact-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.contact-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #e2e2e2;
}
.contact-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.6);
  color: #e2e2e2;
  font-size: 0.9375rem;
}
.contact-input:focus {
  outline: none;
  border-color: rgba(255, 225, 139, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 225, 139, 0.1);
}
.contact-input::placeholder { color: #64748b; }
