:root {
  --top-left: #ffffff;
  --top-right: #ffffff;
  --bottom-left: #ffffff;
  --bottom-right: #ffffff;
}
body {
  margin: 0;
  font-family: sans-serif;
  background: linear-gradient(to bottom right,
    var(--top-left),
    var(--top-right),
    var(--bottom-right),
    var(--bottom-left)
  );
  transition: background 1.5s ease;
}
#site-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #678;
  margin-top: 60px;
  padding: 20px 10px;
  border-top: 1px solid #ddd;
}
#gradient-background {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
}
.gradient-layer {
  position: absolute;
  inset: 0;
  transition: opacity 1s linear;
  will-change: opacity;
}
#background-floaters {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -3;
  overflow: hidden;
}
.floater {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  animation: floatUp linear forwards;
  box-shadow: 
    inset -6px -6px 22px rgba(255, 255, 255, 0.8),
    0 0 6px rgba(0, 0, 0, 0.2);
}

@keyframes floatUp {
  from {
    transform: translateY(110vh);
    opacity: 0;
  }
  to {
    transform: translateY(-10vh);
    opacity: 1;
  }
}
@keyframes bookHop {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-4px); }
  60%  { transform: translateY(2px); }
  100% { transform: translateY(0); }
}
@keyframes bookPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@keyframes bookWiggleHop {
  0%   { transform: translateY(0) rotate(0deg); }
  20%  { transform: translateY(-6px) rotate(-3deg); }
  40%  { transform: translateY(-6px) rotate(3deg); }
  60%  { transform: translateY(-6px) rotate(-2deg); }
  80%  { transform: translateY(-6px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes bookShuffle {
  0%   { transform: translate(0px, 0px); }
  10%  { transform: translate(-4px, -8px); }
  20%  { transform: translate(-4px, 0px); }
  50%  { transform: translate(-4px, 0px); }
  60%  { transform: translate(2px, -4px); }
  70%  { transform: translate(2px, 0px); }
  90%  { transform: translate(2px, 0px); }
  95%  { transform: translate(0px, -2px); }
  100% { transform: translate(0px, 0px); }
}

.book.fidget-hop, .music.fidget-hop {
  animation: bookHop 0.4s ease;
}
.book.fidget-pulse, .music.fidget-pulse {
  animation: bookPulse 0.5s ease;
}
.book.fidget-wiggle, .music.fidget-wiggle {
  animation: bookWiggleHop 0.7s ease;
}
.book.fidget-shuffle, .music.fidget-shuffle {
  animation: bookShuffle 0.5s ease;
}

.site-logo {
  width: 100%;
  max-width: 600px;
}

.newsletter-hey {
  margin: 1rem auto 0 auto;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.newsletter-button {
  display: inline-block;
  padding: 0.5rem;
  animation: pulseButton 1.8s linear infinite;
  will-change: transform;
}
.newsletter-button img {
  width: 36px;
  height: 36px;
  display: block;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
#newsletter-icon {
  width: 48px !important;
  height: 48px !important;
  animation: pulseButton 1.8s linear infinite !important;
  transform-origin: center;
  display: inline-block !important;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}
@keyframes pulseButton {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.icon-links a {
  display: inline-block;
  margin: 0 0.5rem;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.icon-links img {
  width: 36px;
  height: 36px;
  filter: brightness(1.00);
}
.icon-links a:hover img {
  filter: brightness(1.5);
  transform: scale(1.25);
}

#controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;

  background: rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 700px;
}
#controls select {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}

header {
  padding: 1rem;
  text-align: center;
}
nav a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: bold;
}

.shelf-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.shelf-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.shelf {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2rem;
  padding: 0;
  gap: 1.25rem;
  width: 96vw;
  max-width: 800px;
  min-height: 180px;
}

.shelf::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1%;
  width: 98%;
  height: 60%;
  background: linear-gradient(
    to bottom,
    #c2b49c,
    #a39174
  );
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  opacity: 1;
  z-index: 1;
  
  box-shadow: inset 0 4px 2px -2px rgba(255, 255, 255, 0.5);
}
.shelf::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 22px;
  background: linear-gradient(
    to bottom,
    #5a3d2b 0%,
    #7c543a 40%,
    #4b3222 100%
  );

  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5);

  border-radius: 2px;
  z-index: 1;
}
.shelf-item {
  max-width: 175px;
  height: auto;
  bottom: 0px;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
  filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.4));
}
.shelf-item img {
  display: block;
  max-width: 175px;
  height: auto;
}
.shelf-item[data-type="ball"] {
  position: relative;
  z-index: 2;
  transform-origin: center center;
}
.shelf-item.animate-spin-lift {
  animation: liftAndSpinBall 0.5s linear;
}
.shelf-item[data-type="skull"] img {
  transition: filter 0.3s ease;
}
.shelf-item[data-type="skull"].glowing img {
  filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.5));
}
.shelf-item[data-type="crystal-ball"] {
  position: relative;
  overflow: hidden;
}
.shelf-item[data-type="heart"] img {
  transition: filter 0.4s ease;
}
.shelf-item[data-type="football"] {
  transform-origin: center center;
}
.shelf-item.wiggling {
  animation: wiggleFootball 0.6s ease-in-out;
}
.shelf-item[data-type="spacer"] {
  height: 1px;
  visibility: hidden;
  pointer-events: none;
}
.shelf-item[data-type="boombox"].playing img {
  animation: boomboxWiggle 1s ease-in-out infinite;
  transform-origin: center bottom;
}
.shelf-stack {
  margin-top: 1.25rem;
}
.shelf-stack.new-series {
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .shelf {
    width: 95vw;
  }
}
@media (max-width: 480px) {
  .shelf {
    width: 90vw;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@keyframes liftAndSpinBall {
  0%   { transform: translateY(0)      rotate(0deg);   }
  40%  { transform: translateY(-80px)  rotate(120deg); }
  50%  { transform: translateY(-100px) rotate(180deg); }
  60%  { transform: translateY(-80px)  rotate(240deg); }
  100% { transform: translateY(0)      rotate(360deg); }
}
.crystal-spirit {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 60%;
  opacity: 0;
  pointer-events: none;
  animation: spiritFloat 8s ease-in-out forwards;
}
@keyframes spiritFloat {
  0%   { transform: scale(0.6); opacity: 0; }
  50%  { transform: scale(2.5); opacity: 1; }
  100% { transform: scale(0.6); opacity: 0; }
}
@keyframes wiggleFootball {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-12deg); }
  30%  { transform: rotate(12deg); }
  45%  { transform: rotate(-6deg); }
  60%  { transform: rotate(6deg); }
  75%  { transform: rotate(-3deg); }
  90%  { transform: rotate(3deg); }
  100% { transform: rotate(0deg); }
}
@keyframes boomboxWiggle {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.02) rotate(-1.5deg); }
  50%  { transform: scale(1.03) rotate(1.5deg); }
  75%  { transform: scale(1.02) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.genre-sign {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to bottom, #e6cfa6, #caa973);
  color: #4b3222;
  padding: 0.5rem 2rem;
  margin-bottom: 1rem;
  border-radius: 0.3rem;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  display: inline-block;
  transform: translateY(-10px);
  margin-top: 4.5rem;
  text-shadow:
    1px 1px 0 #abc, 
    2px 2px 2px rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    0 3px 6px rgba(0, 0, 0, 0.2);
}

.book {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  width: auto;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  text-align: center;
  z-index: 10;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(-100px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.music {
  width: 120px;
  height: 120px;
  display: block;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
  overflow: visible;
  z-index: 2;
  opacity: 0;
  transform: translateY(-100px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.music img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.music.visible {
  opacity: 1;
  transform: translateY(0);
}
.music.picked-up {
  transform: translateY(-200px) scale(2);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}

.book::after {
  content: "";
  position: absolute;
  top: 0;
  left: 98%;
  right: 0px;
  width: var(--page-thickness, 10px);
  height: 100%;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #f8f8f8 25%,
    #eaeaea 50%,
    #dcdcdc 75%,
    #cccccc 100%
  );
  border-top-right-radius: 6px;
  box-shadow:
    inset 1px 0 1px rgba(0,0,0,0.05),
    2px 0 4px rgba(0,0,0,0.1);
  z-index: 1;
  transform: rotateY(-3deg);
  overflow: hidden;
}
.book img {
  display: block;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 2px;
  box-shadow:
    0 10px 18px rgba(0, 0, 0, 0.45),
    -1px 2px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}
.book .label, .music .label {
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

.badge-new {
  position: absolute;
  top: -10px;
  left: -10px;
  background: crimson;
  color: white;
  padding: 2px 5px;
  font-size: 0.7rem;
  border-radius: 4px;
  z-index: 5;
}
.series-label {
  position: absolute;
  bottom: -30px;
  left: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #3a2c1c;
  background: #f1e1c3;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  z-index: 2;
}
.series-title {
  font-size: 1rem;
  font-weight: 600;
  color: #faefff;
  padding: 6px 20px;
  margin: 2rem auto 0.1rem auto;
  text-align: center;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.series-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #f0e0c8, #d5c2a0);
  opacity: 0.5;
  border-radius: 4px;
  z-index: -1;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.book-number {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: bold;
  color: #dec68b;
  text-align: center;
  min-width: 60px;
  pointer-events: none;
  z-index: 3;
}
.book.visible {
  opacity: 1;
  transform: translateY(0);
}
.book.picked-up {
  transform: translateY(-200px) scale(2);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}
.book-card-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 9999;
  pointer-events: none;
}
.book-card-overlay.visible {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  pointer-events: auto;
}
.book-card-overlay:not(.visible) .book-card {
  opacity: 0;
  transform: scale(0.95);
}
.book-card-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #555;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s ease;
}
.book-card-close:hover {
  background: rgba(255, 255, 255, 1);
  color: #000;
}
.book-card img,
.card-content {
  position: relative;
  z-index: 1;
}
.card-tags {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  font-size: 1rem;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.card-tags span {
  background: #eee;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.card-availability {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #444;
}
.card-availability .editions span {
  background: #dbeafe;
  color: #1e3a8a;
  padding: 3px 7px;
  margin-right: 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
}
.ku-badge {
  margin-top: 6px;
  font-weight: bold;
  color: #1a5d1a;
  background: #e6f6e6;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 0.75rem;
}
.card-series {
  font-variant: small-caps;
  font-size: 1rem;
  color: #888;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}
.card-background {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) brightness(1.3);
  opacity: 0.2;
  z-index: 0;
}
.card-ribbon {
  position: absolute;
  top: 12px;
  left: -50px;
  width: 150px;
  text-align: center;
  transform: rotate(-45deg);
  background: crimson;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 4px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 10;
  pointer-events: none;
}

.amazon-button {
  display: inline-block;
  background-color: #0073e6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.2s ease;
  cursor: pointer;
  z-index: 999;
}
.amazon-button:hover {
  background-color: #005bb5;
}
.amazon-button img {
  width: 24px !important;
  height: 24px !important;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.genre-post {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: 45vw;
  max-width: 425px;
  background:
  url('images/wood.png') repeat,
  linear-gradient(to bottom, #cbbca4, #a39174);
  box-shadow:
    inset 0 0 4px rgba(0, 0, 0, 0.4),
    2px 0 6px rgba(0, 0, 0, 0.15),
    -2px 0 6px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 20px;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .book-card-overlay {
    transition: none !important;
  }
  .book-card {
    animation: none !important;
    transition: none !important;
  }
}

.book, .book-card, .book-card-overlay {
  will-change: transform, opacity;
}
.book-card {
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  max-width: 520px;
  width: 90%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.25s ease;
  position: relative;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.25s ease;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
.book-card img {
  width: 130px;
  max-width: 40%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.book:hover {
  transform: translateY(-12px) rotate(3deg);
  transition: transform 0.3s ease;
}

.card-header {
  width: 100%;
  text-align: center;
  margin-bottom: 0.5rem;
}
.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.card-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 2px;
}
.card-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1rem;
}
.card-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.card-info {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: flex-start;
}
.card-description {
  font-size: 0.9rem;
  line-height: 1.4;
}
.card-tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  padding-top: 0;
}

@media (max-width: 600px) {
  .card-description {
    font-size: 0.85rem;
  }
}
@media (max-width: 600px) {
  .shelf {
    gap: 0.5rem;
  }
}

#music-control {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
  padding: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  transition: width 0.4s ease, padding 0.4s ease;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#music-control.playing {
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    inset 0 0 6px rgba(255, 255, 255, 0.2);
}
#music-title-wrapper {
  position: relative;
  height: 20px;
  overflow: hidden;
  transition: width 0.4s ease;
}
.music-title {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: white;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.8));
  cursor: pointer;
  white-space: nowrap;
}
.music-title-enter {
  position: absolute;
  left: 0;
  width: 100%;
  animation: slideUpIn 0.4s ease forwards;
}
.music-title-exit {
	position: absolute;
	left: 0;
	width: 100%;
  animation: slideUpOut 0.4s ease forwards;
}
@keyframes slideUpIn {
  0%   { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0%); opacity: 1; }
}
@keyframes slideUpOut {
  0%   { transform: translateY(0%); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}
#music-title.animate {
  animation: titleBounce 0.4s ease;
}
@keyframes titleBounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.2); }
  60%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
#music-toggle {
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#music-toggle:hover {
  transform: scale(1.1);
}
#music-toggle.playing {
  animation: noteDance 1.2s ease-in-out infinite, hueShift 3s linear infinite;
  transform-origin: center center;
}
@keyframes noteDance {
  0%   { transform: rotate(0deg) scale(1); }
  25%  { transform: rotate(-3deg) scale(1.05); }
  50%  { transform: rotate(3deg) scale(1.07); }
  75%  { transform: rotate(-2deg) scale(1.04); }
  100% { transform: rotate(0deg) scale(1); }
}
@keyframes hueShift {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.series-post-left,
.series-post-right {
  position: absolute;
  width: 20px;
  background: #cbbca4;
  z-index: 0;
  border-radius: 2px;
  opacity: 0;
}
.series-post-left {
  left: 30px;
}
.series-post-right {
  right: 30px;
}
.new-release-post {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 60vw;
  min-width: 200px;
  max-width: 600px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #de78c9, #fea8a4);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.3),
    0 3px 10px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
