@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0e0e0e;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #00ffcc;
  text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc, 0 0 60px #00ffcc;
}

.container {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
}

.card {
  background: #1b1b1b;
  border: 2px solid #00ffcc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.7);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card-content {
  margin-top: 10px;
}

.card-content h3 {
  margin: 0;
  color: #00ffcc;
}

.card-content p {
  margin: 5px 0;
  color: #a0a0a0;
}

.search-container {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.search-container input[type="text"] {
  width: 300px;
  padding: 10px;
  border: 2px solid #00ffcc;
  border-radius: 5px;
  background: #1b1b1b;
  color: #e0e0e0;
  outline: none;
  transition: box-shadow 0.3s;
}

.search-container input[type="text"]:focus {
  box-shadow: 0 0 10px #00ffcc;
}

#decryption-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #0f0;
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
}

#decryption-animation div {
  font-size: 16px;
  line-height: 20px;
}
