* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0b1f3a;
  color: #ffffff;
  font-family: Arial, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1.6;
  padding: 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 30px;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

#searchInput {
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}

.amaro-page {
  max-width: 1100px;
  margin: 0 auto;
}

.category-section {
  margin-bottom: 40px;
}

.category-title {
  font-size: 1.7rem;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.amaro-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.amaro-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.amaro-image {
  width: 140px;
  min-width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.amaro-image:hover {
  transform: scale(1.04);
}

.amaro-info {
  flex: 1;
}

.amaro-info h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.amaro-info p {
  margin-bottom: 8px;
}

.amaro-info strong {
  color: #d6e6ff;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #ffffff;
  font-size: 42px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .category-title {
    font-size: 1.4rem;
  }

  .amaro-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .amaro-image {
    width: 100%;
    max-width: 240px;
    height: auto;
    min-width: unset;
  }

  .amaro-info {
    width: 100%;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 36px;
  }

  }
  .stats {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
  }

  .stats h2 {
    text-align: center;
    margin-bottom: 15px;
  }

  .stats-block {
    margin-bottom: 10px;
  }

  .stats-block h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #d6e6ff;
  }

  .stats-block p {
    font-size: 0.95rem;
  }
  .stats h2 {
  cursor: pointer;
}

.stats-content {
  display: none;
}