@font-face {
  font-family: "Wurscht06";
  src: url("fonts/Wurscht06-Regular.woff2") format("woff2");
}

body {
  margin: 0;
  font-family: "Wurscht06", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 25px;
  position: relative;
  background: black;
  min-height: 100vh;
  transition: background-color 0.5s ease;
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  filter: none;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.background-video.reveal {
  transform: translateY(0);
  opacity: 1;
}

.background-video.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.background-video.video-effects {
  filter: invert(1) grayscale(1);
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100vh;
  background: transparent;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.container.reveal {
  transform: translateY(0);
  opacity: 1;
}

.container.animate {
  transform: translateY(-10px);
}

.container.settle {
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation {
  position: fixed;
  right: 30px;
  top: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 999;
  padding: 10px 0;
  width: 200px;
  background-color: transparent;
  pointer-events: none;
  overflow: visible;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  margin: 5px 0;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.nav-label {
  position: absolute;
  right: 60px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Wurscht06", Arial, sans-serif;
  color: black;
  mix-blend-mode: multiply;
  pointer-events: none;
  white-space: nowrap;
}

.navigation button {
  margin: 0;
  padding: 8px 16px;
  font-size: 20px;
  font-weight: bold;
  font-family: "Wurscht06", Arial, sans-serif;
  cursor: pointer;
  background-color: transparent;
  color: #00bfff;
  border: none;
  width: auto;
  letter-spacing: 1px;
  mix-blend-mode: multiply;
  position: relative;
  pointer-events: auto;
  transition: color 0.3s ease;
}

.navigation button:hover {
  color: black;
  transform: scale(1.05);
}

.navigation button.active {
  color: black;
  mix-blend-mode: multiply;
}

.navigation button.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #00bfff;
  border-radius: 50%;
  z-index: -1;
  right: -25px;
}

.vertical-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.vertical-text span {
  font-size: 25px;
  color: #000;
  mix-blend-mode: multiply;
  font-weight: bold;
  letter-spacing: 5px;
}

.vertical-text-left {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 3;
}

.vertical-text-left span {
  font-size: 25px;
  color: black;
  mix-blend-mode: multiply;
  font-weight: bold;
  letter-spacing: 5px;
}

.content {
  width: 80%;
  height: 100vh;
  position: relative;
}

.week-container {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.week-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 40px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.week-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #2c3e50;
}

.week-section p {
  font-size: 2em;
  margin-bottom: 20px;
}

.week-section ul {
  list-style-type: none;
  padding: 0;
}

.week-section li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.week-section li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #32cd32;
}

.guide-text {
  position: fixed;
  left: 0;
  width: 100%;
  padding: 20px;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  scroll-snap-type: y mandatory;
  height: 100vh;
  display: flex;
  flex-direction: column;
  direction: ltr;
  box-sizing: border-box;
  padding: 0;
}

.guide-text::before {
  content: "";
  min-height: 20px;
  flex-shrink: 0;
}

.guide-text::after {
  content: "";
  min-height: 20px;
  flex-shrink: 0;
}

.guide-text section {
  direction: ltr;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
  margin-bottom: 100px;
  padding: 0 20px;
  background-color: transparent;
  border-radius: 8px;
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  height: 100vh;
  box-sizing: border-box;
  margin: 0;
}

.guide-text h3:first-child,
.guide-text h3:nth-child(2) {
  margin-top: 0;
  text-align: center;
}

.guide-text p:first-of-type,
.guide-text p:nth-of-type(2) {
  text-align: center;
}

.guide-text h3 {
  color: #32cd32;
  font-size: clamp(12px, min(2vw, 4vh), 40px);
  margin: 20px 0 10px 0;
  font-weight: bold;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  text-align: left;
}

.guide-text h3.checklist-title {
  color: #00bfff !important;
}

.guide-text p:first-of-type,
.guide-text p:nth-of-type(2) {
  text-align: center;
}

.guide-text p {
  margin-bottom: 20px;
  font-size: clamp(12px, min(2vw, 4vh), 40px);
  line-height: 1;
  color: #32cd32;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  text-align: left;
  padding-left: 0;
  text-indent: 0;
  white-space: normal;
  word-wrap: break-word;
  display: block;
  width: 100%;
}

.guide-text ul {
  padding-left: 0;
  margin: 0 0 30px 0;
  list-style: none;
}

.guide-text ul li:hover {
  color: black !important;
  cursor: pointer;
}

.guide-text li {
  display: flex;
  align-items: flex-start;
  font-size: clamp(12px, min(2vw, 4vh), 40px);
  line-height: 1;
  color: #00bfff;
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
}

.guide-text li .number {
  display: inline-block;
  min-width: 2.5em;
  text-align: right;
  margin-right: 0.5em;
  flex-shrink: 0;
  color: #00bfff;
}

/* Remove all hover effects for non-water-hover items */
.guide-text li:not(.water-hover):hover,
.guide-text li:not(.water-hover):hover .number {
  color: #00bfff !important;
}

.water-hover {
  position: relative;
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0;
  margin-left: 0;
  isolation: isolate;
}

.water-hover .number {
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.water-hover::before {
  content: "→";
  color: black;
  position: absolute;
  left: 0px;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.water-hover:hover::before {
  opacity: 1;
  transform: translateX(8px);
}

/* Only water-hover items change color on hover */
.water-hover:hover,
.water-hover:hover .number {
  color: black !important;
}

.dynamic-title {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 150px;
  color: #32cd32;
  opacity: 0;
  transition: opacity 0.3s ease, font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
  text-align: center;
  width: 90%;
  padding: 0 20px;
  box-sizing: border-box;
  mix-blend-mode: multiply;
  font-weight: bold;
  text-shadow: none;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.dynamic-title.visible {
  opacity: 1;
}

.dynamic-title.shrink {
  font-size: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  line-height: 1.2;
}

.seedling-image {
  position: fixed;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%) translateY(60px);
  max-width: 95%;
  max-height: 95vh;
  z-index: 1;
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
  display: block;
  visibility: hidden;
}

.seedling-image.visible {
  opacity: 1;
  visibility: visible;
}

/* Add a new class for the initial reveal animation */
.reveal .seedling-image {
  transform: translate(-50%, -50%) translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .loading-title {
    font-size: 200px;
  }

  .loading-subtitle {
    font-size: 35px;
    width: 85vw;
  }

  .guide-text {
    width: 100%;
  }

  .navigation {
    width: 180px;
    right: 30px;
    overflow: visible;
  }

  .nav-label {
    right: 50px;
  }

  .dynamic-title {
    font-size: 120px;
  }

  .dynamic-title.shrink {
    font-size: 50px;
  }
}

@media screen and (max-width: 992px) {
  .loading-title {
    font-size: 160px;
  }

  .loading-subtitle {
    font-size: 30px;
    width: 80vw;
  }

  .guide-text {
    width: 100%;
  }

  .navigation {
    width: 160px;
    right: 30px;
    overflow: visible;
  }

  .nav-label {
    right: 45px;
  }

  .dynamic-title {
    font-size: 100px;
  }

  .dynamic-title.shrink {
    font-size: 40px;
  }

  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(12px, min(2.5vw, 3.5vh), 35px) !important;
    line-height: 1.1 !important;
  }
}

@media screen and (max-width: 768px) {
  .loading-title {
    font-size: 120px;
  }

  .loading-subtitle {
    font-size: 25px;
    width: 85vw;
    white-space: normal;
    line-height: 1.3;
  }

  .guide-text {
    width: 85%;
    position: relative;
    left: 0;
    padding: 0 20px;
    margin-right: 15%;
  }

  .navigation {
    width: 140px;
    right: 30px;
    overflow: visible;
  }

  .nav-label {
    right: 40px;
  }

  .dynamic-title {
    font-size: clamp(24px, 8vw, 60px);
    width: 75%;
    padding: 0 30px;
    top: 15vh;
    transform: translate(-50%, 0);
    white-space: normal;
    word-wrap: break-word;
  }

  .dynamic-title.shrink {
    font-size: clamp(20px, 6vw, 40px);
  }

  .background-video {
    transform: translateY(0);
    opacity: 1;
  }

  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(14px, min(3vw, 3.2vh), 28px) !important;
    line-height: 1.16 !important;
  }

  .guide-text .number {
    min-width: 1.5em;
    margin-right: 0.3em;
  }

  .navigation button {
    font-size: 18px;
    padding: 6px 12px;
  }

  .vertical-text,
  .vertical-text-left {
    display: none;
  }

  .guide-text section {
    margin: 0 auto;
    max-width: 600px;
  }

  .navigation button.active::before {
    right: -20px;
  }

  .hover-image {
    display: none !important;
  }

  .water-hover::before {
    display: none;
  }

  .water-hover:hover .hover-image {
    display: none;
  }

  .water-hover:hover,
  .water-hover:hover .number {
    color: #00bfff !important;
  }

  .water-hover {
    cursor: default;
  }

  .water-hover,
  .water-hover .number {
    color: #00bfff !important;
  }
}

@media screen and (max-width: 480px) {
  .loading-title {
    font-size: 80px;
  }

  .loading-subtitle {
    font-size: 20px;
    width: 90vw;
    white-space: normal;
    line-height: 1.4;
  }

  .guide-text {
    width: 80%;
    margin-right: 20%;
  }

  .navigation {
    width: 120px;
    right: 30px;
    overflow: visible;
  }

  .nav-label {
    right: 35px;
  }

  .dynamic-title {
    font-size: clamp(20px, 7vw, 40px);
    width: 70%;
    padding: 0 25px;
    top: 10vh;
    white-space: normal;
    word-wrap: break-word;
  }

  .dynamic-title.shrink {
    font-size: clamp(16px, 5vw, 32px);
  }

  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(12px, min(3vw, 3vh), 30px) !important;
    line-height: 1.1 !important;
  }

  .guide-text .number {
    min-width: 1.2em;
    margin-right: 0.2em;
  }

  .guide-text section {
    padding: 20px;
  }

  .navigation button.active::before {
    right: -15px;
  }
}

/* iPhone 9 specific */
@media screen and (max-width: 375px) {
  .loading-title {
    font-size: 70px;
  }

  .loading-subtitle {
    font-size: 18px;
    width: 95vw;
    white-space: normal;
    line-height: 1.4;
  }

  .guide-text {
    width: 90%;
    margin-right: 10%;
    padding: 20px 5px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
    box-sizing: border-box;
  }

  .guide-text section {
    padding: 0 10px;
    margin-bottom: 100px;
    min-height: auto;
    height: auto;
    justify-content: flex-start;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .guide-text::before,
  .guide-text::after {
    content: none;
  }

  .navigation {
    width: 60px;
    right: 10px;
  }

  .navigation button {
    font-size: 10px;
    padding: 1px 3px;
  }

  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(12px, min(3.5vw, 2.5vh), 25px) !important;
    line-height: 1.1 !important;
  }

  .guide-text .number {
    min-width: 1em;
    margin-right: 0.2em;
  }

  .guide-text ul {
    margin: 0 0 15px 0;
  }

  .guide-text li {
    margin-bottom: 3px;
  }

  .dynamic-title {
    font-size: clamp(10px, min(3.5vw, 2.5vh), 24px);
    top: 1vh;
  }

  .dynamic-title.shrink {
    font-size: clamp(7px, min(3.5vw, 2.5vh), 12px);
  }
}

/* Extra small devices */
@media screen and (max-width: 320px) {
  .guide-text {
    width: 95%;
    margin-right: 5%;
    padding: 10px 2px;
  }

  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(12px, min(4vw, 2vh), 20px) !important;
    line-height: 1.1 !important;
  }

  .guide-text .number {
    min-width: 0.8em;
    margin-right: 0.1em;
  }

  .guide-text ul {
    margin: 0 0 10px 0;
  }

  .guide-text li {
    margin-bottom: 2px;
  }

  .dynamic-title {
    font-size: 24px;
  }

  .dynamic-title.shrink {
    font-size: 16px;
  }
}

/* Globale Sicherheit */
.navigation {
  pointer-events: none;
  width: 200px;
}

.navigation button {
  pointer-events: auto;
}

/* Responsive Anpassung */
@media screen and (max-width: 1200px) {
  .guide-text {
    width: 100%;
  }
  .navigation {
    width: 180px;
    right: 30px;
    overflow: visible;
  }
}

@media screen and (max-width: 992px) {
  .guide-text {
    width: 100%;
  }
  .navigation {
    width: 160px;
    right: 30px;
    overflow: visible;
  }
}

@media screen and (max-width: 768px) {
  .guide-text {
    width: 85%;
    position: relative;
    left: 0;
    padding: 0 20px;
    margin-right: 15%;
  }
  .navigation {
    width: 140px;
    right: 30px;
    overflow: visible;
  }
}

@media screen and (max-width: 480px) {
  .guide-text {
    width: 80%;
    margin-right: 20%;
  }
  .navigation {
    width: 120px;
    right: 30px;
    overflow: visible;
  }
}

/* Spezifische Styles für Woche 13 */
#week13 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  height: 100vh;
  box-sizing: border-box;
  padding: 0 20px;
}

#week13 h3,
#week13 p,
#week13 li {
  color: black;
  text-align: center;
}

#week13 .number {
  color: black;
}

#week13 li:hover,
#week13 li:hover .number {
  color: #00bfff !important;
  background: none !important;
  cursor: default !important;
  transition: none !important;
}

#week13 li {
  color: #00bfff !important;
  transition: none !important;
}

#week13 li .number {
  color: #00bfff !important;
  transition: none !important;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.loading-text {
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-title {
  font-size: clamp(80px, 15vw, 250px);
  color: #00bfff;
  font-weight: bold;
  mix-blend-mode: multiply;
  text-align: center;
  line-height: 1.2;
  margin: 0;
  font-family: "Wurscht06", Arial, sans-serif;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
  animation-delay: 1.5s;
}

.loading-subtitle {
  font-size: clamp(18px, 3vw, 50px);
  color: black;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3.5s cubic-bezier(0.25, 0.1, 0.15, 1);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.loading-screen.hidden {
  transform: translateY(-100%);
}

.loading-icon {
  width: 100px;
  height: 100px;
  animation: rotate 0.5s linear infinite;
  fill: #ff4500;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .loading-subtitle {
    font-size: clamp(16px, 2.5vw, 40px);
    width: 90%;
    animation: typing-mobile 3.5s cubic-bezier(0.25, 0.1, 0.15, 1);
  }

  .seedling-image {
    display: none;
  }

  .guide-text {
    width: 85%;
    position: relative;
    left: 0;
    padding: 0 20px;
    margin-right: 15%;
  }

  .navigation {
    width: 140px;
    right: 30px;
    overflow: visible;
  }

  .nav-label {
    right: 40px;
  }

  .dynamic-title {
    font-size: 80px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    line-height: 1;
  }

  .dynamic-title.shrink {
    font-size: 35px;
  }

  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(14px, min(3vw, 3.2vh), 28px) !important;
    line-height: 1.16 !important;
  }

  .navigation button {
    font-size: 18px;
    padding: 6px 12px;
  }

  .vertical-text,
  .vertical-text-left {
    display: none;
  }

  .guide-text section {
    margin: 0 auto;
    max-width: 600px;
  }

  .navigation button.active::before {
    right: -20px;
  }
}

@keyframes typing-mobile {
  from {
    width: 0;
    white-space: nowrap;
  }
  to {
    width: 95%;
    white-space: nowrap;
  }
}

@media screen and (max-width: 480px) {
  .loading-subtitle {
    font-size: clamp(14px, 2vw, 30px);
    width: 95%;
  }
}

@media screen and (max-width: 375px) {
  .loading-subtitle {
    font-size: clamp(12px, 1.8vw, 25px);
    width: 98%;
  }
}

@media screen and (min-width: 1440px) {
  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(16px, min(2.4vw, 2.7vh), 30px) !important;
    line-height: 1.16 !important;
  }
  .guide-text section {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 40px !important;
  }
}

#toggle-video-effects {
  font-family: "Wurscht06", Arial, sans-serif;
  font-size: 16px;
  background: #00bfff;
  border: none;
  outline: none;
  color: black;
  padding: 6px 16px;
  border-radius: 8px;
  box-shadow: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
}

#toggle-video-effects.hidden {
  opacity: 0;
  visibility: hidden;
}

#toggle-video-effects:hover {
  background: #0090c0;
  color: black;
}

/* iPhone 14 Pro and 16 Pro specific */
@media screen and (max-width: 393px) {
  .loading-title {
    font-size: 65px;
  }

  .loading-subtitle {
    font-size: 16px;
    width: 92vw;
    white-space: normal;
    line-height: 1.4;
  }

  .guide-text {
    width: 85%;
    margin-right: 15%;
    padding: 15px 5px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    height: 100vh;
    box-sizing: border-box;
  }

  .guide-text section {
    padding: 0 8px;
    margin-bottom: 80px;
    min-height: auto;
    height: auto;
    justify-content: flex-start;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .guide-text::before,
  .guide-text::after {
    content: none;
  }

  .navigation {
    width: 70px;
    right: 15px;
  }

  .navigation button {
    font-size: 12px;
    padding: 2px 4px;
  }

  .guide-text h3,
  .guide-text p,
  .guide-text li {
    font-size: clamp(12px, min(3.2vw, 2.8vh), 22px) !important;
    line-height: 1.1 !important;
  }

  .guide-text .number {
    min-width: 1.1em;
    margin-right: 0.15em;
  }

  .guide-text ul {
    margin: 0 0 12px 0;
  }

  .guide-text li {
    margin-bottom: 4px;
  }

  .dynamic-title {
    font-size: clamp(12px, min(3.2vw, 2.8vh), 22px);
    top: 1.5vh;
  }

  .dynamic-title.shrink {
    font-size: clamp(8px, min(3.2vw, 2.8vh), 14px);
  }

  .seedling-image {
    max-width: 90%;
    max-height: 90vh;
  }
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
  position: fixed;
  right: 0;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Hide scrollbar on mobile */
@media screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none;
  }

  body {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.checklist-item {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.checklist-item::before {
  content: "→";
  color: #32cd32;
  margin-right: 8px;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.checklist-item:hover::before {
  opacity: 1;
  transform: translateX(3px);
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.hover-image {
  position: fixed;
  top: 50%;
  right: 12vw;
  left: auto;
  width: auto;
  max-width: 45vw;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  transition: opacity 0.3s;
}

.hover-image.visible {
  opacity: 1;
}

/* Ensure the parent container doesn't interfere with blend mode */
.water-hover {
  position: relative;
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0;
  margin-left: 0;
  isolation: isolate;
}
