:root {
  --primary: #FF6B35;
  --primary-light: #FF8A5B;
  --primary-dark: #E85A28;
  --accent: #00D4AA;
  --accent-light: #00E8BB;
  --card-bg: rgba(255, 255, 255, 0.95);
  --text-dark: #1A1A2E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(180deg, #FFF5F0 0%, #FFE8DB 50%, #FFF5F0 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display {
  font-family: 'Outfit', sans-serif;
}

.main-container {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  position: relative;
}

.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(12px);
  transform: scale(1.1);
  opacity: 0.3;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 245, 240, 0.9) 0%, rgba(255, 245, 240, 0.95) 100%);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  padding: 1.5rem 1rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .content-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

.profile-card {
  max-width: 440px;
  margin: 0 auto;
}

.particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: float 10s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-25px) rotate(180deg); opacity: 0.25; }
}

.tooth-float {
  animation: toothBounce 3s infinite ease-in-out;
}

@keyframes toothBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-6px) rotate(5deg); }
}

.profile-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  filter: blur(30px);
  opacity: 0.35;
  animation: pulseGlow 4s infinite ease-in-out;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.35; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .link-btn {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }
}

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

.link-btn:hover::before {
  left: 100%;
}

.link-btn-secondary {
  background: var(--card-bg);
  color: var(--text-dark) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(255, 107, 53, 0.15);
}

.link-btn-secondary:hover {
  transform: scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.link-btn-secondary:active {
  transform: scale(0.98);
}

.link-btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(0, 212, 170, 0.35);
}

.link-btn-accent:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 212, 170, 0.45);
}

.link-btn-success {
  background: linear-gradient(135deg, #10B981, #059669) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.link-btn span {
  color: inherit !important;
  text-decoration: none !important;
}

.link-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none !important;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-dark) !important;
  border: 1.5px solid rgba(255, 107, 53, 0.1);
}

@media (min-width: 640px) {
  .location-item {
    padding: 0.875rem 1.125rem;
    font-size: 0.9375rem;
  }
}

.location-item:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.1);
}

.location-item:active {
  transform: translateX(2px) scale(0.99);
}

.location-item .location-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.location-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1.5px solid rgba(255, 107, 53, 0.1);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .social-btn {
    width: 48px;
    height: 48px;
  }
}

.social-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
  border-color: var(--primary);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .social-btn svg {
    width: 22px;
    height: 22px;
  }
}

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #E5E7EB;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  background: #FFFFFF;
  color: #1A1A2E;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.1);
}

.animate-in {
  opacity: 0;
  transform: translateY(15px);
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verified-badge {
  background: linear-gradient(135deg, var(--accent), #00B894);
  padding: 3px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 212, 170, 0.35);
}

.verified-badge svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.stat-number {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-message {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1.5px solid #10B981;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  margin-top: 0.75rem;
  display: none;
  animation: fadeIn 0.3s ease;
}

.success-message.show {
  display: block;
}

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

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.4);
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 639px) {
  .link-btn {
    min-height: 48px;
  }
  .form-input {
    min-height: 48px;
  }
}
