.fortune-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.fortune-header {
  margin-bottom: 2rem;
}

.fortune-date {
  color: #6c757d;
  font-size: 1.1rem;
}

.fortune-result {
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.fortune-level {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.fortune-score {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.fortune-advice {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #495057;
}

.fortune-tip {
  padding: 1rem;
  background: #e9ecef;
  border-radius: 8px;
  font-size: 1.1rem;
}

/* From Uiverse.io by kirzin */ 
.fortune-button {
  text-decoration: none;
  position: relative;
  border: none;
  font-family: inherit;
  cursor: pointer;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  line-height: 2em;
  text-align: center;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 300%;
  border-radius: 30px;
  z-index: 1;
}

.fortune-button:hover {
  animation: ani 8s linear infinite;
  border: none;
}

@keyframes ani {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 400%;
  }
}

.fortune-button:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 35px;
  transition: 1s;
}

.fortune-button:hover::before {
  filter: blur(20px);
}

.fortune-button:active {
  background: linear-gradient(32deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
}


/* 运势等级颜色 */
.great-fortune { color: #e74a3b; }  /* 大吉 - 红色 */
.good-fortune { color: #1cc88a; }   /* 吉 - 绿色 */
.normal-fortune { color: #36b9cc; } /* 中吉 - 青色 */
.bad-fortune { color: #6f42c1; }    /* 凶 - 紫色 */
