body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #181b20 radial-gradient(circle at 70% 30%, #00d08422 0%, transparent 70%);
    color: #f5f6fa;
    margin: 0;
    padding: 0;
}
header {
    background: #23272f;
    padding: 1rem 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}
.logo {
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #f5f6fa;
    text-decoration: none;
    transition: color 0.2s;
}
nav a:hover {
    color: #00d084;
}
.hero {
    background: linear-gradient(90deg, #23272f 60%, #00d08420 100%);
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
}
.hero h1 {
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.7rem;
    color: #fff;
    text-shadow: 0 2px 12px #00d08433;
}
.hero p {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta {
    display: inline-block;
    background: #00d084;
    color: #181b20;
    padding: 1rem 2.2rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 18px #00d08455;
    transition: background 0.2s;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 1rem;
}
.cta:hover {
    background: #00b36b;
}
.updates, .explainer, .newsletter, .monetize {
    max-width: 700px;
    margin: 2rem auto;
    background: #22252b;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px #0002;
    border-left: 4px solid #00d084;
}
.updates h2, .explainer h2, .newsletter h2, .monetize h2, .affiliates h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #00d084;
    display: flex;
    align-items: center;
}
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 2.5rem;
}
.news-list {
  padding-left: 1.2rem;
  margin-top: 1rem;
}
.news-list li {
    margin-bottom: 0.7rem;
}
.newsletter form {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
}
.newsletter input[type="email"] {
    flex: 1;
    padding: 0.5rem;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
}
.newsletter button {
    background: #00d084;
    color: #181b20;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter button:hover {
    background: #00b36b;
}
.disclaimer {
    font-size: 0.9rem;
    color: #bbb;
}
footer {
    background: #23272f;
    text-align: center;
    padding: 1rem 0 2rem 0;
    font-size: 1rem;
    color: #bbb;
    margin-top: 2rem;
}
.social-links a {
    color: #00d084;
    margin: 0 0.3rem;
    text-decoration: none;
}
.social-links a:hover {
    text-decoration: underline;
}
/* Timeline Styles */
.timeline-container {
  position: relative;
  margin: 2rem auto;
  padding: 1rem 0 1rem 40px;
  max-width: 800px;
}
.timeline-container::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #00d084;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 32px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px;
  background: #23272f;
  border: 3px solid #00d084;
  box-shadow: 0 0 0 3px #181b20;
  width: 16px;
  height: 16px;
  top: 5px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-date {
  font-weight: bold;
  margin-bottom: 0.3rem;
  display: block;
  margin-left: 16px;
}
.timeline-content {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #22252b;
  border-radius: 8px;
}
.timeline-content a {
  color: #00d084;
  text-decoration: none;
}
.timeline-content a:hover {
  text-decoration: underline;
}
/* Homepage Images */
.hero-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0006;
}
.section-icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-bottom: 4px;
}
.explainer-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.explainer-img {
  width: 120px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0003;
  flex-shrink: 0;
}
.affiliates ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}
.affiliates li {
  margin-bottom: 0.5rem;
}
.donations {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.donations div {
  margin-bottom: 0.4rem;
}
.monotize p, .affiliates p {
  margin-bottom: 0.7rem;
}
.section-divider {
    border: none;
    border-top: 1.5px solid #2e323a;
    margin: 2.5rem auto;
    max-width: 700px;
    opacity: 0.7;
}
@media (max-width: 700px) {
    nav ul {
        gap: 0.7rem;
    }
    .hero h1 {
        font-size: 1.7rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .cta {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    main {
      padding: 0 0.3rem;
    }
    section {
      margin-bottom: 1.4rem;
    }
    .updates, .explainer, .newsletter {
        padding: 1rem 0.5rem;
    }
    .hero-img {
        max-width: 98vw;
        border-radius: 10px;
    }
    .section-icon {
        width: 24px;
        height: 24px;
    }
    .explainer-flex {
        flex-direction: column;
        gap: 0.7rem;
    }
    .explainer-img {
        width: 80px;
        border-radius: 8px;
    }
}
