* {
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  margin: 0;
  background: #0b1220;
  color: #fff;
}

header {
  text-align: center;
  padding: 20px;
}

header h1 {
  color: #38bdf8;
  margin: 0;
}

header p {
  color: #94a3b8;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  padding: 20px;
}

/* الكرت */
.card {
  background: #111827;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

/* الصورة (باستخدام background-image) */
.image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  cursor: zoom-in;
}

/* النص */
.text {
  font-size: 13px;
  color: #e5e7eb;
  margin: 10px 0;
  white-space: pre-line;
}

/* الأزرار */
.buttons {
  display: flex;
  gap: 6px;
  margin-top: auto;
}

button {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 12px;
  cursor: pointer;
}

.copy {
  background: #22c55e;
  color: #052e16;
}

.open {
  background: #38bdf8;
  color: #042f2e;
}

/* نافذة التكبير */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 12px;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}