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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

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

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-links li a.active {
  background: rgba(78, 205, 196, 0.2);
  border: 1px solid rgba(78, 205, 196, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Page Content Styles */
.page-content {
  display: none;
}

.page-content.active {
  display: block;
}

/* Header */
.header {
  text-align: center;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  font-style: italic;
}

/* Event Banner */
.event-banner {
  margin: 20px 0 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.event-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Main Content Grid */
.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* Stream Info */
.stream-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stream-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.stream-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.detail-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.detail-value {
  font-size: 1.4rem;
  font-weight: bold;
}

/* Donation Progress */

.gfm-embed-iframe {
  border-radius: 1em;
}

.donation-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.progress-container {
  margin: 30px 0;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.2);
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
  width: 67%;
  border-radius: 15px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.progress-text {
  margin-top: 15px;
  font-size: 1.1rem;
}

.goal-amount {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 20px 0;
  color: #4ecdc4;
}

.current-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6b6b;
}

.donate-btn {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
}

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

/* Sponsors Section */
.sponsors {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden;
}

.sponsors h2 {
  margin-bottom: 30px;
  font-size: 2rem;
}

.sponsor-tier-section {
  margin-bottom: 35px;
}

.sponsor-tier-section:last-of-type {
  margin-bottom: 20px;
}

.tier-heading {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.tier-heading.platinum {
  color: #e5e4e2;
  border-bottom-color: #e5e4e2;
}

.tier-heading.gold {
  color: #ffd700;
  border-bottom-color: #ffd700;
}

.tier-heading.silver {
  color: #c0c0c0;
  border-bottom-color: #c0c0c0;
}

/* Infinite Scroll Styles */
.scroller {
  max-width: 100%;
  margin-bottom: 30px;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 10%,
    white 90%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 25s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller:hover .scroller__inner {
  animation-play-state: paused;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 15s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] .scroller__inner {
  gap: 8rem;
}

.scroller[data-speed="medium"] {
  --_animation-duration: 25s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 1rem));
  }
}

.sponsor-card {
  /* background: rgba(255, 255, 255, 0.15); */
  padding: 20px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  min-width: 180px;
  flex-shrink: 0;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.sponsor-logo {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.sponsor-tier-section:first-of-type .sponsor-logo-img {
  width: 200px;
  height: 200px;
}

.sponsor-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}

.sponsor-name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 5px;
  text-align: center;
  visibility: hidden;
}

.sponsor-description {
  font-size: 0.8rem;
  opacity: 0.8;
  font-style: italic;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .scroller__inner {
    gap: 1.5rem;
  }

  .sponsor-card {
    min-width: 160px;
    padding: 15px;
  }

  .scroller[data-speed="fast"] {
    --_animation-duration: 12s;
  }

  .scroller[data-speed="slow"] {
    --_animation-duration: 25s;
  }

  .scroller[data-speed="medium"] {
    --_animation-duration: 18s;
  }
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroller[data-animated="true"] .scroller__inner {
    animation-play-state: paused;
  }
}

/* Schedule */
.schedule {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.schedule h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
}

.schedule-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid #4ecdc4;
}

.schedule-item:nth-child(even) {
  border-left-color: #ff6b6b;
}

.schedule-item:nth-child(3n) {
  border-left-color: #45b7d1;
}

.time {
  font-weight: bold;
  color: #4ecdc4;
  min-width: 100px;
}

.activity {
  flex: 1;
  margin-left: 20px;
}

/* Recent Donations */
.recent-donations {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 50px auto;
  max-width: 600px;
}

.recent-donations h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 2rem;
  color: #4ecdc4;
}

.donations-container {
  min-height: 300px; /* Consistent height for 5 items */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donation-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 4px solid #4ecdc4;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.donation-item:nth-child(2n) {
  border-left-color: #ff6b6b;
}

.donation-item:nth-child(3n) {
  border-left-color: #45b7d1;
}

.donation-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

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

.donor-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.donation-amount {
  color: #4ecdc4;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Pagination Controls */
.pagination-container {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

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

.pagination-controls {
  display: flex;
  gap: 15px;
  align-items: center;
}

.page-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}

.page-btn:hover:not(:disabled) {
  background: rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-btn.active {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-color: transparent;
}

.page-numbers {
  display: flex;
  gap: 8px;
}

/* Donation Statistics */
.donation-stats {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4ecdc4;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Loading animation */
.loading {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #4ecdc4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .recent-donations {
    margin: 20px;
    padding: 20px;
  }

  .donation-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .pagination-container {
    flex-direction: column;
    gap: 15px;
  }

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

  .page-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* About Page Styles */
.about-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  color: #4ecdc4;
}

.about-content h2 {
  font-size: 1.8rem;
  margin: 30px 0 15px 0;
  color: #ff6b6b;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4ecdc4;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.tier-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tier-card.silver {
  border-top: 4px solid #c0c0c0;
}

.tier-card.gold {
  border-top: 4px solid #ffd700;
}

.tier-card.platinum {
  border-top: 4px solid #e5e4e2;
}

.tier-name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.tier-name.silver {
  color: #c0c0c0;
}

.tier-name.gold {
  color: #ffd700;
}

.tier-name.platinum {
  color: #e5e4e2;
}

.tier-price {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #4ecdc4;
}

.tier-benefits {
  text-align: left;
  margin: 20px 0;
}

.tier-benefits ul {
  list-style: none;
  padding: 0;
}

.tier-benefits li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 25px;
}

.tier-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ecdc4;
  font-weight: bold;
}

.contact-card {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
}

.contact-email {
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.contact-email:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.faq-section {
  margin: 40px 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.open {
  padding: 20px;
  max-height: 500px;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle.open {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .stream-details {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 2rem;
  }

  .stream-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 10px;
  }

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

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

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