* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: white;
  min-height: 100vh;
  padding: 40px 20px;

  animation: fadeIn 0.4s ease;
}

.container {
  max-width: 900px;
  margin: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);

  text-align: center;
}

.page-content {
  text-align: left;
}

h1 {
  font-size: 42px;
  margin-bottom: 28px;
  color: #f59e0b;
}

h2 {
  margin-top: 32px;
  margin-bottom: 14px;
}

p {
  color: #d1d5db;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
}

ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

li {
  color: #d1d5db;
  margin-bottom: 10px;
  line-height: 1.7;
}

a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

a:hover {
  color: #fde68a;
}

.links {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-link {
  margin-top: 40px;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.navbar {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.navbar a {
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}

.navbar a:hover {
  background: rgba(255,255,255,0.12);
}

.highlight {
  color: #f59e0b;
}

.subtitle {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 42px;
}

.apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 26px;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

.card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.card p {
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.card-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.2s ease;
}

.card-links a:hover {
  background: rgba(255,255,255,0.12);
}

.email-box {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

footer {
  margin-top: 42px;
  color: #9ca3af;
  font-size: 14px;
}

@media (max-width: 768px) {

  .container {
    padding: 28px;
  }

  h1 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  .navbar {
    gap: 10px;
  }

  .navbar a {
    width: 100%;
    text-align: center;
  }

  .card-links {
    flex-direction: column;
  }

  .card-links a {
    width: 100%;
  }
}

@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
