/* style.css  */
@charset "utf-8";

body {
  margin: 0;
  padding: 0;
   font-family: 'Inter', sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}
.title {
  font-size: 3em;
  font-weight: bold;
  margin-top: 80px;
  margin-bottom: 80px;
}
.button-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  margin-top: 20px;
}
.button-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #222;
}
.circle-icon {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ffa200;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.circle-icon img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.button-label {
  font-size: 1.6em;
  margin-top: 0;
  font-weight: 500;
}
@media (max-width: 900px) {
  .button-row {
    flex-direction: column;
    gap: 40px;
  }
}

.btn-primary-vivid {
    background-color: #F97316;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.0rem;
    transition: background-color 0.3s ease;
}
.btn-primary-vivid:hover {
    background-color: #EA580C;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 2rem;
 }
.pagination button {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.pagination button:hover {
     background-color: #f0f0f0;
}
.pagination button.active {
    background-color: #0891b2;
    color: white;
    border-color: #0891b2;
 }
 .pagination button:disabled {
     background-color: #ddd;
     color: #aaa;
     border-color: #ddd;
     cursor: not-allowed;
 }
