@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fefefe;
  padding-bottom: 80px;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1rem;
  margin: 0.25rem 0;
}

header a {
  color: #ffd369;
  text-decoration: none;
}

.intro {
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.projects {
  padding: 2rem 1.5rem;
  max-width: 1000px;
  margin: auto;
}

.projects h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.app-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.app-card .header {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.details {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.details .icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffd369;
}

.details .summary {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.details .installs {
  font-size: 0.9rem;
  color: #ccc;
}

footer {
  text-align: center;
  padding: 1rem;
  color: #aaa;
  font-size: 0.85rem;
}
