* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* FIX: body ko flex mat banao */
body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  min-height: 100vh;
  color: #e2e8f0;
}

/* FIX: main handles centering */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* container same design */
.container {
  width: 100%;
  max-width: 1100px;
  padding: clamp(20px, 4vw, 40px);
  border-radius: 20px;

  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* heading */
h1 {
  font-size: clamp(22px, 4vw, 34px);
  margin-bottom: 8px;
  color: #38bdf8;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.35);
}

.subtitle {
  color: #94a3b8;
  margin-bottom: 26px;
  font-size: clamp(13px, 2.5vw, 15px);
}

.hindi {
  display: block;
  font-size: clamp(12px, 2.3vw, 14px);
  color: #cbd5f5;
  margin-top: 4px;
}

/* grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

/* card */
.card {
  position: relative;
  padding: clamp(18px, 3vw, 28px) 10px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: clamp(15px, 2.5vw, 18px);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card span {
  display: block;
  font-size: clamp(11px, 2vw, 13px);
  opacity: 0.9;
  margin-top: 5px;
  font-weight: 400;
}

.card small {
  display: block;
  font-size: 11px;
  opacity: 0.75;
}

/* shine effect */
.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.6s;
}

.card:hover::after {
  left: 100%;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* gradients */
.c1 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.c2 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.c3 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.c4 { background: linear-gradient(135deg, #ef4444, #dc2626); }
.c5 { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.c6 { background: linear-gradient(135deg, #a855f7, #7e22ce); }
.c7 { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.c8 { background: linear-gradient(135deg, #e11d48, #be123c); }
.c9 { background: linear-gradient(135deg, #10b981, #047857); }
.c10 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }

/* mobile */
@media (max-width: 480px) {
  main {
    padding: 12px;
  }

  .container {
    border-radius: 14px;
    padding: 18px;
  }

  .card {
    border-radius: 12px;
  }
}
