body {
  margin: 0;
  font-family: "Verdana", sans-serif;
  color: #eee;
  background: 
    linear-gradient(rgba(20, 10, 30, 0.2), rgba(10, 5, 20, 0.6)),
    url('../images/tarot-landscape.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* dreamy grain */
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(255, 200, 255, 0.15), transparent 60%);
}

/* floating window */
.window {
  width: 320px;
  margin: 100px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.75);
  color: #333;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255,255,255,0.8);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

a, button {
  display: block;
  margin: 10px 0;
  padding: 8px;
  text-decoration: none;
  color: #555;
  background: rgba(255,255,255,0.5);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

a:hover, button:hover {
  background: rgba(255,255,255,0.9);
  transform: scale(1.05);
}

/* entries */
.entry {
  margin-top: 20px;
  text-align: left;
  font-size: 13px;
}

/* tarot presence text */
#presence, #cardResult {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.7;
}

/* stars */
.star {
  position: fixed;
  font-size: 14px;
  animation: blink 2s infinite alternate;
}

@keyframes blink {
  from { opacity: 0.2; }
  to { opacity: 1; }
}

/* ABOUT PAGE LAYOUT */
.about-container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

/* LEFT SIDE */
.about-text {
  width: 400px;
  background: rgba(255, 255, 255, 0.75);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  color: #333;
}

/* BOOK BUTTON */
.book-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  text-decoration: none;
  color: #444;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: rgba(255,255,255,0.95);
  transform: scale(1.05);
}

/* RIGHT SIDE */
.about-portrait {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE */
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.9) contrast(1.05) saturate(0.9);
  box-shadow: 0 0 30px rgba(255, 200, 255, 0.3);
}

/* DREAMY GLOW */
.portrait-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 200, 255, 0.25), transparent 70%);
  z-index: -1;
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text {
    width: 90%;
  }

  .about-portrait {
    width: 250px;
    height: 320px;
  }
}