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

:root {
  --primary: #d63384;
  --primary-dark: #b02a5b;
  --primary-light: #f8d7da;
  --text-dark: #2d2d2d;
  --text-light: #666;
  --text-muted: #999;
  --background: #fefefe;
  --card-bg: #ffffff;
  --shadow: rgba(214, 51, 132, 0.15);
  --shadow-light: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);

  /* Font stacks with robust fallbacks */
  --font-primary: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    sans-serif;
  --font-heading: "Crimson Text", Georgia, "Times New Roman", Times, serif;
  --font-script: "Dancing Script", "Brush Script MT", cursive;

  /* Font loading states */
  --font-primary-loading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading-loading: Georgia, "Times New Roman", Times, serif;
  --font-script-loading: cursive;
}

body {
  font-family: var(--font-primary-loading);
  transition: font-family 0.3s ease;
  background: var(--background);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Effects */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(214, 51, 132, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(176, 42, 91, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(214, 51, 132, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) rotate(180deg);
  }
}

/* Floating Particles */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  opacity: 0.6;
  animation: float-particle 15s infinite linear;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  left: 40%;
  animation-delay: 6s;
}
.particle:nth-child(5) {
  left: 50%;
  animation-delay: 8s;
}
.particle:nth-child(6) {
  left: 60%;
  animation-delay: 10s;
}
.particle:nth-child(7) {
  left: 70%;
  animation-delay: 12s;
}
.particle:nth-child(8) {
  left: 80%;
  animation-delay: 14s;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 0.6;
    transform: translateY(-10vh) scale(1);
  }
  100% {
    transform: translateY(-20vh) scale(0);
    opacity: 0;
  }
}

/* Notification System */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  pointer-events: none;
}

.notification {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  animation: slideInRight 0.5s ease-out;
  pointer-events: auto;
}

.notification.slide-out {
  animation: slideOutRight 0.5s ease-out forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

.notification-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  overflow: hidden;
}

.notification-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.notification-amount {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffd700;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(214, 51, 132, 0.15);
}

.logo {
  font-family: var(--font-script-loading);
  transition: all 0.3s ease;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  text-align: center;
  display: block;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
}

.logo::before {
  content: "👣";
  font-size: 1.8rem;
  color: var(--primary);
  margin-right: 0.3rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(214, 51, 132, 0.5);
}

.logo:hover::before {
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

/* Content wrapper */
.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.9) 0%,
    rgba(248, 249, 250, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(214, 51, 132, 0.1) 0deg,
    transparent 60deg,
    rgba(176, 42, 91, 0.1) 120deg,
    transparent 180deg,
    rgba(214, 51, 132, 0.1) 240deg,
    transparent 300deg,
    rgba(214, 51, 132, 0.1) 360deg
  );
  animation: rotate-gradient 30s linear infinite;
}

@keyframes rotate-gradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(214, 51, 132, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(214, 51, 132, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 32px rgba(214, 51, 132, 0.5), 0 0 40px rgba(214, 51, 132, 0.3), inset 0 1px 0
      rgba(255, 255, 255, 0.2);
  }
}

.hero-emoji {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: float-bounce 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(214, 51, 132, 0.2));
}

@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 10px 20px rgba(214, 51, 132, 0.2));
  }
  25% {
    transform: translateY(-15px) rotate(-2deg);
    filter: drop-shadow(0 15px 25px rgba(214, 51, 132, 0.3));
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
    filter: drop-shadow(0 20px 30px rgba(214, 51, 132, 0.4));
  }
  75% {
    transform: translateY(-15px) rotate(2deg);
    filter: drop-shadow(0 15px 25px rgba(214, 51, 132, 0.3));
  }
}

.hero-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #ff6b9d);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  padding: 0 1rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
}

.highlight-feature {
  background: linear-gradient(135deg, var(--primary-light), rgba(214, 51, 132, 0.2));
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  color: var(--primary-dark);
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.highlight-feature:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.earnings-highlight {
  background: linear-gradient(135deg, #ffd700, #ffb347, #ff8c00);
  background-size: 200% 200%;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  display: inline-block;
  animation: gold-shimmer 3s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(214, 51, 132, 0.1), rgba(176, 42, 91, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(214, 51, 132, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-emoji {
  font-size: 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.stat-item:hover .stat-emoji {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 5px 10px rgba(214, 51, 132, 0.3));
}

.stat-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

/* Video Section */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.unmute-button {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #d63384;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.4);
  transition: background 0.3s ease;
}

.unmute-button:hover {
  background: #c02d74;
}

/* Modern CTA Section */
.modern-cta-section {
  padding: 4rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.95) 0%,
    rgba(248, 249, 250, 0.9) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  position: relative;
  overflow: hidden;
}

.modern-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(214, 51, 132, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(176, 42, 91, 0.1) 0%, transparent 50%);
  animation: float-reverse 25s ease-in-out infinite;
}

@keyframes float-reverse {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(-180deg);
  }
}

.modern-cta-container {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(214, 51, 132, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 32px rgba(214, 51, 132, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(214, 51, 132, 0.4), 0 0 30px rgba(214, 51, 132, 0.3), inset 0 1px 0
      rgba(255, 255, 255, 0.2);
  }
}

.modern-cta-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.modern-cta-text {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.modern-cta-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 1rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.cta-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 51, 132, 0.15);
}

.feature-emoji {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.cta-feature:hover .feature-emoji {
  transform: scale(1.2) rotate(10deg);
}

.modern-cta-button {
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #ff6b9d);
  background-size: 200% 200%;
  color: white;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
  min-height: 60px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: button-glow 3s ease-in-out infinite;
}

@keyframes button-glow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.6), 0 0 40px rgba(214, 51, 132, 0.3), inset 0 1px 0
      rgba(255, 255, 255, 0.2);
  }
}

.modern-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.modern-cta-button:hover::before {
  left: 100%;
}

.modern-cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(214, 51, 132, 0.6), 0 0 50px rgba(214, 51, 132, 0.4), inset 0 1px 0
    rgba(255, 255, 255, 0.3);
}

.button-arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.modern-cta-button:hover .button-arrow {
  transform: translateX(8px) scale(1.2);
}

.cta-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Features Section */
.features-section {
  padding: 4rem 1rem;
  background: rgba(248, 249, 250, 0.3);
}

.features-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(214, 51, 132, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(214, 51, 132, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(214, 51, 132, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 25px var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(214, 51, 132, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  transition: all 0.3s ease;
}

.feature-content h3 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.feature-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Quiz Styles */
.quiz-container {
  background: linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.9) 0%,
    rgba(248, 249, 250, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 2rem 1rem;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.quiz-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(214, 51, 132, 0.1);
  border: 1px solid rgba(214, 51, 132, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideUpFade 0.6s ease-out;
}

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

.quiz-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.quiz-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
}

.quiz-progress {
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  margin: 2rem 0;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.6s ease;
  position: relative;
}

.quiz-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

.question-counter {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.question-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-option {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1.2rem 1.5rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.quiz-option::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.6s;
}

.quiz-option:hover::before {
  left: 100%;
}

.quiz-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
  background: var(--primary-dark);
}

.quiz-option-icon {
  font-size: 1.2rem;
}

/* Loading Screen */
.loading-screen {
  text-align: center;
  padding: 3rem 2rem;
}

.loading-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.loading-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  position: relative;
}

.loading-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s infinite;
}

.loading-percentage {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Success Screen */
.success-screen {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: successPulse 0.6s ease-out;
}

.success-icon::after {
  content: "✓";
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-message {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.success-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
}

/* Upload Page Styles */
.upload-container {
  background: linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.9) 0%,
    rgba(248, 249, 250, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 2rem 1rem;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.upload-notification {
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
  background-size: 200% 200%;
  color: #000;
  padding: 2rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: earnings-glow 4s ease-in-out infinite;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  border: 3px solid #fff;
  position: relative;
  overflow: hidden;
}

@keyframes earnings-glow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transform: scale(1);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6), 0 0 50px rgba(255, 215, 0, 0.4);
    transform: scale(1.02);
  }
}

.upload-notification::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: earnings-shimmer 3s infinite;
}

@keyframes earnings-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.upload-video-section {
  margin-bottom: 2rem;
}

.upload-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #000;
}

.upload-video-wrapper video {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

.upload-video-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
}

.upload-video-controls .unmute-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.4);
  transition: background 0.3s ease;
}

.upload-video-controls .unmute-button:hover {
  background: var(--primary-dark);
}

.upload-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(214, 51, 132, 0.1);
  border: 1px solid rgba(214, 51, 132, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideUpFade 0.6s ease-out;
}

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

.upload-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.upload-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.6;
}

.upload-zone {
  border: 2px dashed var(--primary);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(214, 51, 132, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 2rem;
}

.upload-zone:hover {
  border-color: var(--primary-dark);
  background: rgba(214, 51, 132, 0.1);
  transform: translateY(-5px);
}

.upload-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.upload-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.upload-hint {
  font-size: 1rem;
  color: var(--text-light);
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  justify-content: center;
}

.file-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  background: #f8f9fa;
}

.file-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-counter {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.upload-tips {
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.tips-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.tips-list {
  list-style: none;
  padding: 0;
}

.tips-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.tips-list li::before {
  content: "✨";
  font-size: 1.2rem;
  flex-shrink: 0;
}

.upload-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
}

.upload-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
}

.upload-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Auction Page Styles */
.auction-container {
  background: linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.9) 0%,
    rgba(248, 249, 250, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 2rem 1rem;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.auction-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(214, 51, 132, 0.1);
  border: 1px solid rgba(214, 51, 132, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideUpFade 0.6s ease-out;
}

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

.auction-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.auction-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.6;
}

.auction-timer {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.timer-label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.timer-value {
  font-size: 2rem;
  font-weight: 700;
  font-family: monospace;
}

.bidders-list {
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  min-height: 200px;
}

.bidders-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.bidder-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: bidderAppear 0.5s ease-out forwards;
}

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

.bidder-item.gold {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
}

.bidder-item.silver {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: #333;
}

.bidder-item.bronze {
  background: linear-gradient(135deg, #cd7f32, #b8860b);
  color: white;
}

.bidder-avatar {
  width: 40px;
  height: 40px;
  background: rgba(214, 51, 132, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-right: 1rem;
  overflow: hidden;
}

.bidder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bidder-user {
  display: flex;
  align-items: center;
  flex: 1;
}

.bidder-name {
  font-weight: 600;
  color: inherit;
}

.bidder-amount {
  font-weight: 700;
  color: inherit;
  font-size: 1.1rem;
}

.final-ranking {
  text-align: center;
  margin-top: 2rem;
}

.ranking-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.auction-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: none;
}

.auction-button.show {
  display: block;
}

.auction-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
}

/* Auth Container */
.auth-container {
  background: linear-gradient(
    135deg,
    rgba(254, 254, 254, 0.9) 0%,
    rgba(248, 249, 250, 0.8) 50%,
    rgba(255, 255, 255, 0.9) 100%
  );
  padding: 2rem 1rem;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.auth-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(214, 51, 132, 0.1);
  border: 1px solid rgba(214, 51, 132, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideUpFade 0.6s ease-out;
}

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

.auth-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.auth-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.6;
}

.auth-tabs {
  display: flex;
  background: rgba(248, 249, 250, 0.8);
  border-radius: 15px;
  padding: 0.5rem;
  margin-bottom: 2rem;
}

.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.auth-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

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

.form-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
}

.auth-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
}

.auth-button:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.4);
}

/* Platform Dashboard Styles */
.platform-container {
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.platform-sidebar {
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: relative;
  height: auto;
  overflow-y: auto;
}

.platform-main {
  flex: 1;
  padding: 0;
}

.platform-header {
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
}

.platform-welcome {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-item {
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.sidebar-link:hover {
  background: #f8f9fa;
  color: var(--primary);
}

.sidebar-link.active {
  background: var(--primary);
  color: white;
}

.sidebar-icon {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.dashboard-content {
  padding: 2rem;
}

.auction-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auction-header-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.auction-title-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}

.auction-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #28a745;
  text-align: center;
  margin-bottom: 1rem;
}

.auction-client {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.client-info {
  flex: 1;
}

.client-name {
  font-weight: 600;
  color: var(--text-dark);
}

.client-time {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.status-pending {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-text {
  font-size: 0.9rem;
  color: #856404;
  font-style: italic;
}

.release-payment-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.release-payment-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card-dashboard {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-info-dashboard {
  flex: 1;
}

.stat-label-dashboard {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.stat-value-dashboard {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-icon-dashboard {
  font-size: 2rem;
  opacity: 0.3;
}

.complete-registration-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.complete-registration-btn:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

/* VIP Modal Styles */
.vip-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.vip-modal.active {
  opacity: 1;
  visibility: visible;
}

.vip-modal-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.vip-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.vip-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.vip-modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: #28a745;
  margin-bottom: 1rem;
}

.vip-modal-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.vip-modal-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--text-dark);
}

.vip-modal-features li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
}

.vip-upgrade-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.vip-upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(45, 45, 45, 0.98));
  backdrop-filter: blur(20px);
  color: white;
  padding: 3rem 1rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 51, 132, 0.5), transparent);
}

.footer-content {
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--font-script-loading);
  transition: all 0.3s ease;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  display: block;
  position: relative;
}

.footer-logo::before {
  content: "👣";
  font-size: 1.6rem;
  color: var(--primary);
  margin-right: 0.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(214, 51, 132, 0.5);
}

.footer-logo:hover::before {
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0.5rem;
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  background: rgba(214, 51, 132, 0.1);
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  margin: 2rem 0;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Enhanced Animations */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  animation: slideUpFade 0.8s ease-out;
}
.hero-emoji {
  animation: slideUpFade 0.8s ease-out 0.1s both;
}
.hero-title {
  animation: slideUpFade 0.8s ease-out 0.2s both;
}
.hero-subtitle {
  animation: slideUpFade 0.8s ease-out 0.3s both;
}
.hero-stats {
  animation: slideUpFade 0.8s ease-out 0.4s both;
}

/* Font Loading States */
body {
  font-family: var(--font-primary-loading);
  transition: font-family 0.3s ease;
}

.fonts-loaded body {
  font-family: var(--font-primary);
}

.logo {
  font-family: var(--font-script-loading);
  transition: font-family 0.3s ease;
}

.fonts-loaded .logo {
  font-family: var(--font-script);
}

.hero-title,
.features-title,
.modern-cta-title,
.quiz-title,
.upload-title,
.auction-title,
.auth-title {
  font-family: var(--font-heading-loading);
  transition: font-family 0.3s ease;
}

.fonts-loaded .hero-title,
.fonts-loaded .features-title,
.fonts-loaded .modern-cta-title,
.fonts-loaded .quiz-title,
.fonts-loaded .upload-title,
.fonts-loaded .auction-title,
.fonts-loaded .auth-title {
  font-family: var(--font-heading);
}

.fonts-loaded .footer-logo {
  font-family: var(--font-script);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .platform-container {
    flex-direction: column;
  }

  .platform-sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .platform-main {
    margin-left: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .modern-cta-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    flex-direction: row;
    justify-content: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .quiz-card,
  .upload-card,
  .auction-card,
  .auth-card {
    padding: 2rem 1.5rem;
  }

  .quiz-title,
  .upload-title,
  .auction-title,
  .auth-title {
    font-size: 1.8rem;
  }

  .question-text {
    font-size: 1.2rem;
  }

  .upload-notification {
    font-size: 1.2rem;
    padding: 1.5rem;
  }
}

@media (min-width: 480px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .modern-cta-title {
    font-size: 3rem;
  }

  .hero-emoji {
    font-size: 4.5rem;
  }
}

/* Ripple effect for buttons */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Platform Styles - New Design */
.platform-container {
  background: var(--background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.platform-header-main {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(214, 51, 132, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.platform-logo {
  font-family: var(--font-script-loading);
  font-size: 2rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.platform-logo::before {
  content: "👣";
  font-size: 1.6rem;
  color: white;
  margin-right: 0.3rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.platform-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.platform-logo:hover::before {
  animation: wiggle 0.5s ease-in-out;
}

.fonts-loaded .platform-logo {
  font-family: var(--font-script);
}

.platform-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.user-status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.logout-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0.8rem;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Navigation */
.platform-nav {
  background: white;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-light);
  font-weight: 500;
  border-bottom: 3px solid transparent;
}

.nav-item:hover {
  color: var(--primary);
}

.nav-item.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-icon {
  font-size: 1.2rem;
}

.nav-text {
  font-size: 1rem;
}

/* Main Content */
.platform-main {
  flex: 1;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.platform-section {
  display: none;
}

.platform-section.active {
  display: block;
}

/* Earnings Banner */
.earnings-banner {
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.earnings-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate-gradient 20s linear infinite;
}

.earnings-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.earnings-icon {
  font-size: 3rem;
  animation: float-bounce 3s ease-in-out infinite;
}

.earnings-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.earnings-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.earnings-subtitle {
  font-size: 1rem;
  opacity: 0.8;
}

.withdraw-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.withdraw-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Stats Grid Modern */
.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card-modern {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.stat-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 51, 132, 0.15);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-trend {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.stat-trend.positive {
  background: #d4edda;
  color: #155724;
}

.stat-trend.negative {
  background: #f8d7da;
  color: #721c24;
}

.stat-trend.neutral {
  background: #e2e3e5;
  color: #383d41;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Section Styles */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section-actions {
  display: flex;
  gap: 1rem;
}

.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.primary-btn,
.secondary-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.primary-btn {
  background: var(--primary);
  color: white;
}

.primary-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.secondary-btn {
  background: #f8f9fa;
  color: var(--text-dark);
  border: 1px solid #e0e0e0;
}

.secondary-btn:hover {
  background: #e9ecef;
}

/* Activity Section */
.activity-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.activity-icon.success {
  background: #d4edda;
  color: #155724;
}

.activity-icon.info {
  background: #d1ecf1;
  color: #0c5460;
}

.activity-icon.warning {
  background: #fff3cd;
  color: #856404;
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.activity-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.activity-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.activity-amount {
  font-weight: 700;
  color: #28a745;
  font-size: 1.1rem;
}

/* Quick Actions */
.quick-actions {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.action-card {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.action-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 51, 132, 0.15);
}

.action-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.action-title {
  font-weight: 600;
  color: var(--text-dark);
}

.action-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Earnings Chart */
.earnings-chart-container {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.chart-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.earnings-chart {
  display: flex;
  align-items: end;
  gap: 1rem;
  height: 200px;
  margin-bottom: 1rem;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary-light), var(--primary));
  border-radius: 8px 8px 0 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.chart-bar:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.chart-bar.active {
  background: linear-gradient(to top, var(--primary), var(--primary-dark));
}

.bar-value {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.chart-labels {
  display: flex;
  justify-content: space-around;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Transactions */
.transactions-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.transactions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.transaction-item:hover {
  border-color: var(--primary-light);
  background: rgba(214, 51, 132, 0.02);
}

.transaction-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.transaction-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.transaction-title {
  font-weight: 600;
  color: var(--text-dark);
}

.transaction-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

.transaction-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.transaction-amount {
  font-weight: 700;
  font-size: 1.1rem;
}

.transaction-amount.success {
  color: #28a745;
}

.transaction-status {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.transaction-status.completed {
  background: #d4edda;
  color: #155724;
}

/* Content Section */
.content-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.content-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.content-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.content-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(214, 51, 132, 0.15);
}

.content-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-item:hover .content-overlay {
  opacity: 1;
}

.content-action {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.content-action:hover {
  background: rgba(255, 255, 255, 0.3);
}

.content-info {
  padding: 1rem;
}

.content-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.content-earnings {
  color: #28a745;
  font-weight: 700;
}

.add-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 280px;
  border: 2px dashed var(--primary);
  background: rgba(214, 51, 132, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-content:hover {
  background: rgba(214, 51, 132, 0.1);
  transform: none;
}

.add-content-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.add-content-text {
  color: var(--primary);
  font-weight: 600;
}

/* Messages Section */
.message-filter {
  display: flex;
  gap: 1rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.messages-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.message-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.message-item:hover {
  background: #f8f9fa;
}

.message-item.unread {
  background: rgba(214, 51, 132, 0.05);
  border-left: 4px solid var(--primary);
}

.message-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.message-content {
  flex: 1;
}

.message-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.message-sender {
  font-weight: 600;
  color: var(--text-dark);
}

.message-time {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.vip-badge {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

.message-preview {
  color: var(--text-light);
  line-height: 1.4;
}

.message-actions {
  display: flex;
  gap: 0.5rem;
}

.message-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.message-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Profile Section */
.profile-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

.profile-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.profile-header {
  text-align: center;
  margin-bottom: 2rem;
}

.profile-avatar-large {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.profile-title {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.profile-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stars {
  font-size: 1.2rem;
}

.rating-text {
  color: var(--text-light);
  font-size: 0.9rem;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f0;
}

.profile-stat {
  text-align: center;
}

.profile-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.3rem;
}

.profile-stat .stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-section {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-light);
  font-weight: 500;
}

.detail-value {
  color: var(--text-dark);
  font-weight: 600;
}

.status-active {
  color: #28a745;
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.payment-icon {
  font-size: 1.5rem;
}

.payment-details {
  flex: 1;
}

.payment-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.payment-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

.edit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.edit-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Enhanced VIP Modal */
.vip-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.vip-modal.active {
  opacity: 1;
  visibility: visible;
}

.vip-modal-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

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

.vip-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color 0.3s ease;
}

.vip-modal-close:hover {
  color: var(--text-dark);
}

.vip-header {
  margin-bottom: 2rem;
}

.vip-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: float-bounce 3s ease-in-out infinite;
}

.vip-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.vip-subtitle {
  color: var(--text-light);
  font-size: 1rem;
}

.vip-modal-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #28a745;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: #28a745;
}

.price-period {
  font-size: 1.2rem;
  color: var(--text-light);
}

.vip-modal-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.vip-modal-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.vip-modal-features li:last-child {
  border-bottom: none;
}

.vip-upgrade-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.vip-upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.vip-guarantee {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
}

/* Upload Modal */
.upload-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.upload-modal.active {
  opacity: 1;
  visibility: visible;
}

.upload-modal-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

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

.upload-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

.upload-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.upload-zone-modal {
  border: 2px dashed var(--primary);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  background: rgba(214, 51, 132, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.upload-zone-modal:hover {
  background: rgba(214, 51, 132, 0.1);
  border-color: var(--primary-dark);
}

.upload-tips-modal {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.upload-tips-modal h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.upload-tips-modal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.upload-tips-modal li {
  color: var(--text-light);
  padding: 0.3rem 0;
}

.upload-submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.upload-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Mobile Responsive for Platform */
@media (max-width: 768px) {
  .platform-header-content {
    padding: 0 1rem;
  }

  .platform-nav {
    padding: 0 1rem;
  }

  .nav-container {
    gap: 1rem;
  }

  .nav-text {
    display: none;
  }

  .platform-main {
    padding: 1rem;
  }

  .earnings-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-container {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-grid-modern {
    grid-template-columns: 1fr;
  }

  .actions-grid {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .earnings-chart {
    gap: 0.5rem;
  }

  .user-details {
    display: none;
  }
}

/* Adicione o estilo para o estado vazio */
.empty-state {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-style: italic;
}
