/* reset */

  
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  padding: 2rem;
  font-family: system-ui, -apple-system, sans-serif;
}

.bento-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  padding: 1rem;
  background: white;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bento-item {
  background: #1C7C54;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  color: #73E2A7;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Roundo', sans-serif;
}

.bento-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #e0e0e0;
  font-family: 'Roundo', sans-serif;
}

/* Featured items */
.feature-1 {
  grid-column: span 2;
  grid-row: span 2;
  background: #B1CF5F;
  font-family: 'Roundo', sans-serif;
  color: #1B512D;
  font-size: 4rem;
}

.feature-2 {
  grid-column: span 2;
  font-family: 'Roundo', sans-serif;
  background: #DEF4C6;
  color: #1B512D;
  font-size: 2.5rem;
}

.feature-3 {
  grid-row: span 2;
  background: #DEF4C6;
  font-family: 'Roundo', sans-serif;
  font-size: rem;
  color: #1B512D;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    aspect-ratio: auto;
  }

  .feature-1,
  .feature-2,
  .feature-3 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .bento-container {
    grid-template-columns: 1fr;
  }
}
