body {
  font-family: 'Press Start 2P', cursive;
  background-color: #fff0f8;
  color: #4b004b;
  margin: 0;
  padding: 20px;
  background-image: url('https://i.pinimg.com/originals/b1/58/f4/b158f4cc0584572b4cdab742ef9bf7c0.gif');
  background-repeat: repeat;
  background-size: auto;
  box-sizing: border-box;
  overflow-x: hidden; /* Ngăn kéo ngang */
}

h1 {
  text-align: center;
  font-size: 20px;
  color: #ff66cc;
  text-shadow: 2px 2px #fff, 0 0 10px #ffc0cb;
  margin-bottom: 40px;
  animation: blink 1s infinite alternate;
}
h3 {
  font-size: 12px;
  color: #ff66cc;
  margin-bottom: 6px;
}

@keyframes blink {
  from { opacity: 1; }
  to { opacity: 0.7; }
}

.daily-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  padding: 0 15px;
  max-width: 700px;
  margin: auto;
}

.daily-item {
  background: #ffffffdd;
  border: 2px dotted #ff99cc;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 6px #ffccff;
  font-size: 10px;
  text-align: center;
  transition: transform 0.2s ease;
}
.daily-item img {
  max-width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 8px;
}

.daily-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 16px #ffccff, 0 0 24px #ffc0cb;
}

.daily-item {
  background: #ffffffcc;
  border: 3px dotted #ff99cc;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 0 8px #ffccff, 0 0 14px #ffc0cb;
  text-align: center;
  transition: transform 0.3s ease;
  max-width: 220px;       /* Giới hạn chiều ngang */
  margin: 0 auto;          /* Căn giữa khi cần */
  font-size: 10px;         /* Chữ nhỏ nhắn */
}


.color-box {
  width: 100px;
  height: 100px;
  margin: auto;
  border: 2px solid #ff99cc;
  border-radius: 10px;
  box-shadow: 0 0 8px #ff99cc;
}

a {
  color: #ff66cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.blog-section {
  grid-column: 1 / -1;
  background-color: #ffe6f9;
  border: 2px dotted #ff99cc;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 10px #ffccff;
}

.blog-post {
  padding-top: 10px;
  font-size: 12px;
  color: #333;
}
