/* Core Page Styles */
:root {
  --mc-green: #2ecc71; /* Creeper Green */
  --mc-blue: #3498db;  /* Diamond Blue */
  --glass: rgba(255, 255, 255, 0.08);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  /* Dynamic 2026 Gradient Background */
  background: linear-gradient(135deg, var(--mc-green), var(--mc-blue));
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Glassmorphic Download Card */
.download-card {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Animated Download Button */
.download-btn {
  display: inline-block;
  background: white;
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* 2026 Shimmer Effect */
  position: relative;
  overflow: hidden;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  background: #f8f9fa;
}

.version-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}
