* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;

  font-weight: 450;
  color: #e5e7eb;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(0, 255, 200, 0.15), transparent 60%),
    radial-gradient(900px 500px at 10% 40%, rgba(99, 102, 241, 0.25), transparent 60%),
    linear-gradient(180deg, #020617 0%, #05060a 100%);

  background-attachment: scroll;
}

/* Top bar */
.top-bar {
  padding: 30px 40px;
}

.back-btn {
  position: absolute;
  top: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(229, 231, 235, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);

  transition: all 0.25s ease;
}

.back-btn:hover {
  color: #ffffff;
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
  transform: translateX(-2px);
}

/* Container */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 80px;
  flex: 1;
}

/* Hero */
.hero {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 120px; /* add this */
}

.hero h1 {
  font-size: 42px;
  background: linear-gradient(90deg, #22d3ee, #6366f1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  margin-top: 15px;
  opacity: 0.7;
}

/* Platform */
.platform {
  margin-bottom: 80px;
}

.platform h2 {
  margin-bottom: 30px;
  font-size: 22px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Card */


.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}



.card {
  background: rgba(20, 30, 60, 0.8);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #22d3ee;
  box-shadow: 0 0 30px rgba(34,211,238,0.2);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin: 12px 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.paid { background: rgba(234,179,8,0.2); color: #facc15; }
.free { background: rgba(34,197,94,0.2); color: #22c55e; }
.safe { background: rgba(34,197,94,0.2); color: #22c55e; }
.bad { background: rgba(239,68,68,0.2); color: #ef4444; }
.offline { background: rgba(148,163,184,0.2); color: #94a3b8; }


.badge-row {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  flex-wrap: wrap;
}

/* Footer */
footer {
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 12px;
  padding: 10px 16px;

  border-radius: 999px;
  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  color: #9fdcff;

  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.3);

  transition: all 0.25s ease;
}

.trust-badge:hover {
  background: rgba(34, 211, 238, 0.15);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.25);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .back-btn {
    top: 16px;
    left: 16px;
    font-size: 13px;
    padding: 8px 12px;
  }
}