/*///////////////////////////////////////////////////////////////////////////////////////////////
// start-screen
///////////////////////////////////////////////////////////////////////////////////////////////*/

/* start-screen header 
#screen-start .screen-header {
  opacity: 0;
  transform: translateY(20px);
  animation: headerFadeIn 1.5s ease-out forwards;
  z-index: 100;
}

.screen-header.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: headerSlideIn 0.8s ease-out forwards;
}

@keyframes headerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*/

/* start-screen bg */
#screen-start-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#screen-start-bg .bg-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#screen-start .screen-header {
  text-align: center !important;
}

#screen-start .screen-header h1{
  font-size: 2rem !important; /* overwrite h1 only for start-screen */
}

#screen-start .screen-header p{
  font-weight: 500;
}

#btn-start-screen-tutorial{
  border: none;
}

/*
#screen-start-bg .bg-beauty-mid,
#screen-start-bg .bg-beauty-front {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%) scale(1);
  opacity: 0;
  max-width: 90%;
  height: auto;
  object-fit: contain;
}

#screen-start-bg .bg-beauty-mid {
  animation: beautyMidScaleIn 1s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes beautyMidScaleIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


#screen-start-bg .bg-beauty-front {
  transform: scale(0);
  animation: beautyFrontScaleIn 1s ease-out forwards;
  animation-delay: 1s;
}


@keyframes beautyFrontScaleIn {
  0% {
    transform: translate(-50%, -40%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -40%) scale(1);
    opacity: 1;
  }
}
*/
/* start-screen badge */
#start-badge {
  position: absolute;
  top: 33%;
  right: 0;
  width: 100px;
  opacity: 1;
  transform: translateX(100%);
  animation: badgeSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.5s forwards;
}

@keyframes badgeSlideIn {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(-20%);
    opacity: 1;
  }
}

/*///////////////////////////////////////////////////////////////////////////////////////////////
// tutorial-screen
///////////////////////////////////////////////////////////////////////////////////////////////*/
#screen-tutorial {
  background-color: #f0f4f8;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#screen-tutorial .screen-header {
  flex-shrink: 0;
}

#screen-tutorial .tutorial-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 12px;
  margin: 55% 0 30% 0;
}

#screen-tutorial .continue-options {
  flex-shrink: 0;
  width: 90%;
  max-width: 400px;
  align-self: center;
  margin: 12px 0;
}

.tutorial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tutorial-item {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  align-items: center;
  padding-right: 10%;
}

.tutorial-item.animate {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.5s ease-out forwards;
}

.tutorial-item:nth-child(1) {
  animation-delay: 0.1s;
}
.tutorial-item:nth-child(2) {
  animation-delay: 0.25s;
}
.tutorial-item:nth-child(3) {
  animation-delay: 0.4s;
}
.tutorial-item:nth-child(4) {
  animation-delay: 0.55s;
}
.tutorial-item:nth-child(5) {
  animation-delay: 0.7s;
}
.tutorial-item:nth-child(6) {
  animation-delay: 0.85s;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.tutorial-item img {
  width: 35%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex-shrink: 0;
}

.tutorial-text {
  display: flex;
  flex-direction: column;
}

.tutorial-text h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: black;
}

.tutorial-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.35;
}

.tutorial-list > h2 {
  text-align: center;
  margin: 24px 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: black;
}
