/* references.css */

/* Glowing kutu - vizyon misyondaki gibi */
.glowing-box {
  background-color: #111827; /* koyu koyu gri/siyah */
  border-radius: 1rem;
  box-shadow:
    0 0 10px #0ea5e9,
    0 0 30px #0ea5e9,
    0 0 60px #0ea5e9;
  transition: box-shadow 0.3s ease;
  height: 150px;
  width: 100%;
  max-width: 200px;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glowing-box:hover {
  box-shadow:
    0 0 15px #3b82f6,
    0 0 40px #3b82f6,
    0 0 80px #3b82f6;
}

/* Görseller */
.glowing-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

/* Responsive küçültme */
@media (max-width: 576px) {
  .glowing-box {
    height: 120px;
    max-width: 140px;
  }
}
