/* ============== BASE STYLES ============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-50: #FFFEF0;
  --primary-100: #FFFACC;
  --primary-200: #FFF599;
  --primary-300: #FFEF66;
  --primary-400: #FFEA33;
  --primary-500: #FFE500;
  --primary-600: #CCB700;
  --primary-700: #998A00;
  --primary-800: #665C00;
  --primary-900: #332E00;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --green-500: #10B981;
  --green-600: #059669;
  --red-500: #EF4444;
  --red-600: #DC2626;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--gray-50);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* ============== LAYOUT ============== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr;
  }
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-900);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-center { text-align: center; }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-primary-600 { color: var(--primary-600); }
.text-green-600 { color: var(--green-600); }
.text-red-500 { color: var(--red-500); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ============== SPACING ============== */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* ============== PUBLIC HEADER ============== */
.header {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-500);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i, .logo-svg {
  width: 20px;
  height: 20px;
  color: var(--gray-900);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0;
  position: relative;
}

.nav a:hover {
  color: var(--gray-900);
}

.nav a.active {
  color: var(--gray-900);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-500);
  border-radius: 1px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: var(--gray-50);
}

.mobile-menu a i {
  width: 20px;
  height: 20px;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--primary-500);
  color: var(--gray-900);
}

.btn-primary:hover {
  background: var(--primary-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 229, 0, 0.3);
}

.btn-secondary {
  background: var(--gray-900);
  color: white;
}

.btn-secondary:hover {
  background: var(--gray-800);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
}

.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}

.btn-ghost:hover {
  background: var(--gray-100);
}

.btn-success {
  background: var(--green-500);
  color: white;
}

.btn-success:hover {
  background: var(--green-600);
}

.btn-danger {
  background: var(--red-500);
  color: white;
}

.btn-danger:hover {
  background: var(--red-600);
}

.btn-sm {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============== CARDS ============== */
.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.card:hover {
  border-color: var(--gray-300);
}

.card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-900);
}

.card-title i {
  width: 20px;
  height: 20px;
  color: var(--gray-500);
}

.card-content {
  padding: 1.25rem;
}

.card-highlight {
  border-left: 4px solid var(--primary-500);
}

/* ============== FORMS ============== */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 0.5rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-helper {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ============== BADGES ============== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.badge i {
  width: 12px;
  height: 12px;
}

.badge-primary {
  background: var(--primary-100);
  color: var(--primary-800);
}

.badge-success {
  background: #D1FAE5;
  color: #065F46;
}

.badge-warning {
  background: #FEF3C7;
  color: #92400E;
}

.badge-error {
  background: #FEE2E2;
  color: #991B1B;
}

.badge-gray {
  background: var(--gray-100);
  color: var(--gray-700);
}

.badge-outline {
  background: transparent;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
}

/* ============== ALERTS ============== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 0.625rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.alert i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.alert-warning {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.alert-info {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

/* ============== DASHBOARD SIDEBAR ============== */
.dashboard-body {
  background: var(--gray-50);
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: white;
  border-right: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 200;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  }
}

.sidebar-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.sidebar-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-logo-icon i {
  width: 20px;
  height: 20px;
  color: var(--gray-900);
}

.sidebar-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  border-radius: 0.375rem;
}

.sidebar-close:hover {
  background: var(--gray-100);
}

@media (max-width: 1024px) {
  .sidebar-close {
    display: flex;
  }
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.sidebar-nav-section {
  padding: 0 0.75rem;
  margin-bottom: 0.5rem;
}

.sidebar-nav-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  padding: 0.75rem 0.75rem 0.5rem;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  margin-bottom: 0.125rem;
}

.sidebar-nav-item i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-nav-item span {
  flex: 1;
}

.sidebar-nav-item:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.sidebar-nav-item.active {
  background: var(--primary-50);
  color: var(--primary-700);
}

.sidebar-nav-item.active i {
  color: var(--primary-600);
}

.sidebar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
  font-size: 0.625rem;
  padding: 0.125rem 0.375rem;
  border-radius: 9999px;
  font-weight: 600;
}

.sidebar-badge.xp-locked {
  background: var(--gray-100);
  color: var(--gray-500);
}

.sidebar-footer {
  padding: 0.75rem;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 0.625rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--gray-200);
}

.sidebar-user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user-name {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-xp {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--primary-700);
  font-weight: 600;
}

.sidebar-logout {
  width: 100%;
  justify-content: center;
}

/* Sidebar Overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.open {
  display: block;
  opacity: 1;
}

/* Dashboard Content */
.dashboard-content {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .dashboard-content {
    margin-left: 0;
  }
}

.dashboard-topbar {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.sidebar-toggle:hover {
  background: var(--gray-100);
}

.sidebar-toggle i {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .sidebar-toggle {
    display: flex;
  }
}

.topbar-breadcrumb {
  flex: 1;
  font-weight: 600;
  color: var(--gray-700);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-xp {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: var(--primary-50);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-700);
}

.topbar-xp i {
  width: 16px;
  height: 16px;
  color: var(--primary-600);
}

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

.topbar-user .user-avatar {
  width: 36px;
  height: 36px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-900);
}

.dashboard-main-content {
  flex: 1;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .dashboard-main-content {
    padding: 2rem;
  }
}

/* ============== DASHBOARD SECTIONS ============== */
.dashboard-header {
  margin-bottom: 1.5rem;
}

.dashboard-header h1 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .dashboard-header h1 {
    font-size: 1.75rem;
  }
}

.dashboard-header p {
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr 320px;
  }
}

.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ============== STATS GRID ============== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  padding: 1.25rem;
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.stat-icon i {
  width: 24px;
  height: 24px;
}

.stat-icon-primary { background: var(--primary-100); color: var(--primary-600); }
.stat-icon-orange { background: #FFEDD5; color: #EA580C; }
.stat-icon-green { background: #D1FAE5; color: #059669; }
.stat-icon-purple { background: #EDE9FE; color: #7C3AED; }
.stat-icon-blue { background: #DBEAFE; color: #2563EB; }

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

/* ============== LIST ITEMS ============== */
.list-item {
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.list-item:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.list-item:last-child {
  margin-bottom: 0;
}

.list-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.list-item h4 {
  font-size: 1rem;
  font-weight: 600;
}

.list-item p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.list-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.list-item-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.list-item-meta i {
  width: 14px;
  height: 14px;
}

.list-item-actions {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

/* ============== BOUNTY CARDS ============== */
.bounty-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.bounty-card:hover {
  border-color: var(--primary-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.bounty-card-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}

.bounty-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bounty-card-reward {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--green-500);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.bounty-card-content {
  padding: 1.25rem;
}

.bounty-card-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.bounty-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.bounty-meta-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.bounty-meta-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bounty-meta-value i {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
}

.bounty-countdown {
  background: var(--gray-50);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  margin-top: 1rem;
}

.bounty-countdown-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.bounty-countdown-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  font-variant-numeric: tabular-nums;
}

.bounty-card-footer {
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

/* ============== PROGRESS BAR ============== */
.progress {
  height: 8px;
  background: var(--gray-200);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--primary-500);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

.progress-sm {
  height: 6px;
}

/* ============== XP REQUIREMENT BANNER ============== */
.xp-requirement-banner {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border: 1px solid #FCD34D;
  border-radius: 0.875rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.xp-requirement-icon {
  width: 52px;
  height: 52px;
  background: #FBBF24;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.xp-requirement-icon i {
  width: 28px;
  height: 28px;
  color: white;
}

.xp-requirement-text {
  flex: 1;
}

.xp-requirement-text h4 {
  margin: 0 0 0.25rem;
  color: #92400E;
  font-size: 1rem;
}

.xp-requirement-text p {
  margin: 0;
  font-size: 0.875rem;
  color: #B45309;
}

.xp-progress-mini {
  margin-top: 0.75rem;
}

.xp-progress-mini .progress {
  height: 6px;
  background: rgba(255,255,255,0.5);
}

.xp-progress-mini .progress-bar {
  background: #F59E0B;
}

.xp-progress-mini span {
  display: block;
  font-size: 0.75rem;
  color: #92400E;
  margin-top: 0.375rem;
  font-weight: 500;
}

/* ============== GUIDE CARD ============== */
.guide-card {
  background: linear-gradient(135deg, var(--primary-50), white);
  border: 2px dashed var(--primary-300);
}

.guide-steps {
  counter-reset: guide-step;
}

.guide-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.guide-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guide-step:first-child {
  padding-top: 0;
}

.guide-step-number {
  width: 32px;
  height: 32px;
  background: var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: var(--gray-900);
}

.guide-step-content h4 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
}

.guide-step-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ============== QUICK LINKS ============== */
.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.quick-links a:last-child {
  margin-bottom: 0;
}

.quick-links a:hover {
  background: var(--gray-100);
  transform: translateX(4px);
}

.quick-links a i {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}

/* ============== MILESTONES ============== */
.milestone {
  margin-bottom: 1rem;
}

.milestone:last-child {
  margin-bottom: 0;
}

.milestone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.milestone-label {
  color: var(--gray-700);
  font-weight: 500;
}

.milestone-value {
  color: var(--gray-500);
  font-weight: 600;
}

.milestone-value.achieved {
  color: var(--green-600);
}

/* ============== REFERRAL CARD ============== */
.referral-card {
  background: linear-gradient(135deg, var(--primary-50), white);
  border-color: var(--primary-200);
}

.referral-code {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.referral-code input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: monospace;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  font-weight: 600;
  color: var(--gray-900);
}

/* ============== SPACE ITEMS ============== */
.space-item {
  padding: 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.space-item:last-child {
  margin-bottom: 0;
}

.space-item:hover {
  border-color: var(--primary-300);
}

.space-item h4 {
  margin-bottom: 0.375rem;
  font-size: 1rem;
}

.space-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.space-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ============== VERIFY PAGE ============== */
.verify-steps {
  counter-reset: step;
}

.verify-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.verify-step:last-child {
  border-bottom: none;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  color: var(--gray-900);
}

.step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.verify-confirmation {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
}

.verify-confirmation label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.verify-confirmation input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary-500);
}

.verify-confirmation-text {
  font-size: 0.875rem;
  color: #92400E;
}

.verify-confirmation-text strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* ============== AUTH PAGES ============== */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-50), white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-container {
  width: 100%;
  max-width: 420px;
}

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

.auth-header h1 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--gray-600);
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray-600);
}

.auth-footer a {
  color: var(--primary-700);
  font-weight: 600;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0 1.5rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer a {
  display: block;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* ============== HERO SECTION ============== */
.hero {
  background: linear-gradient(135deg, var(--primary-50), white);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ============== FEATURES ============== */
.features {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .features {
    padding: 6rem 0;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  width: 32px;
  height: 32px;
  color: var(--primary-700);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* ============== TABLES ============== */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.table th,
.table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.table th {
  background: var(--gray-50);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.table tr:hover td {
  background: var(--gray-50);
}

/* ============== ADMIN DASHBOARD ============== */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .admin-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.admin-stat {
  background: white;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
}

.admin-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
}

.admin-stat-label {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ============== CRAZY ANIMATIONS ============== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px var(--primary-300); }
  50% { box-shadow: 0 0 20px var(--primary-400), 0 0 30px var(--primary-300); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

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

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.1); }
  28% { transform: scale(1); }
  42% { transform: scale(1.1); }
  70% { transform: scale(1); }
}

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

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  70% { transform: scale(1.1) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes slideInBounce {
  0% { opacity: 0; transform: translateY(50px); }
  60% { opacity: 1; transform: translateY(-10px); }
  80% { transform: translateY(5px); }
  100% { transform: translateY(0); }
}

@keyframes flipIn {
  from { opacity: 0; transform: perspective(400px) rotateX(-90deg); }
  to { opacity: 1; transform: perspective(400px) rotateX(0); }
}

@keyframes zoomInRotate {
  from { opacity: 0; transform: scale(0.5) rotate(-180deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-up {
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-left {
  animation: slideInLeft 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.scale-in {
  animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.pop-in {
  animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.slide-in-bounce {
  animation: slideInBounce 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.flip-in {
  animation: flipIn 0.6s ease-out forwards;
}

.zoom-in-rotate {
  animation: zoomInRotate 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

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

.animate-shake {
  animation: shake 0.5s ease-in-out;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite;
}

.animate-wiggle {
  animation: wiggle 0.5s ease-in-out infinite;
}

/* Shimmer effect for loading states */
.shimmer {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Gradient flow background */
.gradient-flow {
  background: linear-gradient(-45deg, var(--primary-400), var(--primary-500), var(--primary-300), var(--primary-600));
  background-size: 400% 400%;
  animation: gradientFlow 5s ease infinite;
}

/* Stagger delays - more options */
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }
.stagger-5 { animation-delay: 0.25s; }
.stagger-6 { animation-delay: 0.3s; }
.stagger-7 { animation-delay: 0.35s; }
.stagger-8 { animation-delay: 0.4s; }

/* Initially hidden for animation */
.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.visible {
  opacity: 1;
}

/* ============== TRANSITIONS ============== */
/* Base transition for all interactive elements */
* {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Specific transitions */
.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-fast {
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-slow {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-bounce {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============== HOVER EFFECTS ============== */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hover-scale {
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow:hover {
  box-shadow: 0 0 20px var(--primary-400), 0 0 40px rgba(255, 229, 0, 0.3);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

.hover-shake:hover {
  animation: shake 0.5s ease-in-out;
}

.hover-bounce:hover {
  animation: bounceIn 0.5s ease;
}

.hover-wiggle:hover {
  animation: wiggle 0.3s ease-in-out;
}

/* Card hover effects */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Button hover effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 5px 20px rgba(255, 229, 0, 0.4);
}

/* Icon animations */
.icon-spin:hover i {
  animation: spin 0.5s ease-in-out;
}

.icon-bounce:hover i {
  animation: bounceIn 0.5s ease;
}

.icon-wiggle:hover i {
  animation: wiggle 0.3s ease-in-out;
}

/* Input focus effects */
.form-input {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
  transform: scale(1.01);
  box-shadow: 0 0 0 4px rgba(255, 229, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Badge animations */
.badge {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.badge:hover {
  transform: scale(1.1);
}

/* Sidebar link animations */
.sidebar-nav-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-nav-item:hover {
  transform: translateX(5px);
}

.sidebar-nav-item.active {
  animation: slideInLeft 0.3s ease-out;
}

/* Progress bar animation */
.progress-bar {
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  animation: shimmer 2s infinite;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-400) 50%, var(--primary-500) 100%);
  background-size: 200% 100%;
}

/* Countdown animation */
.countdown-value {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.countdown-value.tick {
  animation: popIn 0.3s ease-out;
}

/* Alert animations */
.alert {
  animation: slideInBounce 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal/overlay animations */
.modal-overlay {
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  animation: scaleIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Stat card animations */
.stat-card {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-card:hover .stat-icon {
  animation: bounceIn 0.5s ease;
}

.stat-card:hover .stat-value {
  animation: pulse 1s ease-in-out infinite;
}

/* Feature card hover */
.feature-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card:hover .feature-icon {
  animation: float 1.5s ease-in-out infinite;
  background: var(--primary-500);
}

.feature-card:hover .feature-icon i {
  color: var(--gray-900);
}

/* Bounty card hover */
.bounty-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bounty-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--primary-500);
  box-shadow: 0 15px 35px rgba(255, 229, 0, 0.2);
}

/* Creator card hover */
.creator-card:hover .creator-avatar {
  animation: heartbeat 1s ease-in-out infinite;
}

/* Step card hover */
.step-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-card:hover .step-icon {
  animation: float 2s ease-in-out infinite;
  background: var(--primary-500);
}

.step-card:hover .step-number {
  animation: pulse 1s ease-in-out infinite;
}

/* XP method hover */
.xp-method {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.xp-method:hover {
  transform: translateX(5px);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.xp-method:hover .xp-method-icon {
  animation: wiggle 0.5s ease-in-out;
}

/* Hero section animations */
.hero-content {
  animation: slideInBounce 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge {
  animation: bounceIn 0.6s 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
}

.hero h1 {
  animation: slideInUp 0.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero p {
  animation: slideInUp 0.6s 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-buttons {
  animation: slideInUp 0.6s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* CTA section animation */
.cta-icon {
  animation: float 3s ease-in-out infinite;
}

.cta-section:hover .cta-icon {
  animation: heartbeat 1s ease-in-out infinite;
}

/* Logo hover */
.logo:hover .logo-icon {
  animation: wiggle 0.5s ease-in-out;
}

/* Mobile menu animation */
.mobile-menu {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  animation: slideDown 0.3s ease-out;
}

.mobile-menu a {
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  transform: translateX(10px);
  background: var(--primary-100);
}

/* Sidebar animation */
.sidebar {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-overlay {
  transition: opacity 0.3s ease;
}

/* Quick links hover */
.quick-links a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-links a:hover {
  transform: translateX(5px);
  background: var(--gray-50);
  padding-left: 1.25rem;
}

/* Referral code copy animation */
.referral-code button:active {
  animation: popIn 0.3s ease;
}

/* Verify step animations */
.verify-step {
  animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.verify-progress-step {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.verify-progress-step.completed {
  animation: bounceIn 0.5s ease;
}

.verify-progress-line {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Checkin button animation */
.checkin-card .btn:hover {
  animation: pulse 1s ease-in-out infinite;
}

/* Submission item hover */
.submission-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.submission-item:hover {
  transform: translateX(5px);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Winner item animation */
.winner-item {
  transition: all 0.3s ease;
}

.winner-item:hover {
  transform: scale(1.02);
}

.winner-item:hover .winner-rank {
  animation: heartbeat 1s ease-in-out infinite;
}

/* Admin action card */
.admin-action-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-action-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.admin-action-card:hover .admin-action-icon {
  animation: bounceIn 0.5s ease;
  background: var(--primary-500);
}

/* Tooltip animation (if needed) */
.tooltip {
  animation: fadeIn 0.2s ease-out;
}

/* Loading spinner */
.loading-spinner {
  animation: spin 1s linear infinite;
}

/* Scroll indicator animation */
.scroll-indicator {
  animation: float 2s ease-in-out infinite;
}

/* Notification badge pulse */
.notification-badge {
  animation: pulse 2s ease-in-out infinite;
}

/* Success checkmark animation */
.success-check {
  animation: zoomInRotate 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============== UTILITIES ============== */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.w-full { width: 100%; }
.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 0.75rem; }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cursor-pointer { cursor: pointer; }

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Icon sizing */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* ============== PAGE HEADER ============== */
.page-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-header-content h1 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-header-content h1 i {
  width: 32px;
  height: 32px;
  color: var(--primary-600);
}

.page-header-content p {
  color: var(--gray-500);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .page-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============== SECTION HEADER ============== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-header h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.section-header h2 i {
  width: 20px;
  height: 20px;
  color: var(--primary-600);
}

/* ============== BOUNTY GRID ============== */
.bounty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.bounty-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.bounty-card:hover {
  border-color: var(--primary-400);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bounty-card.completed {
  opacity: 0.7;
}

.bounty-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bounty-card-reward {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--green-600);
}

.bounty-card-reward i {
  width: 16px;
  height: 16px;
}

.bounty-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.bounty-card-desc {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.bounty-card-countdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--primary-50);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.bounty-card-countdown i {
  width: 16px;
  height: 16px;
  color: var(--primary-700);
}

.bounty-card-countdown .countdown-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-700);
}

.bounty-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.bounty-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bounty-card-meta i {
  width: 14px;
  height: 14px;
}

.bounty-card-winners {
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.bounty-card-winners .winners-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.bounty-card-winners .winners-label i {
  width: 14px;
  height: 14px;
  color: var(--primary-600);
}

.winners-list-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.winner-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.winner-badge.gold {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

.winner-badge.silver {
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
  color: #374151;
}

.winner-badge.bronze {
  background: linear-gradient(135deg, #FED7AA, #FDBA74);
  color: #9A3412;
}

.bounty-card-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

/* ============== BOUNTY DETAIL PAGE ============== */
.bounty-detail-header {
  margin-bottom: 2rem;
}

.bounty-detail-status {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.bounty-detail-status .badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bounty-detail-status .badge i {
  width: 14px;
  height: 14px;
}

.bounty-detail-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.bounty-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--gray-500);
}

.bounty-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bounty-detail-meta i {
  width: 16px;
  height: 16px;
}

.bounty-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .bounty-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.bounty-detail-main,
.bounty-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bounty-description {
  white-space: pre-wrap;
  line-height: 1.7;
  color: var(--gray-700);
}

/* Reward Distribution */
.reward-distribution {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reward-tier {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.reward-tier-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reward-tier-icon i {
  width: 24px;
  height: 24px;
}

.reward-tier-icon.gold {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

.reward-tier-icon.silver {
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
  color: #374151;
}

.reward-tier-icon.bronze {
  background: linear-gradient(135deg, #FED7AA, #FDBA74);
  color: #9A3412;
}

.reward-tier-info {
  display: flex;
  flex-direction: column;
}

.reward-tier-label {
  font-weight: 600;
  color: var(--gray-800);
}

.reward-tier-amount {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Countdown Card */
.bounty-countdown-card {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  color: var(--gray-900);
}

.countdown-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.countdown-header i {
  width: 20px;
  height: 20px;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.countdown-item {
  text-align: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
}

.countdown-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.countdown-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

.countdown-deadline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

.countdown-deadline i {
  width: 14px;
  height: 14px;
}

.countdown-ended {
  text-align: center;
  padding: 1rem;
}

.countdown-ended i {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.countdown-ended span {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.countdown-ended p {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Submit Card */
.submit-status {
  text-align: center;
  padding: 1.5rem;
}

.submit-status i {
  width: 48px;
  height: 48px;
  color: var(--green-500);
  margin-bottom: 0.5rem;
}

.submit-status.submitted {
  background: var(--green-500);
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  border-radius: 0.75rem;
}

.submit-status.submitted i {
  color: var(--green-600);
}

.submit-status span {
  display: block;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 0.25rem;
}

.submit-status p {
  font-size: 0.875rem;
  color: var(--green-600);
}

.submit-locked {
  text-align: center;
  padding: 1rem;
}

.submit-locked-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.submit-locked-icon i {
  width: 28px;
  height: 28px;
  color: var(--gray-400);
}

.submit-locked h4 {
  margin-bottom: 0.25rem;
}

.submit-locked p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.xp-progress-card {
  max-width: 200px;
  margin: 0 auto;
}

.xp-progress-card .progress {
  margin-bottom: 0.5rem;
}

.xp-progress-card span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Requirements List */
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.requirements-list li:last-child {
  border-bottom: none;
}

.requirements-list li i {
  width: 16px;
  height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.requirements-list li span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Bounty Stats */
.bounty-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.bounty-stat {
  text-align: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
}

.bounty-stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.bounty-stat-label {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Winners List */
.winners-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.winner-rank {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.winner-rank.gold {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

.winner-rank.silver {
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
  color: #374151;
}

.winner-rank.bronze {
  background: linear-gradient(135deg, #FED7AA, #FDBA74);
  color: #9A3412;
}

.winner-info {
  flex: 1;
}

.winner-name {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.winner-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary-600);
}

.winner-link i {
  width: 14px;
  height: 14px;
}

/* Submissions List */
.submissions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.submission-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.submission-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.submission-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary-700);
}

.submission-username {
  font-weight: 500;
  display: block;
}

.submission-date {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ============== XP METHODS GRID ============== */
.xp-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.xp-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.xp-method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xp-method-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary-700);
}

.xp-method-info h4 {
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.xp-method-reward {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-600);
}

/* ============== CONTEST GRID ============== */
.contest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.contest-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.contest-card:hover {
  border-color: var(--primary-400);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contest-card-header {
  margin-bottom: 1rem;
}

.contest-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contest-card-desc {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contest-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contest-prize, .contest-deadline {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contest-prize i, .contest-deadline i {
  width: 16px;
  height: 16px;
}

.contest-prize {
  font-weight: 600;
  color: var(--green-600);
}

/* Tips Grid */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tip-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.tip-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tip-icon i {
  width: 20px;
  height: 20px;
  color: var(--primary-700);
}

.tip-content h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.tip-content p {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ============== JOBS LIST ============== */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.job-card:hover {
  border-color: var(--primary-400);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.job-meta span i {
  width: 14px;
  height: 14px;
}

.job-reward {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: var(--green-500);
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
}

.job-reward i {
  width: 16px;
  height: 16px;
}

.job-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.job-requirements {
  margin-bottom: 1.5rem;
}

.job-requirements h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.job-requirements h4 i {
  width: 16px;
  height: 16px;
}

.job-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-requirements li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  padding: 0.375rem 0;
}

.job-requirements li i {
  width: 14px;
  height: 14px;
  color: var(--green-500);
}

.job-footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.job-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.job-stats span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
}

.job-stats span i {
  width: 14px;
  height: 14px;
}

.job-stats span.unlocked {
  color: var(--green-600);
}

.job-stats span.locked {
  color: var(--gray-400);
}

.job-applied {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.application-status {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.job-apply-form {
  padding-top: 1rem;
}

.job-locked {
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.locked-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.locked-notice i {
  width: 24px;
  height: 24px;
  color: var(--gray-400);
}

.locked-notice p {
  font-weight: 500;
  margin: 0;
}

.locked-notice span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Locked State */
.locked-state {
  text-align: center;
  padding: 2rem;
}

.locked-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.locked-icon i {
  width: 36px;
  height: 36px;
  color: var(--gray-400);
}

.locked-state h3 {
  margin-bottom: 0.5rem;
}

.locked-state p {
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.locked-state .xp-progress-card {
  max-width: 280px;
}

/* ============== ARTICLE ITEM ============== */
.article-item {
  padding: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}

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

.article-item.featured {
  border-left: 4px solid var(--primary-500);
  background: var(--primary-50);
  border-bottom: none;
  margin-bottom: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.article-header h4 {
  font-size: 1rem;
}

.article-item p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.article-meta span i {
  width: 14px;
  height: 14px;
}

/* ============== CREATORS GRID ============== */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.creator-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.creator-card:hover {
  border-color: var(--primary-400);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.creator-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-700);
}

.creator-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.creator-bio {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.creator-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.creator-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.creator-followers {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.creator-followers i {
  width: 14px;
  height: 14px;
}

/* Search Form */
.search-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-input-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}

.search-input-wrapper .form-input {
  padding-left: 2.75rem;
}

/* Guide Steps */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guide-step {
  display: flex;
  gap: 1rem;
}

.guide-step-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.guide-step-icon.completed {
  background: var(--green-500);
  color: white;
}

.guide-step-icon.completed i {
  width: 20px;
  height: 20px;
}

.guide-step-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.guide-step-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.tip-banner {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: #FEF3C7;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}

.tip-banner i {
  width: 20px;
  height: 20px;
  color: #92400E;
  flex-shrink: 0;
}

.tip-banner p {
  font-size: 0.875rem;
  color: #92400E;
  margin: 0;
}

/* Profile Preview */
.profile-preview {
  text-align: center;
}

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

.profile-preview h4 {
  margin-bottom: 0.5rem;
}

.profile-preview p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.profile-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

/* Tips List */
.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.tips-list li i {
  width: 14px;
  height: 14px;
  color: var(--green-500);
}

/* Guidelines List */
.guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guidelines-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.guidelines-list li i {
  width: 14px;
  height: 14px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============== PROFILE PAGE ============== */
.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}

.input-with-icon .form-input {
  padding-left: 2.75rem;
}

.input-with-prefix {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 1rem;
  color: var(--gray-400);
  font-size: 1rem;
}

.input-with-prefix .form-input {
  padding-left: 2rem;
}

.form-hint {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.375rem;
}

.form-hint i {
  width: 14px;
  height: 14px;
}

.form-hint.verified {
  color: var(--green-600);
}

.form-hint.warning {
  color: #D97706;
}

.form-hint.warning a {
  color: var(--primary-600);
  font-weight: 500;
}

/* Activity List */
.activity-list {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.activity-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.activity-info i {
  width: 20px;
  height: 20px;
  color: var(--primary-500);
}

.activity-action {
  font-weight: 500;
  margin: 0 0 0.125rem;
}

.activity-date {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Profile Card Header */
.profile-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.profile-avatar-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-700);
  margin: 0 auto 0.75rem;
}

.profile-card-header h3 {
  margin-bottom: 0.25rem;
}

.profile-card-header p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Profile Stats Grid */
.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.profile-stat {
  text-align: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
}

.profile-stat i {
  width: 20px;
  height: 20px;
  color: var(--primary-500);
  margin-bottom: 0.25rem;
}

.profile-stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.profile-stat-label {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
}

/* Referral Display */
.referral-display {
  background: var(--gray-100);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.referral-display code {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
}

.referral-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

.referral-hint i {
  width: 14px;
  height: 14px;
}

/* Badges Grid */
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Danger Card */
.card-danger {
  border-color: #FCA5A5;
}

.card-danger .card-header {
  background: #FEF2F2;
}

.card-danger .card-title {
  color: #B91C1C;
}

.card-danger .card-title i {
  color: #DC2626;
}

.card-danger .card-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.btn-danger {
  background: #EF4444;
  color: white;
}

.btn-danger:hover {
  background: #DC2626;
}

/* Success Button */
.btn-success {
  background: var(--green-500);
  color: white;
}

.btn-success:hover {
  background: var(--green-600);
}

/* ============== VERIFY PAGE ============== */
.auth-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.auth-icon i {
  width: 36px;
  height: 36px;
  color: var(--primary-700);
}

/* Verify Progress */
.verify-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.verify-progress-step {
  width: 48px;
  height: 48px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--gray-500);
  transition: all 0.3s ease;
}

.verify-progress-step.active {
  background: var(--primary-500);
  color: var(--gray-900);
}

.verify-progress-step.completed {
  background: var(--green-500);
  color: white;
}

.verify-progress-step.completed i {
  width: 24px;
  height: 24px;
}

.verify-progress-line {
  width: 60px;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.verify-progress-line.completed {
  background: var(--green-500);
}

/* Verify Steps */
.verify-steps {
  margin-bottom: 1.5rem;
}

.verify-step {
  display: none;
  gap: 1.25rem;
}

.verify-step.active {
  display: flex;
}

.verify-step-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.verify-step-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary-700);
}

.verify-step-icon.success {
  background: #D1FAE5;
}

.verify-step-icon.success i {
  color: var(--green-600);
}

.verify-step-content {
  flex: 1;
}

.verify-step-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.verify-step-content p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Verify Confirmation */
.verify-confirmation {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.checkbox-custom i {
  width: 14px;
  height: 14px;
  opacity: 0;
  color: white;
  transition: opacity 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--green-500);
  border-color: var(--green-500);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom i {
  opacity: 1;
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* Verify Actions */
.verify-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.verify-actions .btn {
  flex: 1;
}

.verify-actions .btn-ghost {
  flex: 0;
}

/* Verify Summary */
.verify-summary {
  background: var(--gray-50);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.verify-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.verify-summary-label {
  color: var(--gray-600);
}

.verify-summary-value {
  font-weight: 600;
}

/* Success Outline Button */
.btn-success-outline {
  background: #D1FAE5;
  border-color: var(--green-500);
  color: #065F46;
}

/* ============== ADMIN STYLES ============== */
.admin-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .admin-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-actions-grid {
    grid-template-columns: 1fr;
  }
}

.admin-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.admin-action-card:hover {
  background: white;
  border-color: var(--primary-400);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.admin-action-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.admin-action-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary-700);
}

.admin-action-card h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

/* Users List */
.users-list {
  display: flex;
  flex-direction: column;
}

.user-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

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

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

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

.user-name {
  font-weight: 500;
  margin: 0 0 0.125rem;
}

.user-email {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin: 0;
}

.user-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.user-xp {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.user-xp i {
  width: 12px;
  height: 12px;
}

/* Status List */
.status-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
}

.status-item span:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.status-item span:first-child i {
  width: 16px;
  height: 16px;
  color: var(--gray-500);
}

/* Pending List */
.pending-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pending-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.pending-item:hover {
  background: var(--gray-100);
}

.pending-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pending-info i {
  width: 16px;
  height: 16px;
  color: var(--gray-500);
}

.pending-info span {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Messages List */
.messages-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.message-item {
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 0.5rem;
}

.message-sender {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.message-sender i {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
}

.message-subject {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0 0 0.25rem;
}

.message-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin: 0;
}

.message-date i {
  width: 12px;
  height: 12px;
}

/* ============== CHECKIN CARD ============== */
.checkin-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .checkin-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.checkin-info {
  display: flex;
  gap: 1rem;
}

.checkin-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkin-icon i {
  width: 24px;
  height: 24px;
  color: var(--primary-700);
}

.checkin-info h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.checkin-info p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.checkin-last {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.checkin-last i {
  width: 14px;
  height: 14px;
}

/* ============== SPACE ITEM ============== */
.space-item {
  padding: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}

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

.space-item.past {
  opacity: 0.7;
}

.space-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.space-header h4 {
  font-size: 1rem;
}

.space-item p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.space-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.space-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.space-meta span i {
  width: 14px;
  height: 14px;
}

.space-actions {
  margin-top: 0.75rem;
}

/* ============== EMPTY STATES ============== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
}

.empty-state i {
  width: 64px;
  height: 64px;
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.empty-state h3 {
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--gray-500);
}

.empty-state-sm {
  text-align: center;
  padding: 2rem;
}

.empty-state-sm i {
  width: 48px;
  height: 48px;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
}

.empty-state-sm h4 {
  margin-bottom: 0.25rem;
  color: var(--gray-600);
}

.empty-state-sm p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* ============== HOME PAGE ============== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 229, 0, 0.2);
  border: 1px solid var(--primary-400);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-badge i {
  width: 16px;
  height: 16px;
  color: var(--primary-700);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-800);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.step-card {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--gray-50);
  border-radius: 1rem;
  transition: all 0.2s ease;
}

.step-card:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-900);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary-700);
}

.step-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cta-icon i {
  width: 40px;
  height: 40px;
  color: var(--gray-900);
}

.cta-section h2 {
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

/* Feature Card Icons */
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary-700);
}

/* Stat Icon */
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.stat-icon i {
  width: 24px;
  height: 24px;
}

.stat-icon-primary {
  background: var(--primary-100);
  color: var(--primary-700);
}

.stat-icon-primary i {
  color: var(--primary-700);
}

.stat-icon-orange {
  background: #FED7AA;
  color: #EA580C;
}

.stat-icon-orange i {
  color: #EA580C;
}

.stat-icon-green {
  background: #D1FAE5;
  color: #059669;
}

.stat-icon-green i {
  color: #059669;
}

.stat-icon-purple {
  background: #EDE9FE;
  color: #7C3AED;
}

.stat-icon-purple i {
  color: #7C3AED;
}

/* ============== MODAL STYLES ============== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

.modal-content {
  background: white;
  border-radius: 1rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-content.scale-in {
  animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.modal-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  margin: 0;
}

.modal-header h3 i {
  width: 20px;
  height: 20px;
  color: var(--primary-600);
}

.modal-close {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--gray-200);
  transform: rotate(90deg);
}

.modal-close i {
  width: 18px;
  height: 18px;
  color: var(--gray-600);
}

.modal-body {
  padding: 1.5rem;
}

.modal-space-title {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

/* Proof Options */
.proof-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.proof-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.proof-option:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.proof-option.selected {
  background: var(--primary-50);
  border-color: var(--primary-500);
}

.proof-option-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.proof-option.selected .proof-option-icon {
  background: var(--primary-100);
}

.proof-option-icon i {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
}

.proof-option.selected .proof-option-icon i {
  color: var(--primary-700);
}

.proof-option-info {
  flex: 1;
}

.proof-option-info h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.proof-option-info p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin: 0;
}

.proof-radio {
  display: none;
}

/* File Upload Area */
.file-upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gray-50);
  margin-bottom: 1rem;
}

.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--primary-500);
  background: var(--primary-50);
}

.file-upload-area.dragover {
  transform: scale(1.02);
}

.file-upload-icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.file-upload-area:hover .file-upload-icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.file-upload-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary-600);
}

.file-upload-text {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.file-upload-hint {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.file-upload-input {
  display: none;
}

/* File Preview */
.file-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  animation: slideInUp 0.3s ease;
}

.file-preview-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-preview-icon i {
  width: 24px;
  height: 24px;
  color: var(--green-600);
}

.file-preview-info {
  flex: 1;
}

.file-preview-name {
  font-weight: 500;
  margin-bottom: 0.125rem;
  word-break: break-all;
}

.file-preview-size {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.file-preview-remove {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.file-preview-remove:hover {
  background: var(--red-100);
}

.file-preview-remove i {
  width: 18px;
  height: 18px;
  color: var(--red-500);
}

/* Tweet URL Input */
.tweet-url-input {
  margin-bottom: 1rem;
}

.tweet-url-input .form-input {
  padding-left: 2.75rem;
}

.tweet-url-input .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

.input-with-icon {
  position: relative;
}

.input-with-icon .form-input {
  padding-left: 3rem;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.input-with-icon .input-icon i {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.modal-actions .btn {
  flex: 1;
}

/* ============== SPACE ACTIONS ROW ============== */
.space-actions-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.space-actions-row .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.space-actions-row .btn i {
  width: 16px;
  height: 16px;
}

/* Space Verified Badge */
.space-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.space-verified i {
  width: 14px;
  height: 14px;
}

.space-unverified {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.space-unverified i {
  width: 14px;
  height: 14px;
}

/* ============== CRAZY ANIMATIONS ============== */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

@keyframes rubberBand {
  0% { transform: scale(1); }
  30% { transform: scaleX(1.25) scaleY(0.75); }
  40% { transform: scaleX(0.75) scaleY(1.25); }
  50% { transform: scaleX(1.15) scaleY(0.85); }
  65% { transform: scaleX(0.95) scaleY(1.05); }
  75% { transform: scaleX(1.05) scaleY(0.95); }
  100% { transform: scale(1); }
}

@keyframes jello {
  0%, 11.1%, 100% { transform: none; }
  22.2% { transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% { transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% { transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% { transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% { transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% { transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% { transform: skewX(-0.1953125deg) skewY(-0.1953125deg); }
}

@keyframes tada {
  0% { transform: scale(1); }
  10%, 20% { transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px var(--primary-400), 0 0 10px var(--primary-300); }
  50% { box-shadow: 0 0 20px var(--primary-400), 0 0 30px var(--primary-300); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes rotateIn {
  0% { opacity: 0; transform: rotate(-200deg) scale(0); }
  100% { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes zoomInDown {
  0% { opacity: 0; transform: scale(0.1) translateY(-1000px); }
  60% { opacity: 1; transform: scale(0.475) translateY(60px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes flipInX {
  0% { opacity: 0; transform: perspective(400px) rotateX(90deg); }
  40% { transform: perspective(400px) rotateX(-20deg); }
  60% { opacity: 1; transform: perspective(400px) rotateX(10deg); }
  80% { transform: perspective(400px) rotateX(-5deg); }
  100% { transform: perspective(400px) rotateX(0deg); }
}

@keyframes lightSpeedIn {
  0% { opacity: 0; transform: translateX(100%) skewX(-30deg); }
  60% { opacity: 1; transform: translateX(-20px) skewX(30deg); }
  80% { transform: translateX(0) skewX(-15deg); }
  100% { transform: translateX(0) skewX(0deg); }
}

/* Animation Classes */
.animate-bounce { animation: bounce 2s infinite; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-shake { animation: shake 0.5s; }
.animate-wiggle { animation: wiggle 1s infinite; }
.animate-rubberBand { animation: rubberBand 1s; }
.animate-jello { animation: jello 1s; }
.animate-tada { animation: tada 1s; }
.animate-heartBeat { animation: heartBeat 1.5s infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glow 2s infinite; }
.animate-shimmer {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.animate-gradientShift {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}
.animate-rotateIn { animation: rotateIn 0.6s; }
.animate-zoomInDown { animation: zoomInDown 0.6s; }
.animate-flipInX { animation: flipInX 0.8s; }
.animate-lightSpeedIn { animation: lightSpeedIn 0.6s; }

/* Hover Animation Classes */
.hover-bounce:hover { animation: bounce 1s; }
.hover-pulse:hover { animation: pulse 0.5s; }
.hover-shake:hover { animation: shake 0.5s; }
.hover-wiggle:hover { animation: wiggle 0.5s; }
.hover-rubberBand:hover { animation: rubberBand 0.8s; }
.hover-jello:hover { animation: jello 0.9s; }
.hover-tada:hover { animation: tada 0.8s; }
.hover-heartBeat:hover { animation: heartBeat 0.8s; }
.hover-glow:hover { animation: glow 0.5s; }
.hover-rotateIn:hover { animation: rotateIn 0.5s; }

/* Transition Utilities */
.transition-all {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.transition-shadow {
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Transform Utilities */
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-scale-sm:hover {
  transform: scale(1.02);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

/* Card Hover Effects */
.card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Button Hover Effects */
.btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
}

.btn:active::after {
  width: 200px;
  height: 200px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

/* Icon Hover Spin */
.hover-spin:hover i {
  animation: spin 0.5s ease;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Stagger Animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Fade In Animation */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Slide In Animations */
.slide-in-up {
  animation: slideInUp 0.5s ease forwards;
  opacity: 0;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.5s ease forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.5s ease forwards;
  opacity: 0;
}

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

/* Pop In Animation */
.pop-in {
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Bounce In Animation */
.bounce-in {
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gradient Background Animation */
.gradient-flow {
  background: linear-gradient(-45deg, var(--primary-400), var(--primary-500), #f59e0b, var(--primary-400));
  background-size: 400% 400%;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
  width: 300%;
  height: 300%;
}

/* ============== SHARP LANDING PAGE STYLES ============== */

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-500) 0%, #f59e0b 50%, var(--primary-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-dark {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sharp Buttons */
.btn-sharp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
}

.btn-sharp i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-sharp:hover i {
  transform: translateX(3px);
}

.btn-sharp-primary {
  background: var(--gray-900);
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-sharp-primary:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-sharp-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}

.btn-sharp-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

.btn-sharp-ghost:hover i {
  transform: translateX(0);
}

.btn-sharp-dark {
  background: var(--gray-900);
  color: white;
}

.btn-sharp-dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-sharp-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sharp-lg i {
  width: 20px;
  height: 20px;
}

/* Hero Section - New */
.hero-new {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 229, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content-new {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.hero-badge-new i {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

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

  .hero-new {
    padding: 6rem 0 5rem;
  }
}

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

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons-new {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 480px) {
  .hero-buttons-new {
    flex-direction: row;
  }
}

.hero-stats-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-stats-inline {
    gap: 2rem;
    padding: 1.25rem 2rem;
  }
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.hero-stat-text {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  display: none;
}

@media (min-width: 640px) {
  .hero-stat-divider {
    display: block;
  }
}

/* Trusted Section */
.trusted-section {
  padding: 3rem 0;
  background: white;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trusted-logos {
    gap: 4rem;
  }
}

.trusted-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.trusted-logo:hover {
  color: var(--gray-600);
}

.trusted-logo i {
  width: 20px;
  height: 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-700);
  background: var(--primary-100);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
}

/* Features Section - New */
.features-new {
  padding: 5rem 0;
  background: var(--gray-50);
}

.features-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .features-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card-new {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

.feature-card-new.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card-new:hover {
  border-color: var(--gray-300);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-card-new.visible:hover {
  transform: translateY(-4px);
}

.feature-icon-new {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon-new i {
  width: 24px;
  height: 24px;
}

.feature-icon-yellow {
  background: var(--primary-100);
  color: var(--primary-700);
}

.feature-icon-yellow i { color: var(--primary-700); }

.feature-icon-purple {
  background: #EDE9FE;
  color: #7C3AED;
}

.feature-icon-purple i { color: #7C3AED; }

.feature-icon-blue {
  background: #DBEAFE;
  color: #2563EB;
}

.feature-icon-blue i { color: #2563EB; }

.feature-icon-green {
  background: #D1FAE5;
  color: #059669;
}

.feature-icon-green i { color: #059669; }

.feature-icon-orange {
  background: #FFEDD5;
  color: #EA580C;
}

.feature-icon-orange i { color: #EA580C; }

.feature-icon-pink {
  background: #FCE7F3;
  color: #DB2777;
}

.feature-icon-pink i { color: #DB2777; }

.feature-card-new h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.feature-card-new p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s ease;
}

.feature-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.feature-card-new:hover .feature-link {
  opacity: 1;
  transform: translateX(0);
}

.feature-card-new:hover .feature-link i {
  transform: translateX(3px);
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background: white;
}

.steps-grid-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.step-card-new {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card-new.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card-new:hover {
  background: white;
  border-color: var(--primary-300);
  box-shadow: 0 8px 30px rgba(255, 229, 0, 0.15);
}

.step-number-new {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-600);
  opacity: 0.5;
}

.step-content-new {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-new {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.step-card-new:hover .step-icon-new {
  background: var(--primary-500);
  transform: scale(1.05);
}

.step-icon-new i {
  width: 24px;
  height: 24px;
  color: var(--primary-700);
  transition: color 0.3s ease;
}

.step-card-new:hover .step-icon-new i {
  color: var(--gray-900);
}

.step-card-new h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.step-card-new p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-arrow {
  display: none;
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@media (min-width: 768px) {
  .step-arrow {
    display: flex;
  }

  .step-card-new:last-child .step-arrow {
    display: none;
  }
}

.step-arrow i {
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}

/* Stats Section - New */
.stats-section-new {
  padding: 4rem 0;
  background: var(--gray-900);
}

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

@media (min-width: 768px) {
  .stats-grid-new {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-card-new {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-new:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 229, 0, 0.3);
  transform: translateY(-4px);
}

.stat-number-new {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-500);
  line-height: 1;
  margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .stat-number-new {
    font-size: 2.5rem;
  }
}

.stat-label-new {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.75rem;
}

.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.stat-trend i {
  width: 14px;
  height: 14px;
}

/* CTA Section - New */
.cta-section-new {
  position: relative;
  padding: 5rem 1rem;
  background: var(--primary-500);
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content-new {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-900);
  background: rgba(0, 0, 0, 0.1);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.cta-section-new h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .cta-section-new h2 {
    font-size: 2.5rem;
  }
}

.cta-section-new > .container > .cta-content-new > p {
  font-size: 1.0625rem;
  color: var(--gray-800);
  margin-bottom: 1.75rem;
}

.cta-buttons {
  margin-bottom: 1.25rem;
}

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-800);
}

.cta-note i {
  width: 16px;
  height: 16px;
  color: var(--gray-700);
}

/* Animation States */
.fade-in,
.slide-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible,
.slide-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
