@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #060818;
  --bg-secondary: #0a0e27;
  --bg-tertiary: #0f1535;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gold-primary: #f0b833;
  --gold-light: #fcd97a;
  --gold-dark: #c9950a;
  --gold-glow: rgba(240, 184, 51, 0.3);
  --text-primary: #f0f0f0;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --accent-blue: #4a7cf7;
  --accent-purple: #7c4df7;
  --accent-cyan: #00d4ff;
  --gradient-gold: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  --gradient-hero: linear-gradient(135deg, #060818 0%, #0a0e27 40%, #0f1535 70%, #060818 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-grotesk: 'Space Grotesk', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1280px;
}

/* ====== HERO CAROUSEL ====== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25) saturate(1.2);
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 8, 24, 0.92) 30%, rgba(10, 14, 39, 0.6) 60%, rgba(15, 21, 53, 0.3) 100%);
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(240, 184, 51, 0.12);
  border: 1px solid rgba(240, 184, 51, 0.25);
  border-radius: 50px;
  font-family: var(--font-grotesk);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease backwards;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.15s ease backwards;
}

.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s 0.3s ease backwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.45s ease backwards;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--gold-glow);
  color: var(--bg-primary);
  text-decoration: none;
}

.btn-hero-primary:hover::before {
  transform: translateX(0);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(240, 184, 51, 0.15);
  text-decoration: none;
}

/* Carousel Controls */
.hero-controls {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.hero-progress {
  display: flex;
  gap: 8px;
}

.hero-progress-bar {
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-progress-bar:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-progress-bar.active {
  background: rgba(255, 255, 255, 0.2);
}

.hero-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.hero-progress-bar.active .hero-progress-fill {
  width: 100%;
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.hero-arrow:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.hero-slide-counter {
  font-family: var(--font-grotesk);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

/* ====== SECTION TITLES ====== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-grotesk);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ====== FEATURED POSTS ====== */
.featured-section {
  padding: 8rem 0;
  position: relative;
}

.featured-section::before {
  display: none;
}

.featured-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}

.featured-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.featured-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 184, 51, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 184, 51, 0.05);
}

.featured-card-image {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.featured-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 24, 0.9), transparent 60%);
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.08);
}

.featured-card-body {
  padding: 1.5rem;
}

.featured-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-grotesk);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-card-meta .dot {
  width: 4px;
  height: 4px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.featured-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-grotesk);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.featured-card-link:hover {
  gap: 14px;
  color: var(--gold-light);
  text-decoration: none;
}

.featured-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.featured-nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.featured-nav-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
}

/* ====== WORD OF THE DAY ====== */
.scripture-section {
  padding: 6rem 0;
  position: relative;
}

.scripture-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  backdrop-filter: blur(16px);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.scripture-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(240, 184, 51, 0.03), transparent, rgba(74, 124, 247, 0.03), transparent);
  animation: rotateGlow 20s linear infinite;
}

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

.scripture-inner {
  position: relative;
  z-index: 1;
}

.scripture-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.scripture-label {
  font-family: var(--font-grotesk);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.scripture-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  quotes: "“" "”" "‘" "’";
}

.scripture-text::before {
  content: "“";
  color: var(--gold-primary);
  font-size: 1.2em;
  opacity: 0.6;
}

.scripture-text::after {
  content: "”";
  color: var(--gold-primary);
  font-size: 1.2em;
  opacity: 0.6;
}

.scripture-reference {
  font-family: var(--font-grotesk);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.05em;
}

.verse-share-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(240,184,51,0.2);
  background: rgba(15,15,26,0.6);
  color: var(--gold-primary);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.verse-share-btn:hover {
  background: rgba(240,184,51,0.15);
  border-color: rgba(240,184,51,0.4);
  transform: scale(1.08);
}

.verse-share-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ====== BOOKS CAROUSEL ====== */
.books-section {
  padding: 6rem 0;
  position: relative;
}

.books-section::before {
  display: none;
}

.books-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.books-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.book-slide-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 260px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.book-slide-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(240, 184, 51, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(240, 184, 51, 0.06);
}

.book-cover-wrap {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.book-cover-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 24, 0.8), transparent 50%);
}

.book-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(240, 184, 51, 0.15);
  border: 1px solid rgba(240, 184, 51, 0.3);
  border-radius: 50px;
  font-family: var(--font-grotesk);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-primary);
  backdrop-filter: blur(8px);
}

.book-card-body {
  padding: 1.25rem;
}

.book-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-card-author {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.book-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-grotesk);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.book-card-link:hover {
  gap: 12px;
  color: var(--gold-light);
  text-decoration: none;
}

.books-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2.5rem;
}

.books-nav-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1.1rem;
}

.books-nav-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--bg-primary);
  transform: scale(1.1);
}

/* ====== WRITERS SECTION ====== */
.writers-section-home {
  padding: 6rem 0;
  position: relative;
}

.writers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.writer-card-home {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  text-align: center;
  padding: 2rem 1.5rem;
}

.writer-card-home:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 184, 51, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.writer-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 1.25rem;
  border: 2px solid rgba(240, 184, 51, 0.3);
  transition: var(--transition-smooth);
}

.writer-card-home:hover .writer-avatar {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px var(--gold-glow);
}

.writer-name-home {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.writer-bio-home {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-writer-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(240, 184, 51, 0.3);
  border-radius: 50px;
  font-family: var(--font-grotesk);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-writer-home:hover {
  background: var(--gold-primary);
  color: var(--bg-primary);
  text-decoration: none;
  transform: scale(1.05);
}

/* ====== TESTIMONIES SECTION ====== */
.testimonies-section-home {
  padding: 6rem 0;
  position: relative;
}

.testimonies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimony-card-home {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  position: relative;
}

.testimony-card-home:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 184, 51, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testimony-quote-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimony-text-home {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimony-author-home {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.2rem;
}

.testimony-date-home {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-grotesk);
}

/* ====== CATEGORIES SECTION ====== */
.categories-section-home {
  padding: 6rem 0;
  position: relative;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card-home {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.category-card-home:hover::before {
  transform: scaleX(1);
}

.category-card-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(240, 184, 51, 0.2);
}

.category-icon-home {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: rgba(240, 184, 51, 0.1);
  border: 1px solid rgba(240, 184, 51, 0.15);
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
}

.category-card-home:hover .category-icon-home {
  background: var(--gold-primary);
  color: var(--bg-primary);
  transform: scale(1.1) rotate(5deg);
}

.category-name-home {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.category-desc-home {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ====== STATS SECTION ====== */
.stats-section {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(135deg, rgba(240, 184, 51, 0.03), transparent);
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: var(--font-grotesk);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-grotesk);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====== SECTION VIEW ALL LINK ====== */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-header-row .section-header {
  text-align: left;
  margin-bottom: 0;
}

.section-header-row .section-desc {
  margin: 0;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-family: var(--font-grotesk);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.view-all-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(240, 184, 51, 0.1);
  text-decoration: none;
}

/* ====== ABOUT / MINISTRY TIMELINE ====== */
.about-section-home {
  padding: 100px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-subtitle {
  margin-bottom: 0.75rem;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-mission {
  display: flex;
  gap: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.about-mission-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(240,184,51,0.2), rgba(240,184,51,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-primary);
}

.about-mission-text strong {
  display: block;
  color: var(--gold-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.about-mission-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-primary), #d4a032);
  color: #060818;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(240,184,51,0.25);
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(240,184,51,0.35);
  color: #060818;
  text-decoration: none;
}

/* Timeline */
.about-timeline {
  position: relative;
  padding-left: 30px;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-primary), rgba(240,184,51,0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid #060818;
  box-shadow: 0 0 0 2px var(--gold-primary), 0 0 20px rgba(240,184,51,0.3);
  z-index: 1;
}

.timeline-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: rgba(240,184,51,0.2);
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.timeline-year {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-content h4 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 6px;
  font-family: var(--font-display);
}

.timeline-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ====== LATEST SERMONS ====== */
.sermons-section-home {
  padding: 100px 0;
  position: relative;
}

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

.sermon-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.sermon-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240,184,51,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(240,184,51,0.05);
}

.sermon-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sermon-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,8,24,0.8), transparent);
}

.sermon-play-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  background: rgba(240,184,51,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #060818;
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 0 rgba(240,184,51,0.4);
}

.sermon-card:hover .sermon-play-icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(240,184,51,0);
  animation: pulse-play 1.5s ease-in-out infinite;
}

@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,184,51,0.4); }
  50% { box-shadow: 0 0 0 16px rgba(240,184,51,0); }
}

.sermon-card-body {
  padding: 20px 24px 24px;
}

.sermon-card-date {
  display: block;
  color: rgba(240,184,51,0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sermon-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sermon-card-excerpt {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sermon-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.sermon-card-link:hover {
  gap: 12px;
  color: #d4a032;
  text-decoration: none;
}

/* ====== UPCOMING EVENTS ====== */
.events-section-home {
  padding: 100px 0;
  position: relative;
}

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

.event-card {
  display: flex;
  gap: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240,184,51,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(240,184,51,0.03);
}

.event-date-badge {
  flex-shrink: 0;
  width: 80px;
  background: linear-gradient(180deg, var(--gold-primary), #d4a032);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
}

.event-date-day {
  font-size: 2rem;
  font-weight: 800;
  color: #060818;
  line-height: 1;
}

.event-date-month {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(6,8,24,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.event-card-body {
  padding: 20px 22px;
  flex: 1;
}

.event-card-title {
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--font-display);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.event-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.event-card-meta i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

/* ====== CTA BANNER ====== */
.cta-section-home {
  padding: 80px 0 100px;
  position: relative;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(240,184,51,0.08), rgba(240,184,51,0.02));
  border: 1px solid rgba(240,184,51,0.15);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cta-bg-particles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(240,184,51,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240,184,51,0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-subtitle {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0 0 1.2rem;
}

.cta-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary,
.btn-cta-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--gold-primary), #d4a032);
  color: #060818;
  box-shadow: 0 8px 30px rgba(240,184,51,0.25);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(240,184,51,0.35);
  color: #060818;
  text-decoration: none;
}

.btn-cta-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: #fff;
}

.btn-cta-secondary:hover {
  border-color: rgba(240,184,51,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: var(--gold-primary);
  text-decoration: none;
}

.btn-cta-tertiary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}

.btn-cta-tertiary:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1199px) {
  .book-slide-card {
    flex: 0 0 calc(33.333% - 16px);
  }
  .writers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .featured-card {
    flex: 0 0 calc(50% - 12px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

  .book-slide-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 90vh;
    min-height: 600px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-controls {
    bottom: 30px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-progress-bar {
    width: 30px;
  }

  .featured-card {
    flex: 0 0 80%;
    min-width: 0;
  }

  .scripture-card {
    padding: 2.5rem 1.5rem;
    margin: 0 1rem;
  }

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

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

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

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

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .book-slide-card {
    flex: 0 0 85%;
    min-width: 0;
  }

  .hero-slide-counter {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .cta-card {
    padding: 50px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-tertiary {
    justify-content: center;
  }

  .event-date-badge {
    width: 60px;
  }

  .event-date-day {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 85vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.88rem;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 0.82rem;
    padding: 0.65rem 1.2rem;
  }

  .hero-controls {
    bottom: 16px;
    gap: 8px;
  }

  .hero-progress-bar {
    width: 24px;
  }

  .hero-arrows {
    display: none;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.7rem;
  }

  .section-desc {
    font-size: 0.85rem;
  }

  .about-section-home,
  .featured-section,
  .sermons-section-home,
  .scripture-section,
  .books-section,
  .writers-section-home,
  .testimonies-section-home,
  .events-section-home,
  .categories-section-home,
  .stats-section,
  .cta-section-home {
    padding: 2.5rem 0;
  }

  .featured-section {
    padding: 3rem 0;
  }

  .featured-card {
    flex: 0 0 80%;
    min-width: 0;
  }

  .featured-card-image {
    height: 160px;
  }

  .featured-card-body {
    padding: 1rem;
  }

  .featured-card-meta {
    font-size: 0.7rem;
    gap: 8px;
    flex-wrap: wrap;
  }

  .featured-card-title {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
  }

  .featured-card-excerpt {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .featured-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .featured-nav {
    margin-top: 1rem;
    gap: 8px;
  }

  .scripture-card {
    padding: 1.8rem 1rem;
    margin: 0 0.5rem;
  }

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

  .scripture-reference {
    font-size: 0.85rem;
  }

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

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .cta-card {
    padding: 30px 16px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-actions {
    gap: 0.6rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-tertiary {
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
  }

  .categories-grid {
    gap: 0.75rem;
  }

  .category-card-home {
    padding: 1.25rem;
  }

  .category-name-home {
    font-size: 1rem;
  }

  .events-grid {
    gap: 0.75rem;
  }

  .event-card {
    padding: 0.75rem;
  }

  .sermons-grid {
    gap: 0.75rem;
  }

  .writers-grid {
    gap: 0.75rem;
  }

  .testimonies-grid {
    gap: 0.75rem;
  }

  .book-slide-card {
    flex: 0 0 80%;
  }

  .books-track {
    gap: 1rem;
  }

  .contact-section {
    padding: 2.5rem 0;
  }

  .view-all-link {
    font-size: 0.78rem;
  }

  .share-modal {
    width: 92%;
    margin: 0 4%;
    padding: 1.5rem 1rem;
  }

  .share-modal-options {
    gap: 0.6rem;
  }

  .share-option {
    padding: 0.7rem;
  }

  .share-option-label {
    font-size: 0.78rem;
  }
}

/* ====== SHARE MODAL ====== */
.share-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.share-modal-overlay.active {
  display: flex;
}

.share-modal {
  background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(240, 184, 51, 0.04);
  animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.share-modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.share-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.share-modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.share-modal-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.share-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'Inter', sans-serif;
  width: 100%;
  font-size: 0.9rem;
}

.share-option:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(240, 184, 51, 0.15);
  transform: translateX(4px);
  text-decoration: none;
  color: #fff;
}

.share-option-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.share-option-label {
  font-weight: 500;
}

.share-modal-dismiss {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.share-modal-dismiss:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}
