:root{
  --accent:#cdeca8;
  --panel:#eaf5d6;
  --muted:#6b6b6b;
  --rounded:18px;
  --box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Base layout */
html,body{
  height:100%;
  margin:0;
  font-family: "Nunito", system-ui, sans-serif;
  background:#7fbf40;
}

body{
  background-image:url('bg-clover.jpg'); /* upload your clover image */
  background-size:220px;
  background-repeat:repeat;
  background-position:center top;
  padding:28px;
}

.card{
  max-width:1200px;
  margin:0 auto;
  position:relative;
  padding:36px;
  background:rgba(255,255,255,0.04);
  border-radius:24px;
  min-height:640px;
  overflow:visible;
}

/* Title */
header{text-align:center;margin-bottom:6px;}
h1{
  font-family:"Press Start 2P", monospace;
  letter-spacing:2px;
  margin:0;
  font-size:36px;
  color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,0.5);
}

/* Grid layout */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  margin-top:18px;
}
.left{display:flex;flex-direction:column;gap:18px;}
.right{display:flex;flex-direction:column;gap:18px;align-items:flex-end;}

.panel{
  background:linear-gradient(180deg,rgba(255,255,255,0.95),rgba(245,255,235,0.9));
  padding:18px;
  box-shadow:0 6px 14px rgba(0,0,0,0.16);
  color:#1b1b1b;
}

.diary{
  font-family:"Nunito",sans-serif;
  line-height:1.35;
  font-size:15px;
  border-left:6px dashed rgba(0,0,0,0.06);
  min-height:140px;
}

.book{display:flex;gap:12px;align-items:center;}
.book img{
  width:92px;height:120px;object-fit:cover;
  border-radius:8px;
  box-shadow:0 6px 12px rgba(0,0,0,0.18);
}

.todo ul{padding-left:18px;margin:6px 0 0 0;}
.todo li{margin:6px 0;list-style:square;}

.game{display:flex;gap:14px;align-items:center;justify-content:center;}
.sudoku{
  width:140px;height:140px;
  background:#fff;border-radius:12px;padding:8px;
  box-shadow:0 6px 12px rgba(0,0,0,0.12);
}

.word-of-day{max-width:320px;}
.media-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;}
.media-grid img{
  width:100%;height:86px;object-fit:cover;border-radius:8px;
}

/* Speech bubble */
.bubble{
  position:absolute;
  top:72px;
  right:36px;
  background:#fff;
  padding:10px 14px;
  border-radius:24px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
  font-size:12px;
}

/* Footer strip */
.footer-strip{
  margin-top:18px;
  height:36px;
  border-radius:10px;
  background:linear-gradient(90deg,#526b36,#94bf6b);
  box-shadow:inset 0 -4px 12px rgba(0,0,0,0.18);
}

/* Small screen tweaks */
@media (max-width:900px){
  .grid{grid-template-columns:1fr;}
  .right{align-items:stretch;}
  h1{font-size:28px;}
  .bubble{right:8px;left:8px;top:120px;}
}

.stars{color:#f5c542;letter-spacing:2px;margin-top:8px;}
