/* ================= GENERAL ================= */
body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #f9f9f9;
  margin: 0;
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #ff9800, #ffc107);
  color: white;
}

.hero .logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero .tagline {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ================= CARDS ================= */
.card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Headings */
.card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ff9800;
  display: inline-block;
  padding-bottom: 0.3rem;
}

/* Info grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

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

.info-grid div {
  display: flex;
  flex-direction: column;
}

.info-grid strong {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #ff9800;
}

/* Market grid */
.market-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.market-grid a {
  flex: 1 1 45%;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: #fff3e0;
  color: #ff9800;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.market-grid a:hover {
  background: #ff9800;
  color: white;
  transform: translateY(-2px);
}

/* External links */
.external {
  color: #ff9800;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.external:hover {
  text-decoration: underline;
  transform: translateY(-2px);
}

/* Social grid */
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-grid a {
  flex: 1 1 45%;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: #fff3e0;
  color: #ff9800;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.social-grid a:hover {
  background: #ff9800;
  color: white;
  transform: translateY(-2px);
}

/* Updates list */
.updates li {
  margin-bottom: 1.2rem;
}

.update-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.update-links a {
  margin-right: 0.8rem;
  color: #ff9800;
  text-decoration: none;
}

.update-links a:hover {
  text-decoration: underline;
}

/* Disclaimer */
.warning {
  background: #fff3f3;
  border-left: 4px solid #f44336;
}

/* ================= FOUNDER ================= */
.founder p {
  font-weight: 500;
  color: #555;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #222;
  color: #fff;
  font-size: 0.9rem;
}

footer small {
  display: block;
  margin-top: 0.5rem;
  color: #ccc;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .info-grid,
  .info-grid.two-column {
    grid-template-columns: 1fr;
  }
  .social-grid a,
  .market-grid a {
    flex: 1 1 100%;
  }
}
