/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(145deg, #1f1f1f, #2d2d2d);
  color: #fefefe;
  scroll-behavior: smooth;
  min-height: 100vh;
  text-align: center;
  overflow-x: hidden;
  animation: fadeIn 0.8s ease-in;
}

a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #74b9ff;
}

/* Header */
header {
  background: rgba(20, 20, 20, 0.85);
  padding: 3rem 1rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

h2 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 1.5rem;
}

/* Main Layout */
main {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Images */
.image-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 2rem;
}

.screenshot {
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Description Card */
.card {
  background: rgba(255, 255, 255, 0.04);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Download Buttons */
.downloads {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.download-btn {
  width: 300px;
  height: 100px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.patreon {
  margin: 3rem 0;
}

.patreon-wrapper {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem 2rem;
  display: inline-block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.patreon-wrapper:hover {
  transform: scale(1.03);
}


/* Footer */
footer {
  margin-top: 4rem;
  padding: 2rem 1rem;
  background: #1a1a1a;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer a {
  color: #4a90e2;
}

footer a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
