body { 
  font-family: Arial, sans-serif; 
  background: #f5f1e6; 
  color: #3e2c14; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  height: 100vh; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}

.title {
  font-size: 2em;
  font-weight: bold;
  background: linear-gradient(45deg, #fcd77f, #d4a017, #e0c97f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.version { 
  font-size: 0.85em; 
  color: #5a3e1b; 
  font-weight: bold; 
  margin-bottom: 20px; 
}

.container { 
  display: flex; 
  gap: 20px; 
}

.card {
  background: #fff4e0;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 200px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: .3s;
}

.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 6px 18px rgba(0,0,0,0.25); 
}

.card i { 
  font-size: 2em; 
  color: #d4a017; 
  margin-bottom: 10px; 
  display: block; 
}

.card h3 { 
  margin-bottom: 8px; 
  font-size: 1.2em; 
}

.card a { 
  display: inline-block; 
  padding: 6px 12px; 
  background: #d4a017; 
  color: white; 
  border-radius: 6px; 
  font-weight: bold; 
  transition: .3s; 
}

.card a:hover { 
  background: #e0c97f; 
  color: #3e2c14; 
}

.card.dim {
  opacity: 0.5;
  pointer-events: none;
}
