body {
    min-height: 100vh;
    background-image: linear-gradient(to bottom right, #A6DCDD, #83DEB5, #4DB8BA);
    background-attachment: fixed;
    margin: 0; /*贴合浏览器外边距*/
    padding:0;/*贴合浏览器内边距*/
    width: 100%;/*贴合浏览器宽度*/
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
  }

  .logo {
    height: 120px;
    width: auto;
    top: -5px;
    left: -20px;
    position: absolute;
  }

  .container {
    width: 100%;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }

  /* 背景漂浮水果容器 */
  .fruit-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

  .fruit-fall {
    position: absolute;
    width: 192px;
    height: 192px;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  }

  /* 果汁飞溅容器（触底炸开，由 JS 定位） */
  .juice-splash {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    width: 0;
    height: 0;
  }

  .juice-splash-ground {
    transform: translate(-50%, 0);
  }

  .juice-droplet {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.95;
    animation: juice-fly 0.7s ease-out forwards;
  }

  @keyframes juice-fly {
    0% {
      transform: translate(0, 0) scale(1);
      opacity: 0.95;
    }
    100% {
      transform: translate(var(--jx), var(--jy)) scale(0.15);
      opacity: 0;
    }
  }

  .image-stack {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
  }

  .stack-item {
    position: absolute;
    width: 400px;
    height: auto;
    border-radius: 20px;
    top: -10%;
    cursor: pointer;
    transition: transform 0.3s ease, left 0.3s ease, top 0.3s ease, z-index 0.3s ease;
    --i: 0;
    --row: 0;
    --hover-rotate: 15deg;
  }

  .rotate-10 {
    transform: rotate(-60deg);
  }

  .rotate-neg-15 {
    transform: rotate(-10deg);
    z-index: 10;
  }

  .rotate-12 {
    transform: rotate(25deg);
  }

  .rotate-neg-8 {
    transform: rotate(-40deg);
  }

  .rotate-neg-10 {
    transform: rotate(-25deg);
  }

  .image-stack:hover .stack-item {
    width: 300px;
    height: auto;
    left: calc(90% + (var(--col) - 2) * 300px + (var(--row) + 1) * 60px);
    top: calc(5% + var(--row) * 120px);
    transform: rotate(var(--hover-rotate)) !important;
  }

  .image-stack:hover .stack-item:hover {
    transform: rotate(var(--hover-rotate)) scale(1.1) !important;
    z-index: 100;
  }

  .stack-item[data-index="0"] {
    --i: 0;
    --col: 0;
    --row: -1;
    --hover-rotate: -15deg;
    z-index: 10;
  }

  .stack-item[data-index="1"] {
    --i: 1;
    --col: 1;
    --row: -1;
    --hover-rotate: 20deg;
  }

  .stack-item[data-index="2"] {
    --i: 2;
    --col: 2;
    --row: -1;
    --hover-rotate: 20deg;
  }

  .stack-item[data-index="3"] {
    --i: 3;
    --col: 0;
    --row: 1;
    --hover-rotate: -15deg;
  }

  .stack-item[data-index="4"] {
    --i: 4;
    --col: 1;
    --row: 1;
    --hover-rotate: -10deg;
  }

  .drink-image {
    position: absolute;
    width: 300px;
    height: auto;
    left: 10%;
    top: 78%;
    margin-bottom: 200px;
    bottom: 50px;
    opacity: 0;
    transition: opacity 1.5s ease-in;
    pointer-events: none;
    z-index: 20;
  }

  .drink-image.show {
    opacity: 1;
  }

  #drink-image-2,
  #drink-image-3,
  #drink-image-4,
  #drink-image-5 {
    top: 78%;
    margin-bottom: 200px;
  }

  .ostrava-text {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: 100%;
    font-size: 100px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 11;
  }

  .ostrava-text.show {
    opacity: 1;
  }

  .ostrava-description {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: calc(100% + 120px);
    font-size: 25px;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 1000px;
    z-index: 11;
  }

  .ostrava-description.show {
    opacity: 1;
  }

  .jarbo-text {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: 100%;
    font-size: 100px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 11;
  }

  .jarbo-text.show {
    opacity: 1;
  }

  .jarbo-description {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: calc(100% + 120px);
    font-size: 25px;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 1000px;
    z-index: 11;
  }

  .jarbo-description.show {
    opacity: 1;
  }

  .valbo-text {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: 100%;
    font-size: 100px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 11;
  }

  .valbo-text.show {
    opacity: 1;
  }

  .valbo-description {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: calc(100% + 120px);
    font-size: 25px;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 1000px;
    z-index: 11;
  }

  .valbo-description.show {
    opacity: 1;
  }

  .vaasa-text {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: 100%;
    font-size: 100px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 11;
  }

  .vaasa-text.show {
    opacity: 1;
  }

  .vaasa-description {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: calc(100% + 120px);
    font-size: 25px;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 1000px;
    z-index: 11;
  }

  .vaasa-description.show {
    opacity: 1;
  }

  .ylili-text {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: 100%;
    font-size: 100px;
    font-weight: bold;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 11;
  }

  .ylili-text.show {
    opacity: 1;
  }

  .ylili-description {
    position: absolute;
    left: calc(10% + 300px + 40px);
    top: calc(100% + 120px);
    font-size: 25px;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in;
    pointer-events: none;
    font-family: Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 1000px;
    z-index: 11;
  }

  .ylili-description.show {
    opacity: 1;
  }