/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Body */
body {
  background: #0a0a0a;
  color: #eee;
  line-height: 1.6;
}

/* Hero */
.hero {
  position: relative;
  background: url('images/silksong-hero.jpg') no-repeat center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #c0392b, #e74c3c);
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* About */
.about p {
  margin-bottom: 20px;
}

.about-img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

/* Features */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 12px;
  min-width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Steps */
.steps ol {
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.motivation {
  margin-top: 20px;
  color: #f1c40f;
  font-weight: 600;
}

/* Download */
.download-img {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.7);
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-download {
  padding: 14px 26px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.3s;
}

.btn-download:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #1e8449, #27ae60);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
  background: #111;
}
