@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --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;
  --dark-bg: #111827;
  --dark-surface: #1f2937;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-600);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo span {
  color: var(--gray-800);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

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

.nav-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.nav-search:hover {
  border-color: var(--gray-300);
  color: var(--gray-700);
}

.nav-search svg {
  width: 16px;
  height: 16px;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.15s ease;
  z-index: 200;
}

.nav-item:hover .dropdown,
.nav-item.active .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--gray-700);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ============ BUTTERFLY HERO ============ */
.hero {
  text-align: center;
  padding: 112px 24px 40px; /* pt-28 pb-10 */
  background-color: #f8faf9;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2d26;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero h1 span {
  color: #10b981;
}

.hero p.desc {
  font-size: 1rem;
  color: #667a72;
  font-weight: 300;
  max-width: 450px;
  margin: 0 auto 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 48px;
  background-color: #10b981;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.btn-hero svg {
  fill: currentColor;
}

.btn-link {
  background: none;
  border: none;
  color: #10b981;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

.btn-link:hover {
  text-decoration: underline;
}

.hero-stats {
  font-size: 0.875rem;
  color: #667a72;
  font-weight: 300;
}

.hero-stats span {
  color: #10b981;
  font-weight: 700;
}

/* ============ DONATION BANNER ============ */
.donation-banner {
  background-color: #10b981;
  color: white;
  padding: 12px 24px;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ============ ABOUT SECTION ============ */
.about-section {
  padding: 48px 24px;
  background-color: white;
  text-align: center;
}

.about-badge {
  display: inline-flex;
  padding: 6px 16px;
  background-color: white;
  color: #10b981;
  border: 2px solid rgba(16,185,129,0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2d26;
  margin-bottom: 16px;
}

.about-desc {
  max-width: 650px;
  margin: 0 auto 32px;
  color: #667a72;
  font-weight: 300;
  line-height: 1.6;
}

.about-desc span {
  color: #10b981;
  font-weight: 600;
}

.about-features {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  text-align: left;
  transition: all 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border-color: rgba(16,185,129,0.2);
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  background-color: #f0fdf4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-wrap svg {
  color: #10b981;
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-weight: 700;
  color: #1a2d26;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.feature-card p {
  color: #667a72;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
}

/* ============ CAMPAIGN GRID TITLE ============ */
.grid-title-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.grid-subtitle {
  color: #10b981;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.grid-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2d26;
}

/* ============ CAMPAIGN GRID ============ */
.campaigns-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 60px;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============ CAMPAIGN CARD (ButterflyKids Style) ============ */
.campaign-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.05);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

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

.urgent-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #f97316;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2d26;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-subtitle {
  font-size: 14px;
  color: #667a72;
  margin-bottom: 24px;
}

.card-progress-section {
  margin-top: auto;
}

.progress-track {
  height: 8px;
  width: 100%;
  background-color: #f0f4f2;
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background-color: #10b981;
  border-radius: 9999px;
  transition: width 0.6s ease;
}

.amount-raised {
  font-size: 14px;
  margin-bottom: 12px;
}

.raised-value {
  font-weight: 700;
  color: #10b981;
}

.goal-value {
  color: #667a72;
}

.bottom-stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #667a72;
  margin-bottom: 20px;
}

.btn-card-donate {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  background-color: #10b981;
  color: white;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-card-donate:hover {
  background-color: #0d9488;
}

/* ============ CTA SECTION ============ */
.cta-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.cta-box {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 48px 24px;
}

.cta-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.cta-box p {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============ FOOTER SUBTITLE ============ */
.footer-subtitle {
  text-align: center;
  padding: 24px;
  color: var(--gray-500);
  font-size: 0.9rem;
  border-top: 1px solid var(--gray-200);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-bg);
  color: var(--gray-300);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-400);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--green-500);
}

.footer-social {
  margin-top: 16px;
}

.footer-social h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: var(--gray-400);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  color: var(--white);
}

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

.footer-bottom {
  border-top: 1px solid var(--dark-surface);
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom .love {
  color: var(--green-500);
}

.footer-bottom .love .heart {
  color: #f472b6;
}

/* ============ CAMPAIGN DETAIL PAGE ============ */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  font-size: 0.875rem;
  color: var(--gray-600);
  transition: var(--transition);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.back-link:hover {
  color: var(--gray-900);
}

.campaign-hero {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.campaign-hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--gray-200);
}

.campaign-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  color: var(--white);
}

.campaign-organizer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: rgba(0,0,0,0.4);
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}

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

.campaign-hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* Campaign stats */
.campaign-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.campaign-stats-inner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
}

.stats-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.progress-circle {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.progress-circle svg {
  transform: rotate(-90deg);
  width: 56px;
  height: 56px;
}

.progress-circle-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 4;
}

.progress-circle-fill {
  fill: none;
  stroke: var(--green-500);
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}

.progress-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-600);
}

.stats-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}

.stats-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-left: 4px;
}

.stats-goal {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.campaign-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-donate {
  padding: 14px 24px;
  background: var(--green-600);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-donate:hover {
  background: var(--green-700);
}

.btn-share {
  padding: 14px 24px;
  background: var(--green-800);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-share:hover {
  background: var(--green-700);
}

/* Campaign detail content */
.campaign-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.campaign-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
}

.campaign-date {
  color: var(--gray-500);
}

.campaign-location {
  color: var(--green-600);
  font-weight: 500;
}

.protected-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  font-weight: 500;
}

.protected-badge svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
}

.campaign-description {
  padding: 24px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
  white-space: pre-line;
}

.campaign-description.truncated {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.campaign-description.truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--white));
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0;
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--green-600);
}

.read-more-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.read-more-btn.expanded svg {
  transform: rotate(180deg);
}

/* Donations section */
.donations-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 120px;
}

.donations-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  padding: 24px 0 16px;
  border-top: 1px solid var(--gray-200);
}

.donation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.donation-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  flex-shrink: 0;
}

.donation-info {
  flex: 1;
}

.donation-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}

.donation-time {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.donation-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

/* ============ BUTTERFLYKIDS CAMPAIGN DETAIL (CLEAN) ============ */

/* Stats Card */
.bk-stats-card {
  background: var(--white);
  border-radius: 0;
  padding: 24px 0 0;
}

.bk-campaign-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 4px;
}

.bk-campaign-meta-info {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-weight: 400;
}

/* Amount display */
.bk-amount-section {
  margin-bottom: 8px;
}

.bk-amount-raised {
  font-size: 1.75rem;
  font-weight: 700;
  color: #10b981;
  display: block;
  margin-bottom: 2px;
}

.bk-amount-goal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.bk-percentage {
  font-weight: 700;
  color: var(--gray-800);
  font-size: 0.95rem;
}

/* Progress bar */
.bk-progress-track {
  height: 8px;
  width: 100%;
  background: #e5efe9;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 12px;
}

.bk-progress-fill {
  height: 100%;
  background: #10b981;
  border-radius: 99px;
  transition: width 0.8s ease;
}

/* Donors */
.bk-donors-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* Action buttons row */
.bk-action-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.bk-btn-donate {
  flex: 1;
  height: 52px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-btn-donate:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16,185,129,0.35);
}

.bk-btn-share {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.bk-btn-share:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}

/* About section */
.bk-about-section {
  padding-top: 32px;
  padding-bottom: 8px;
}

.bk-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.bk-description {
  padding-bottom: 8px;
}

.bk-desc-paragraph {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 20px;
}

/* Organizer card */
.bk-organizer-card {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 16px 0 32px;
  border: 1px solid var(--gray-200);
}

.bk-organizer-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.bk-organizer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bk-organizer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bk-organizer-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.95rem;
}

.bk-organizer-role {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 500;
}

/* Donations list */
.bk-donations-list {
  display: flex;
  flex-direction: column;
}

.bk-donation-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

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

.bk-donation-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.bk-donation-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bk-donation-name {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9rem;
}

.bk-donation-time {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.bk-donation-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #10b981;
  flex-shrink: 0;
}

/* Sticky bottom bar */
.bk-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 24px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 50;
}

/* Campaign detail container max-width */
.campaign-stats,
.campaign-content,
.donations-section {
  max-width: 700px;
}

/* Responsive for campaign detail */
@media (max-width: 768px) {
  .campaign-hero {
    padding: 0 !important;
    max-width: 100% !important;
  }
  .campaign-hero > div {
    border-radius: 0 !important;
  }
  .campaign-hero-image {
    height: auto !important;
    max-height: 500px !important;
    border-radius: 0 !important;
    aspect-ratio: 4/3;
  }
  .bk-stats-card {
    padding: 20px 0 0;
  }
  .bk-campaign-title {
    font-size: 1.4rem;
  }
  .bk-sticky-bar {
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============ ADMIN PAGE ============ */
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.admin-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.admin-back:hover {
  color: var(--gray-700);
}

.admin-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.btn-new-campaign {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.btn-new-campaign:hover {
  background: var(--green-700);
}

.admin-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
}

.admin-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.admin-table {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  border-collapse: collapse;
}

.admin-table thead {
  background: var(--gray-50);
}

.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-200);
}

.admin-table td {
  padding: 16px;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

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

.campaign-name-cell {
  max-width: 300px;
}

.campaign-name-cell .name {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.campaign-name-cell .org {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
}

.action-buttons {
  display: flex;
  gap: 8px;
}

.action-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--gray-400);
}

.action-btn:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

.action-btn.delete:hover {
  background: #fef2f2;
  color: #ef4444;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open .nav-item {
    width: 100%;
    padding: 12px 16px;
  }
  .campaigns-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .campaign-hero-image {
    height: 300px;
    border-radius: var(--radius);
  }
  .campaign-buttons {
    grid-template-columns: 1fr;
  }
  .admin-table {
    font-size: 0.75rem;
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 16px;
  }
  .hero {
    padding: 40px 16px 24px;
  }
  .campaigns-container {
    padding: 0 16px 40px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ============ VSL OVERLAY ============ */
.vsl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.vsl-play-btn {
  background: #10b981;
  border-radius: 50%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-blinker 1.5s infinite;
  margin-bottom: 12px;
}

.vsl-overlay span {
  font-size: 1.125rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes pulse-blinker {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
