/* style.css for raspite, totally not stolen (with permission) from spatula.hackclub.com */

body {
  background: #18181b;
  color: #f4f4f5;
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  background: #23232a;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.25);
  padding: 32px 24px 16px 24px;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 0.2em 0;
  color: #ff2d2d;
  letter-spacing: -2px;
}

.spinning-logo {
  display: inline-block;
  width: 40px;
  height: 40px;
  animation: spin 3s linear infinite;
  margin-left: 0.3em;
}

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

header h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #e5e5e5;
  margin: 0 0 1.5em 0;
}

.intro p {
  font-size: 1.15rem;
  margin-bottom: 2em;
}

.steps h2 {
  font-size: 1.3rem;
  color: #ff2d2d;
  margin-bottom: 0.5em;
}

.steps ol {
  padding-left: 1.2em;
  margin-bottom: 2em;
}

.steps li {
  margin-bottom: 0.7em;
  font-size: 1.08rem;
}

.examples {
  margin-bottom: 2em;
}

.prizes {
  margin-bottom: 1em;
}

.examples h2 {
  font-size: 1.3rem;
  color: #ff2d2d;
  margin-bottom: 0.5em;
}

.examples p {
  font-size: 1.08rem;
  margin-bottom: 1.5em;
}

.example-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1em;
}

@media (min-width: 480px) {
  .example-grid {
    grid-template-columns: 1fr;
  }
}

.example-card {
  background: #23232a;
  border: 1px solid #2d2d36;
  border-radius: 12px;
  padding: 1.2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.example-card:hover {
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
  border-color: #ff2d2d;
}

.example-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f4f4f5;
  margin: 0 0 0.5em 0;
}

.example-card p {
  font-size: 0.95rem;
  color: #bdbdbd;
  margin: 0 0 1em 0;
  line-height: 1.4;
}

.example-link {
  color: #ff2d2d;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.prize-card {
  background: #23232a;
  border: 1px solid #2d2d36;
  border-radius: 12px;
  padding: 1.2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.prize-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f4f4f5;
  margin: 0 0 0.5em 0;
}

.prize-card p {
  font-size: 0.95rem;
  color: #bdbdbd;
  margin: 0 0 1em 0;
  line-height: 1.4;
}

.cta {
  text-align: center;
  margin-bottom: 2em;
}

.button {
  display: inline-block;
  background: #ff2d2d;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7em 2.2em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(255,45,45,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.button:hover {
  background: #c43c36;
  box-shadow: 0 4px 16px 0 rgba(255,45,45,0.18);
  transform: translateY(-2px) scale(1.04);
}

footer {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin-top: 2em;
}

footer a {
  color: #ff2d2d;
  text-decoration: underline;
}

a {
  color: #ff2d2d;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c43c36;
}
