
/* Google Fonts: Gloria Hallelujah + VT323
<link href="https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=VT323&display=swap" rel="stylesheet">
*/

body {
background-image: url('https://i.pinimg.com/originals/73/4b/76/734b76881d8efba9208af2b69e5b1781.gif');
background-repeat: no-repeat;
background-size: cover; /* Cực kỳ quan trọng để fill full màn */
background-position: center; /* Căn giữa ảnh */
background-attachment: fixed;

font-family: 'Comic Sans MS', cursive;
color: #2f4f4f;
margin: 0;
padding: 10px;
overflow-x: hidden;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
}

/* ===== Daily layout ===== */
.daily-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  justify-content: center;
  padding: 10px;
}

.daily-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffe6e6;
  border: 2px dashed #ff9999;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 5px #ffd6d6;
  font-size: 0.8rem;
  height: 100%;
  text-align: center;
}

.daily-item img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 5px #ffd6d6;
  margin-bottom: 6px;
}

.daily-item p,
.daily-item h4 {
  margin: 4px 0;
  line-height: 1.2;
  font-size: 0.78rem;
}

/* ===== Color box ===== */
.color-box {
  width: 48px;
  height: 48px;
  margin: 0 auto 6px;
  background-color: #ffe6e6;
  border: 2px dashed #ff9999;
  box-shadow: 0 0 4px #ffd6d6;
  border-radius: 6px;
}

/* ===== Marquee ===== */
.top-marquee h1 {
  animation: scroll 15s linear infinite;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.95rem;
  color: #ff9999;
  margin: 20px 0 0;
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ===== Spotify box ===== */
.spotify-box {
  width: 180px;
  margin: 12px auto;
  padding: 6px;
  background-color: #ffe6e6;
  border: 2px dashed #ff9999;
  border-radius: 10px;
  box-shadow: 0 0 4px #ffd6d6;
  text-align: center;
  font-size: 0.75rem;
}

.spotify-box h4 {
  margin: 0 0 4px;
  color: #ff9999;
  font-family: 'VT323', monospace;
  font-size: 1rem;
}

/* ===== Hover effect cho ảnh ===== */
.daily-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 8px #ffb3b3;
  transition: all 0.2s ease-in-out;
}
 
  cursor: url(https://cur.cursors-4u.net/nature/nat-10/nat927.ani), 
          url(https://cur.cursors-4u.net/nature/nat-10/nat927.png), 
          auto ;
}

