/*  BASE STYLE */
body {
  background: linear-gradient(to bottom right, #ffd6f6, #ffe0f8);
  font-family: "EB Garamond";
  color: #996633;
  text-align: center;
  padding: 30px;

/* CENTRE WEBSITE */
  margin: 0;
}

.container {
  max-width: 800px;
  height: 1000px;
  margin: 0 auto;
  background: #F5EBC9;
  padding: 7px;
}

/*  HEADER */
h1 {
  font-size: 45px;
  color: #996633;
  text-shadow: 2px 2px #e6ccb3;
  margin-bottom: 20px;
}

/* SPARKLE TEXT */
.sparkle-text {
  font-size: 22px;
  color: #996633;
  text-shadow: 1px 1px #e6ccb3;
}

/* BOX */
.box {
  background: #e6ccb3;
  padding: 20px;
  margin: 30px auto;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 0 15px #e6ccb3;
}

/*  FOOTNOTE */
.small-note {
  font-size: 14px;
  opacity: 0.8;
}

/* MARQUEE STYLE */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
  color: #996633;
  font-weight: bold;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

/* GLITTER SPARKLES */
.glitter {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 6px 2px white, 0 0 10px 4px rgba(255,255,255,0.4);
  animation: sparkle-wand 0.8s ease-out forwards;
}

@keyframes sparkle-wand {
  0% { transform: scale(0.5); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.9; }
  100% { transform: scale(2); opacity: 0; }
}
