

body {
  font-family: Arial, sans-serif;
  margin: 20px;
  line-height: 1.6;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;

  background: linear-gradient(
    to bottom,
    #faf4ee 0%,
    #ffffff 100%
  );
}

footer {
margin: 20px;
}

@media (max-width: 600px) {
  body {
    background: linear-gradient(
      to bottom,
      #fdf8f3 0%,
      #ffffff 100%
    );
  }
}

/* Video */
.video-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

video {
  width: 70%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
}

/* Mobile: video full width */
@media (max-width: 600px) {
  video {
    width: 100%;
    max-width: 100%;
  }
}

/* Heading under video */
.video-text {
  max-width: 700px;
  width: 70%;
  margin: 0 auto 10px auto;
  text-align: center;
}

@media (max-width: 600px) {
  .video-text {
    width: 100%;
    max-width: 100%;
  }
}

.bdi-inline-logo {
  max-width: 80px;
  height: auto;
}


/* Donate row: heading + button side by side */
.donate-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 700px;   /* matches video max-width */
  width: 70%;         /* matches video width */
  margin: 20px auto;
  text-align: center;
}

/* Heading inside donate row */
.donate-row h3 {
  margin: 0;
  font-size: 0.95rem;
  max-width: 450px;   /* prevents overly wide text */
  line-height: 1.4;
}

/* Mobile: stack vertically */
@media (max-width: 700px) {
  .donate-row {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
}
.donate-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ff8c00;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.donate-button:hover {
  background-color: #e57d00;
  transform: translateY(-2px);
}

/* Support + TikTok layout */
.support-and-video {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  max-width: 1100px;
  width: 100%;
  padding: 0 20px;
}

/* Support section */
.support-section {
  flex: 1;
  max-width: 450px;
  text-align: center;
  font-size: 0.9rem;
}

.support-wrapper {
  max-width: 450px;
  margin: 0 auto;
}

.support-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 16px auto;
}

.support-wrapper li {
  margin: 4px 0;
}

.support-wrapper a {
  color: #0066cc;
  text-decoration: none;
}

.support-wrapper a:hover {
  text-decoration: underline;
}

/* TikTok embed */
.tiktok-wrapper {
  flex: 1;
  max-width: 450px;
}

.tiktok-wrapper blockquote {
  margin: 0 auto;
}

/* Mobile stacking */
@media (max-width: 900px) {
  .support-and-video {
    flex-direction: column;
    align-items: center;
  }

  .support-section,
  .tiktok-wrapper {
    max-width: 100%;
  }
}

/* Mobile vertical spacing reduction */
@media (max-width: 600px) {

  body {
    margin: 10px; /* was 20px */
  }

  .video-container {
    margin-bottom: 12px; /* was 20px */
  }

  .donate-row {
    margin: 12px auto; /* was 20px */
    gap: 12px;         /* was 20px */
  }

  .support-and-video {
    margin-top: 20px;  /* was 40px */
    gap: 20px;         /* was 40px */
    padding: 0 10px;   /* slightly tighter */
  }

  .support-wrapper ul {
    margin: 10px auto; /* was 16px */
  }

  .tiktok-wrapper blockquote {
    margin-top: 10px;  /* ensures it doesn’t float too far down */
  }

  em {
    margin-top: 20px;
    display: block;
    font-size: 0.8rem;
  }
}