:root {
  --primary-pink: #ff7597;
  --primary-pink-hover: #ff4d77;
  --pastel-pink: #fff0f3;
  --accent-gold: #f39c12;
  --gold-glow: rgba(243, 156, 18, 0.4);
  --pink-glow: rgba(255, 117, 151, 0.4);
  --dark-text: #2c3e50;
  --light-text: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --card-shadow: 0 8px 32px 0 rgba(255, 117, 151, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background: linear-gradient(135deg, #fff0f3 0%, #ffe3e8 50%, #ffd3da 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Background floating sparkles */
.bg-sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,117,151,0) 70%);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.sparkle:nth-child(1) { top: 15%; left: 10%; width: 60px; height: 60px; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 45%; left: 85%; width: 80px; height: 80px; animation-delay: 2s; animation-duration: 20s; }
.sparkle:nth-child(3) { top: 75%; left: 15%; width: 50px; height: 50px; animation-delay: 4s; animation-duration: 12s; }
.sparkle:nth-child(4) { top: 25%; left: 70%; width: 70px; height: 70px; animation-delay: 1s; animation-duration: 18s; }

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-40px) translateX(20px) scale(1.2);
    opacity: 0.7;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s ease-out;
}

.avatar-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(255, 117, 151, 0.3);
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.avatar-wrapper::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-pink), var(--accent-gold));
  z-index: 1;
  animation: pulseGlow 3s infinite alternate;
}

.avatar:hover,
.avatar.active {
  transform: scale(2);
  z-index: 10;
  box-shadow: 0 15px 40px rgba(255, 117, 151, 0.6);
}

.hero-card:hover .avatar:not(:hover):not(.active) {
  transform: scale(1.05) rotate(2deg);
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.98);
    opacity: 0.6;
    box-shadow: 0 0 10px var(--pink-glow);
  }
  100% {
    transform: scale(1.02);
    opacity: 1;
    box-shadow: 0 0 25px 5px var(--pink-glow), 0 0 15px var(--gold-glow);
  }
}

.hero h1 {
  font-size: 2.2rem;
  color: #d13c62;
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.hero p {
  font-size: 1.1rem;
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.scroll-btn {
  background: linear-gradient(135deg, var(--primary-pink) 0%, #ff4d77 100%);
  color: var(--light-text);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 117, 151, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.scroll-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 117, 151, 0.5);
  background: linear-gradient(135deg, #ff4d77 0%, #ff2a5a 100%);
}

.scroll-btn svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* Links Section */
.links-section {
  min-height: 100vh;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.links-header {
  text-align: center;
  margin-bottom: 3rem;
}

.links-header h2 {
  font-size: 2.5rem;
  color: #d13c62;
  margin-bottom: 0.5rem;
}

.links-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  width: 100%;
}

.link-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--dark-text);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-pink), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.link-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 117, 151, 0.25), 0 0 15px rgba(243, 156, 18, 0.15);
  border-color: rgba(255, 117, 151, 0.5);
}

.link-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pastel-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--primary-pink);
}

.link-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--pastel-pink) 0%, #ffd3da 100%);
}

.link-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #b33951;
}

.link-card p {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.4;
}

/* Badge for Agency Recruitment */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(243, 156, 18, 0.3);
}

.badge.tiktok-badge {
  background: linear-gradient(135deg, var(--primary-pink) 0%, #ff2a5a 100%);
  box-shadow: 0 4px 8px rgba(255, 117, 151, 0.3);
}

/* Modal styling for agency recruitment placeholder */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #95a5a6;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--primary-pink);
}

.modal h3 {
  font-size: 1.8rem;
  color: #d13c62;
  margin-bottom: 1rem;
}

.modal p {
  color: #636e72;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-btn {
  background: linear-gradient(135deg, var(--primary-pink) 0%, #ff4d77 100%);
  color: var(--light-text);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 117, 151, 0.3);
  transition: all 0.3s ease;
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 117, 151, 0.4);
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem;
  color: #b33951;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  opacity: 0.8;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsiveness */
@media (max-width: 768px) {
  .links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-card {
    padding: 2.5rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .links-header h2 {
    font-size: 2rem;
  }
}
