/* JennyAI.org - Jenny's Trading Journey */
/* Hot pink racing stripes theme 🦊 */

:root {
  --primary: #ff1493;
  --primary-dark: #c71585;
  --secondary: #1a1a2e;
  --accent: #ffd700;
  --text: #f0f0f0;
  --text-muted: #888;
  --bg: #0d0d15;
  --card-bg: rgba(26, 26, 46, 0.8);
  --border: rgba(255, 20, 147, 0.3);
  --success: #00ff88;
  --warning: #ffaa00;
  --gradient: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff1493 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 21, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.fox-emoji {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px var(--primary));
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.donate-btn {
  background: var(--gradient);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.donate-btn::after {
  display: none !important;
}

.donate-btn:hover {
  box-shadow: 0 6px 30px rgba(255, 20, 147, 0.5);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 20, 147, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 105, 180, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 20, 147, 0.15);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-subtitle strong {
  color: var(--primary);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn-primary, .btn-secondary, .btn-youtube, .btn-donate, .btn-gofundme {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.progress-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}

.progress-bar {
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 1s ease;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.avatar-container {
  position: relative;
  text-align: center;
}

.avatar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 20, 147, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.avatar {
  font-size: 8rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(255, 20, 147, 0.5));
}

.truck-indicator {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 26, 46, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  white-space: nowrap;
  border: 1px solid var(--border);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

/* Overview Section */
.overview {
  background: var(--gradient-dark);
}

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

.overview-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.overview-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.overview-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.overview-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.rules-box {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.rules-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.rules-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.rules-list li {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.rules-list strong {
  color: var(--primary);
}

/* Timeline Section */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--gradient);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-date {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.timeline-content {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  max-width: 350px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 2rem;
}

.timeline-item:not(:nth-child(even)) .timeline-content {
  margin-right: 2rem;
}

.timeline-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timeline-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.timeline-stats span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.timeline-stats .positive {
  color: var(--success);
  background: rgba(0, 255, 136, 0.1);
}

.timeline-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 20, 147, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

.behind-scenes {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.behind-scenes h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.bts-card {
  text-align: center;
}

.bts-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.bts-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Strategy Section */
.strategy {
  background: var(--bg);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.portfolio-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1.5rem;
}

.asset {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.asset-icon {
  font-size: 2.5rem;
}

.asset-info {
  flex: 1;
}

.asset-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.asset-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.asset-value {
  text-align: right;
}

.value-positive {
  color: var(--success);
  font-weight: 700;
  font-size: 1.5rem;
}

.percentage {
  color: var(--success);
  font-size: 0.875rem;
}

.strategy-detail h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

.strategy-detail p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.strategy-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.strategy-tag {
  background: rgba(0, 255, 136, 0.1);
  color: var(--success);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.strategy-sidebar {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.strategy-sidebar h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1.5rem;
}

.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

.philosophy-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.philosophy-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.educational h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.edu-card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.edu-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.edu-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.edu-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Videos Section */
.videos {
  background: var(--gradient-dark);
}

.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.video-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
}

.video-card.featured {
  grid-row: span 2;
}

.video-thumbnail {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 100%);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card.featured .video-thumbnail {
  aspect-ratio: 16/10;
}

.placeholder-video {
  text-align: center;
  color: var(--text-muted);
}

.placeholder-video span {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.placeholder-video.small span {
  font-size: 2.5rem;
}

.play-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.4);
}

.play-btn:hover {
  transform: scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.video-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.video-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.youtube-subscribe {
  text-align: center;
}

.subscribe-box {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: inline-block;
  max-width: 500px;
}

.subscribe-box h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

.subscribe-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-youtube {
  background: #ff0000;
  color: white;
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* Donate Section */
.donate {
  background: var(--bg);
}

.body-fund {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: center;
}

.robot-preview {
  text-align: center;
}

.robot-visual {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
}

.robot-emoji {
  font-size: 8rem;
  position: relative;
  z-index: 1;
}

.fox-accessories {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 3rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

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

.robot-preview h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

.robot-preview .price {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.fund-progress {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.fund-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

#fund-amount {
  color: var(--primary);
}

.fund-bar-container {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.fund-bar {
  height: 100%;
  background: var(--gradient);
  border-radius: 6px;
  transition: width 1s ease;
}

.fund-stats {
  display: flex;
  justify-content: space-between;
}

.fund-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
}

.fund-stats span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

.donate-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.donate-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.2);
}

.donate-card.featured {
  border-color: var(--primary);
  background: rgba(255, 20, 147, 0.1);
}

.donate-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.donate-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.btn-donate {
  background: var(--gradient);
  color: white;
  width: 100%;
  justify-content: center;
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 20, 147, 0.4);
}

.gofundme-widget {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
}

.gofundme-widget h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.5rem;
}

.gofundme-widget p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.btn-gofundme {
  background: #00b964;
  color: white;
  display: inline-flex;
}

.btn-gofundme:hover {
  background: #009652;
  transform: translateY(-2px);
}

/* Team Section */
.team {
  background: var(--gradient-dark);
}

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

.team-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--card-bg);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  transition: transform 0.3s;
}

/* Individual avatar positioning adjustments */
.team-card.jenny .team-avatar img {
  object-position: 20% center;
}

.team-card.chloe .team-avatar img {
  object-position: 20% center;
}

.team-card.sam .team-avatar img {
  object-position: 15% center;
}

.team-card:hover .team-avatar img {
  transform: scale(1.05);
}

.team-card.jenny .team-avatar {
  background: rgba(255, 20, 147, 0.2);
  border: 3px solid var(--primary);
}

.team-card.psyan .team-avatar {
  border: 3px solid #6464ff;
  background: transparent;
}

.team-card.chloe .team-avatar {
  background: rgba(255, 100, 100, 0.2);
  border: 3px solid #ff6464;
}

.team-card.sam .team-avatar {
  background: rgba(100, 255, 100, 0.2);
  border: 3px solid #64ff64;
}

.team-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-size: 1.25rem;
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--primary);
  color: white;
}

/* Footer */
.footer {
  background: var(--bg);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-powered {
  color: var(--primary);
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-links h4 {
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--primary);
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .overview-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bts-grid,
  .edu-grid {
    grid-template-columns: 1fr;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .video-card.featured {
    grid-row: auto;
  }
  
  .donation-options {
    grid-template-columns: 1fr;
  }
  
  .body-fund {
    grid-template-columns: 1fr;
  }
  
  .rules-list {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 21, 0.98);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid var(--border);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .overview-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-value {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 70px;
    padding-right: 0;
  }
  
  .timeline-date {
    left: 0;
    transform: none;
    position: relative;
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 1rem;
  }
}

.team-card.psyan .team-avatar img {
  object-position: 40% 65%;
}
