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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jua', sans-serif;
  background: linear-gradient(135deg, #FFD9A0 0%, #FFB8D9 35%, #D9B3FF 70%, #B3D9FF 100%);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
  padding: 24px;
}

.bg-deco { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.bg-deco .deco { position: absolute; opacity: 0.35; font-size: 28px; color: #fff; }
.bg-deco .star { top: 8%; left: 10%; }
.bg-deco .heart { top: 70%; left: 85%; font-size: 22px; }
.bg-deco .star2 { top: 80%; left: 8%; font-size: 20px; }

.diary-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: #FFFDF7;
  border: 2px dashed #C9A876;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  text-align: center;
}

.site-title {
  font-size: 22px;
  color: #5C3D2E;
  margin-bottom: 8px;
}

.visit-counter {
  font-size: 13px;
  color: #A68A64;
  margin-bottom: 16px;
}

.welcome-msg {
  font-size: 15px;
  color: #6B5B4D;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FFE8CC, #FFD3E8);
  text-decoration: none;
  color: #5C3D2E;
  font-family: 'Jua', sans-serif;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.service-card:hover { transform: scale(1.05); }

.card-icon { font-size: 32px; }

@media (max-width: 420px) {
  .diary-box { padding: 24px 16px; }
  .site-title { font-size: 19px; }
}
