@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Gabarito:wght@400..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#spritesheet-section video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  #spritesheet-section { display: none !important; }
  #video-section { display: block !important; }
  #video-section video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
  }
}

body.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* -------------------------------------------------
   GLOBAL LOADER
   ------------------------------------------------- */
#global-loader {
    position: fixed;
    inset: 0;
    background-color: #000;
     background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(2, 10, 26, 0.9) 100%),
    url("Images/1.avif");
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s;
    overflow: hidden;

}

#global-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.gradient {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(2, 10, 26, 0.9) 100%);
}

/* Center the whole thing vertically */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    /* space between logo and text */
}

/* Logo animation */
.loader-svg {
    width: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Text at the bottom area */
.loader-text {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    ;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-align: center;
    margin: 0;
    animation: fadeInOut 3s infinite;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.94);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* Mobile tweak */
@media (max-height: 600px) {
    .loader-text {
        bottom: 30px;
        font-size: 14px;
    }

    .loader-svg {
        width: 100px;
    }
}

/* **************************************LOADER END************************************************ */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100vw;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#spriteCanvas {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 50vw !important;
    height: 50vh !important; */
    object-fit: cover;
    z-index: 9999 !important;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    /* background: rgba(0, 0, 0, 0.8);
    border: 2px solid white; */
}

/* Scroll View & Locomotive Scroll */
.scroll-view {
    /* height: 100vh; */
    overflow-y: scroll;
    /* background: url("Images/Rectangle 13.avif") no-repeat center center/cover; */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-view::-webkit-scrollbar {
    display: none;
}

[data-scroll-container] {
    overflow: hidden;
}
#home{
    position: relative;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 25px;
  transform: translateX(-50%);
  cursor: pointer;
}

.scroll-down::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(-45deg);
  animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
  0% { opacity: 0; transform: translate(-50%, -5px) rotate(-45deg); }
  50% { opacity: 1; transform: translate(-50%, 5px) rotate(-45deg); }
  100% { opacity: 0; transform: translate(-50%, 15px) rotate(-45deg); }
}


/* ---------- Sticky Header ---------- */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0 40px;
    z-index: 1000;
    height: 80px;
    background: rgba(0, 0, 0, 0.096);
    transition: background 0.3s ease;
}

.sticky-header.scrolled {
    background: rgba(0, 0, 0, 0.096);
    backdrop-filter: blur(8px);
}

.logo {
    position: absolute;
    left: 40px;
    height: 70px;
}

/* ---------- Desktop Nav ---------- */
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #ffd700;
}

nav ul li a.disabled {
    color: #666;
    pointer-events: none;
    cursor: not-allowed;
}

/* ---------- Hamburger Button ---------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 50px;
    width: 35px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 4px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---------- Mobile Menu (slide from top) ---------- */
@media (max-width: 900px) {
    .logo {
        left: 16px;
        height: 48px;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 55vh;
        background: rgba(10, 0, 25, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: top 0.4s ease;
        z-index: 1000;
    }

    nav.active {
        top: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    nav ul li a {
        font-size: 1.2rem;
    }

    /* Hamburger X animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(40deg) translateY(15px) translateX(4px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00000000 -50%, #051024 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.gradient-overlay.gradient-overlay-dark {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(2, 10, 26, 0.9) 100%);
}

.gradient-overlay.active {
    opacity: 1;
}

/* Home Section */
.svg-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url("Images/background-main.avif") no-repeat center center/cover;
    background-size: 200%;
    transition: background-size 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-size;
}

.svg-section.zoom-200 {
    background-size: 200%;
}

.svg-section.zoom-170 {
    background-size: 170%;
}

.svg-section.zoom-140 {
    background-size: 140%;
}
@media (min-width: 1024px) {
.svg-section.zoom-100 {
    background-size: 100%;
}
}
/* SVG Fade Carousel */
.svg-fade-carousel {
    position: relative;
    width: 100vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-fade-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    filter: brightness(0.7) blur(0.5px);
    transition:
        opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        filter 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
        min-width 1s cubic-bezier(0.4, 0, 0.2, 1),
        min-height 1s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 60vw;
    max-height: 60vh;
    z-index: 1;
    pointer-events: none;
}

.svg-fade-img.no-transition {
    transition: none;
}

.svg-fade-img.active {
    opacity: 1;
    filter: brightness(1) blur(0);
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 2;
    pointer-events: auto;
}

.svg-small {
    min-width: 10vw;
    min-height: 10vh;
}

.svg-large {
    min-width: 30vw;
    min-height: 30vh;
}

/* Responsive SVG Section */
@media (max-width: 768px) {
    .svg-section {
        background-size: auto 100vh;
    }
}

/* About Section */
.about-section {
    min-height: 100vh;
    background: url("Images/about-section.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(5, 16, 36, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%); */
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    /* max-width: 60%; */
    margin: 0 auto;
    text-align: center;
}

.about-container2 {
    position: relative;
    z-index: 2;
    /* max-width: 60%; */
    margin: 0 auto;
    text-align: center;
}

.about-container3 {
    position: relative;
    z-index: 2;
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}

.about-title1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    margin-top: 10rem;
}

.about-desc {
    font-size: 2.0rem;
    /* line-height: 2; */
    margin-bottom: 1.8rem;
    /* margin-left: auto;
    margin-right: auto; */
}

.about-desc2 {
    font-size: 2.0rem;
    /* line-height: 2; */
    margin-bottom: 8% !important;
    margin-top: 8% !important;
    /* margin-left: auto;
    margin-right: auto; */
}

.about-desc3 {
    font-size: 2.0rem;
    /* line-height: 2; */
    margin-bottom: 8% !important;
    /* margin-left: auto;
    margin-right: auto; */
}

#about {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

#about.unlocked {
    opacity: 1;
    pointer-events: auto;
}

.play-btn {
    display: block;
    margin: 2.5rem auto 3rem;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.4s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    will-change: transform, filter;
    margin-top: 10rem;

}

.play-btn:hover {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 12px 24px rgba(255, 215, 0, 0.4)) brightness(1.1);
}

.play-btn:active {
    transform: scale(1.02);
    transition: transform 0.15s ease;
}

.about-highlight {
    padding: 2.5rem;
    margin: 3rem auto;
}

.about-highlight h1 {
    font-size: 3.0rem;
    margin-bottom: 2.2rem;
}

.about-highlight p {
    font-size: 2.00rem;
    line-height: 2.0;
    margin-bottom: 1rem;
}

.how-it-works-preview {
    margin-top: 4rem;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-preview h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.how-it-works-preview p {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    line-height: 1.7;
}

.steps-list li::before {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.7 !important;
    margin-bottom: 1rem !important;
}

.clue-time {
    font-size: 2.9rem !important;
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
    text-align: center;
}

.morning-clues-part {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 1;
}

.morning-clue-rightContent-image {
    position: absolute;
    right: -10%;
    top: 80%;
    /* transform: translateY(-50%); */
}

/* Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 100px 20px 60px;
        background-attachment: scroll;
    }

    .about-container {
        max-width: 100% !important;
    }

    .about-title {
        font-size: 2.8rem;
    }

    .about-desc,
    .about-desc2,
    .about-desc3 {
        font-size: 1.1rem;
    }

    .play-btn {
        width: auto;
        /* margin: 2rem auto 2.5rem; */
    }

    .about-highlight {
        padding: 1.8rem;
        margin: 2rem auto;
    }

    .about-highlight h1 {
        font-size: 1.8rem;
    }

    .how-it-works-preview h2 {
        font-size: 2rem;
    }

    .steps-list li {
        padding-left: 2.5rem;
        font-size: 1rem;
    }

    .steps-list li::before {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.9rem;
    }
}


.desert-section {
    position: relative;
    width: 100%;
    height: 100%;
    /* Full screen height */
    background: url("Images/Desert Game play@2x.avif") no-repeat center center;
    background-size: cover;
    /* Makes it responsive */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    text-align: center;
}

.desert-section .desert-section-overlay {
    padding: 20px;
    border-radius: 10px;
}

.desert-title {
    color: #fff;
    /* White text for contrast */
    font-size: 2.3rem;
    /* line-height: 5; */
    font-weight: bold;
    margin-top: 8%;
}

.desert-title-next {
    color: #fff;
    /* White text for contrast */
    font-size: 4rem;
    line-height: 15;
    font-weight: bold;
    margin-top: 100%;
}

.rain-section {
    position: relative;
    width: 100%;
    height: 100%;
    /* Full screen */
    background: url("Images/Rainy Game play@3x.avif") no-repeat center center;
    background-size: cover;
    /* Show full height without cropping */
    background-color: #000;
    /* Fill space if aspect ratio differs */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    text-align: center;
}

.rain-section .rain-section-overlay {
    padding: 20px;
    border-radius: 10px;
}

.rain-title {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
}

.cloud-section {
    position: relative;
    width: 100%;
    height: 100%;
    /* Full screen */
    background: url("Images/Cloud Clue@3x.avif") no-repeat center center;
    background-size: cover;
    /* Show full height, no cropping */
    background-color: #000;
    /* Fill sides if aspect ratio differs */
    display: flex;
    justify-content: center;
    /* align-items: center; */
    text-align: center;
}

.cloud-section .cloud-section-overlay {
    padding: 20px;
    border-radius: 10px;
}

.cloud-title {
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;
}

.phiknal-clue-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 10;
    /* margin-top: 810%; */
}

/* Last Section */
/* 🌆 Base Section Styles */
.last-section {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.last-section-overlay {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 2.5rem;
    max-width: 1000px;
}

/* ✨ Title & Description */
.last-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.last-description {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 🖼️ Image Styling */
.scratch1-image {
    display: block;
    margin: 2.5rem auto;
    width: 100%;
    /* max-width: 600px; */
    height: auto;
    /* cursor: pointer; */
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        filter 0.4s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.scratch1-image:hover {
    transform: scale(1.08) translateY(-4px);
}

.last-section2 {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.last-section-overlay2 {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 2.5rem;
}

.last-title2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.last-description2 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.guess-early-image {
    display: block;
    margin: 2.5rem auto;
    width: 50%;
    height: auto;
}

.last-section3 {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.last-section-overlay3 {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 2.5rem;
}

.last-title3 {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.last-description3 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.bonus-clue-image {
    display: block;
    margin: 2rem auto;
    width: 100%;
    height: auto;
}

.last-section4 {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.last-section-overlay4 {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 2.5rem;
}

.last-title4 {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.last-description4 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.phone-with-glow-image {
    display: block;
    margin: 2rem auto;
    width: 30%;
    height: auto;
}

.phone-with-glow-pink-image {
    display: block;
    margin: 2rem auto;
    width: 30%;
    height: auto;
}

.last-section-mid {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.last-section-overlay-mid {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 2.5rem;
}

.last-section-mid-content {
    color: #fff;
    font-size: 5rem;
}

.last-section-mid-content2 {
    color: #fff;
    font-size: 5rem;
    margin-top: 20% !important;
}

.last-section5 {
    position: relative;
    width: 100vw;
    height: 50vh;
    /* Full screen */
    background: url("Images/Rectangle 51.avif") no-repeat center center;
    background-size: cover;
    /* Show full image height without cropping */
    background-color: #000;
    /* Fill sides if aspect ratio differs */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.last-section5 .last-section-overlay5 {
    padding: 20px;
    border-radius: 10px;
}

.last-title5 {
    color: #fff;
    font-size: 5rem;
    /* line-height: 2.5; */
}

.partners-list-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* z-index: 10; */
}

.last-section6 {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.last-title6 {
    font-size: 6rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.last-title6-2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.last-description6 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.last-description6-2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

/* .last-section-overlay6-content {
    opacity: 1;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    margin-top: 40px;
} */

.last-section7 {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.last-title7 {
    font-size: 9rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.phik-text-image {
    display: block;
    margin: 2rem auto;
    margin-left: auto;
    width: 60%;
    height: auto;

}

.last-section8 {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* color: #fff; */
    overflow: hidden;
}

.last-section-overlay8-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 2.5rem;
}

.last-section-overlay8-content-top {
    background-color: #fff;
    border-radius: 20px;
    /* rounded corners */
    padding: 30px 40px;
    display: flex;
    /* make it like row */
    align-items: center;
    gap: 20px;
    /* space between image and text */
    max-width: 50%;
    /* optional: prevent stretching full screen */
    margin: 0 auto;
}

.last-title8 {
    font-size: 3rem;
    /* smaller for balance */
    text-align: left;
    /* text aligned left */
    display: block;
}

.last-title8-2 {
    font-size: 1.2rem;
    max-width: 100%;
    display: block;
    /* margin-top: 10px; */
    text-align: left;
}

.button-down-image {
    width: 80px;
    /* behaves like col-md-2 */
    height: auto;
    flex-shrink: 0;
    /* don’t let it shrink */
    margin-right: 20px;
}

/* container for the list */
.last-section-overlay8-content-bottom {
    margin-top: 40px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    /* center each row horizontally; each row has its own max-width */
    box-sizing: border-box;
}

/* each row = image + text */
.last-section-overlay8-content-bottom .list-item {
    /* display: flex; */
    align-items: flex-start;
    /* align image & text at the top */
    gap: 16px;
    width: 90%;
    max-width: 900px;
    /* control line-length */
    padding: 12px 18px;
    border-radius: 12px;
    box-sizing: border-box;
    /* optional visual style */
}

/* fixed, consistent icon size (no % and no !important) */
.last-section-overlay8-content-bottom .button-up-image {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    display: block;
    /* remove baseline gaps */
    margin-top: 6px;
    /* nudge to vertical align with first line of text */
}

/* text column grows and wraps naturally */
.last-section-overlay8-content-bottom .list1 {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.4;
    text-align: left;
    color: #fff;
    display: block;
}

.list-item {
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.list-header {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.button-up-image {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.list1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Dropdown content starts hidden */
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    color: #fff;
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* When active, expand below */
.list-item.active .dropdown-content {
    max-height: 200px;
    opacity: 1;
}

/* Rotate arrow when active */
.list-item.active .button-up-image {
    transform: rotate(180deg);
}

/* ---------- ACCORDION ---------- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Default: no background */
.accordion-item {
    border-radius: 20px;
    overflow: hidden;
    transition: background 0.3s ease;
}

/* Only active item gets white background */
.accordion-item.active {
    background: #fff;
}

/* Header */
.accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 40px;
    cursor: pointer;
    user-select: none;
}

/* Icon */
.accordion-icon {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Title */
.accordion-title-wrap .last-title8 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    /* white when closed */
    display: block;
    transition: color 0.3s ease;
}

/* When open: black text */
.accordion-item.active .accordion-title-wrap .last-title8 {
    color: #000;
}

/* Body – hidden by default */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 40px;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.accordion-body .last-title8-2 {
    font-size: 1.2rem;
    color: #555;
    display: block;
    margin-top: 10px;
}

/* Open state */
.accordion-item.active .accordion-body {
    max-height: 200px;
    opacity: 1;
    padding: 0 0px 30px;
}

/* Rotate icon only when open */
/* .accordion-item.active .accordion-icon {
  transform: rotate(180deg);
} */

/* -------------------------------------------------
   RESPONSIVE
   ------------------------------------------------- */
@media (max-width: 1024px) {
    .accordion-header {
        padding: 25px 20px;
    }

    .accordion-body {
        padding: 0 20px 25px;
    }

    .accordion-title-wrap .last-title8 {
        font-size: 2.2rem;
    }

    .accordion-icon {
        width: 45px;
    }
}

@media (max-width: 768px) {
    .accordion-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }

    .accordion-icon {
        width: 40px;
    }

    .accordion-title-wrap .last-title8 {
        font-size: 2rem;
    }

    .accordion-body {
        padding: 0 20px 20px;
    }
}

.last-section9 {
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center/cover;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    position: relative;
    /* display: flex;    */
    align-items: center;
    justify-content: center;
    text-align: center;
    /* color: #fff; */
    overflow: hidden;
}

.last-section9-title-wrapper {
    text-align: center;
    margin-top: 40px;
}

.last-title9 {
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
}

.last-section-overlay9-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    /* space between phone and list */
    width: 100%;
    /* max-width: 1200px; */
    margin-top: 3%;
}

.phone-image {
    width: 500px !important;
    height: auto;
    object-fit: contain;
}

.last-section-overlay9-content-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 40%;
    margin-top: 5%;
    margin-left: 5%;
}

.last-section9-list-item {
    position: relative;
    background: #fff;
    color: #000;
    border-radius: 20px;
    padding: 20px 20px 20px 50px;
    /* extra left padding for text */
    display: flex;
    align-items: center;
    margin-left: 30px;
    /* push box so number has space outside */
}

.last-section9-list-number {
    position: absolute;
    left: -50px;
    /* move number outside box */
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
}


.last-section9-list-text {
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: left;
}

.last-section10 {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center;
    background-size: cover;
    background-color: #000;
    /* fallback if image missing */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.last-section-overlay10-content {
    background-color: #2F114D;
    /* purple background */
    padding: 50px 30%;
    /* spacing inside */
    border-radius: 20px;
    /* rounded corners */
    display: flex;
    flex-direction: column;
    /* stack items vertically */
    align-items: center;
    /* center horizontally */
    gap: 30px;
    /* space between title, button, description */
    width: 100%;
    /* full width container */

}

.last-title10 {
    color: #fff;
    font-size: 3rem;
}

.book-button-image {
    width: 250px;
    /* fixed size for button */
    height: auto;
    cursor: pointer;
    /* make it look clickable */
}

.last-description10 {
    color: #fff;
    font-size: 1.5rem;
}

.last-section11 {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: url("Images/Rectangle 13.avif") no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    color: #fff;
    box-sizing: border-box;
}

/* Title Section */
.last-section11-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.last-title11-1 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.8;
    display: block;
    margin-bottom: 10px;
}

.last-title11-2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.last-title11-3 {
    margin-top: 10% !important;
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Content Box */
.last-section11-content-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #1B0034;
    border-radius: 20px;
    padding: 3% 5% 2% 5%;
    width: 100%;
    max-width: 1200px;
    gap: 10px;
    color: #fff;
}

/* Left side */
.last-section11-left {
    flex: 1;
}

.last-section11-left h3 {
    margin-bottom: 40px !important;
    font-size: 1.5rem;
}

.last-section11-left p {
    margin: 10px 0;
    font-size: 1rem;
}

.last-section11-icons {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}

.last-section11-icons a {
    color: #fff;
    /* white icons */
    font-size: 1rem;
    /* bigger size */
    transition: transform 0.3s, color 0.3s;
}

.last-section11-icons a:hover {
    color: #00aced;
    /* change color on hover */
    transform: scale(1.2);
    /* slight zoom */
}

.last-section11-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

.last-section11-icons img:hover {
    transform: scale(1.2);
}


.last-section11-response {
    margin-top: 15% !important;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Right side (form) */
.last-section11-right {
    max-width: 40% !important;
    flex: 1;
    margin-top: 3%;
    background: #2F114D;
    padding: 20px 40px 20px 40px;
    border-radius: 50px;
}

.last-section11-right h3 {
    margin-bottom: 40px !important;
    font-size: 1.5rem;
}

.last-section11-right input,
.last-section11-right textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #999;
    color: #fff;
    padding: 10px 5px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.last-section11-right input::placeholder,
.last-section11-right textarea::placeholder {
    color: #bbb;
}

.last-section11-left strong {
    font-size: 1rem;
    padding-bottom: 20px !important;
}

.last-section11-left p {
    font-size: 1rem;
    padding-bottom: 10px;
}

.last-section11-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #8041C1, #7A0092);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

/* ****************************************************************RESPONSIVE******************************************************************************* */

/* Responsive Adjustments - Matching .about-section */


@media (max-width: 2000px) {

    .last-section-overlay8-content-bottom {
        margin-left: 2%;
    }
}

@media (max-width: 1600px) {

    .last-section-overlay8-content-bottom {
        margin-left: 8%;
    }
}

@media (max-width: 1400px) {
    .last-title {
        font-size: 3rem;
    }

    .last-description {
        font-size: 1.6rem;
    }

    .scratch1-image {
        width: 100%;
    }

    .last-title2 {
        font-size: 2.7rem;
    }

    .last-description2 {
        font-size: 1.6rem;
    }

    .guess-early-image {
        width: 80%;
    }

    .last-title3 {
        font-size: 3rem;
    }

    .last-description3 {
        font-size: 1.8rem;
    }

    .bonus-clue-image {
        width: 70vw;
    }

    .last-title4 {
        font-size: 4rem;
    }

    .last-description4 {
        font-size: 1.7rem;
    }

    .phone-with-glow-pink-image {
        width: 45vw;
    }

    .last-title7 {
        font-size: 8rem;
    }

    .phik-text-image {
        width: 70vw;
    }


    .last-section-overlay8-content-bottom {
        margin-left: 10%;
    }
}

@media (max-width: 1260px) {

    .last-section-overlay8-content-bottom {
        margin-left: 15%;
    }
}

@media (max-width: 1200px) {
    .phone-with-glow-pink-image {
        width: 50vw;
    }

    .phik-text-image {
        width: 75vw;
    }
}

/* Tablets (below 1024px) */
@media (max-width: 1024px) {

    .last-section {
        padding: 0px 0px 0px;
        background-attachment: scroll;
        /* fix flicker */
    }

    .last-title {
        font-size: 2.8rem;
    }

    .last-description {
        font-size: 1.5rem;
    }

    .scratch1-image {
        width: 100vw;
    }

    .last-section2 {
        padding: 100px 30px 60px;
        background-attachment: scroll;
    }

    .last-title2 {
        font-size: 2.5rem;
    }

    .last-description2 {
        font-size: 1.5rem;
    }

    .guess-early-image {
        width: 100vw;
    }

    .last-section3 {
        padding: 100px 30px 60px;
        background-attachment: scroll;
    }

    .last-title3 {
        font-size: 3rem;
    }

    .last-description3 {
        font-size: 1.6rem;
    }

    .bonus-clue-image {
        width: 70vw;
        margin: 2rem auto;
    }

    .last-section4 {
        padding: 100px 30px 60px;
        background-attachment: scroll;
    }

    .last-title4 {
        font-size: 3rem;
    }

    .last-description4 {
        font-size: 1.6rem;
    }

    .phone-with-glow-pink-image,
    .phone-with-glow-image {
        width: 45%;
        margin: 2rem auto;
    }

    .last-section8 {
        padding: 100px 30px 70px;
    }

    .last-section-overlay8-content-top {
        max-width: 70%;
        gap: 16px;
    }

    .last-title6 {
        font-size: 4rem;
    }

    .last-title6-2 {
        font-size: 1.8rem;
    }

    .last-description6,
    .last-description6-2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .last-title8 {
        font-size: 2.5rem;
    }

    .last-title8-2 {
        font-size: 1.1rem;
    }

    .button-down-image {
        width: 70px;
    }

    .last-section-overlay8-content-bottom .list1 {
        font-size: 1.05rem;
    }

    .last-title9 {
        font-size: 3rem;
    }

    .phone-image {
        width: 400px;
    }

    .last-section-overlay9-content {
        gap: 30px;
    }

    .last-section-overlay9-content-right {
        max-width: 50%;
    }

    .last-title11-2 {
        font-size: 2.8rem;
    }

    .last-title11-3 {
        font-size: 1.3rem;
    }

    .last-section11-content-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 30px;
    }

    .last-section11-left,
    .last-section11-right {
        max-width: 100% !important;
    }

    .last-section11-right {
        margin-top: 40px;
        padding: 30px;
    }

    .last-section11-left h3,
    .last-section11-right h3 {
        margin-bottom: 20px !important;
    }

    .last-section11-icons {
        justify-content: center;
    }

    .last-section11-response {
        margin-top: 30px !important;
    }
}

@media (max-width: 1100px) {
    .last-title7 {
        font-size: 7rem;
    }

    .phik-text-image {
        width: 80vw;
    }

    .last-section-overlay8-content-top {
        padding: 60px 10px;
    }
}

@media (max-width: 970px) {

    .about-container {
        max-width: 90%;
    }

    .about-desc,
    .about-desc2,
    .about-desc3 {
        font-size: 1.5rem;
    }

    .last-title7 {
        font-size: 6.5rem;
    }
}

@media (max-width: 900px) {

    .last-title {
        font-size: 3rem;
    }

    .last-description {
        font-size: 2rem;
    }

    .scratch1-image {
        width: 100vw;
    }

    .guess-early-image {
        width: 100%;
    }

    .last-title3 {
        font-size: 3rem;
    }

    .last-description3 {
        font-size: 1.5rem;
    }

    .bonus-clue-image {
        width: 80%;
    }

    .last-title4 {
        font-size: 3.4rem;
    }

    .last-description4 {
        font-size: 1.4rem;
    }

    .phone-with-glow-pink-image {
        width: 60vw;
    }

    .last-title7 {
        font-size: 6rem;
    }

    .last-section-overlay8-content-top {
        padding: 50px 10px;
        max-width: 80%;
    }

    .last-section-overlay8-content-bottom {
        margin-left: 1%;
    }

    .last-title10 {
        font-size: 2.2rem;
        min-width: 100vw;
    }
}

@media (max-width: 800px) {
    .last-title7 {
        font-size: 5rem;
    }

    .last-section-overlay8-content-bottom {
        margin-left: 1%;
    }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {

    .last-section {
        padding: 0px 0px 0px;
    }

    .last-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .last-description {
        font-size: 1.2rem;
        max-width: 400px;

        margin-bottom: 1.5rem;
    }

    .scratch1-image {
        width: 100vw;
        /* max-width: 400px; */
    }

    .last-section2 {
        padding: 80px 20px 60px;
        text-align: center;
    }

    .last-title2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .last-description2 {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        max-width: 500px;

    }

    .guess-early-image {
        width: 100vw;
        margin: 1.5rem auto;
    }

    .last-section3 {
        padding: 80px 20px 60px;
        text-align: center;
    }

    .last-title3 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .last-description3 {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .bonus-clue-image {
        width: 70vw;
        margin: 1.5rem auto;
    }

    .last-section4 {
        padding: 80px 20px 60px;
        text-align: center;
    }

    .last-title4 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .last-description4 {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .phone-with-glow-pink-image,
    .phone-with-glow-image {
        width: 65%;
        margin: 1.5rem auto;
    }

    .last-title6 {
        font-size: 3.2rem;
    }

    .last-title6-2 {
        font-size: 1.6rem;
    }

    .last-description6,
    .last-description6-2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .last-section6 {
        padding: 100px 20px 60px;
    }

    .last-section8 {
        background-attachment: scroll;
        /* fix mobile background bug */
        padding: 90px 20px 60px;
    }

    /* Stack image above text */
    .last-section-overlay8-content-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
        max-width: 100%;
        padding: 25px 20px;
        gap: 15px;
    }

    .button-down-image {
        width: 60px;
        margin: 0 auto 10px;
    }

    .last-title8 {
        font-size: 2.2rem;
        text-align: center;
    }

    .last-title8-2 {
        font-size: 1.05rem;
        text-align: center;
    }

    .last-section-overlay8-content-bottom {
        margin-left: 0;
        gap: 15px;
    }

    .last-section-overlay8-content-bottom .list-item {
        width: 100%;
        max-width: 600px;
        padding: 10px 15px;
    }

    .last-section-overlay8-content-bottom .button-up-image {
        width: 40px;
        margin-top: 4px;
    }

    .last-section-overlay8-content-bottom .list1 {
        font-size: 1rem;
        line-height: 1.3;
    }

    .last-section9 {
        background-attachment: scroll;
        padding: 100px 20px 60px;
    }

    .last-section-overlay9-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .phone-image {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .last-section-overlay9-content-right {
        max-width: 90%;
        margin-left: 0;
        margin-top: 0;
    }

    .last-title9 {
        font-size: 2.4rem;
    }

    .last-section9-list-item {
        margin-left: 0;
        padding: 20px 20px 20px 45px;
    }

    .last-section9-list-number {
        left: -35px;
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .last-section9-list-text {
        font-size: 1rem;
    }

    .last-title11-2 {
        font-size: 2.2rem;
    }

    .last-title11-3 {
        font-size: 1.1rem;
        margin-top: 30px !important;
    }

    .last-section11-content-box {
        padding: 25px 20px;
        gap: 25px;
    }

    .last-section11-right {
        border-radius: 30px;
        padding: 25px;
    }

    .last-section11-right input,
    .last-section11-right textarea {
        font-size: 0.95rem;
    }

    .last-section11-btn {
        font-size: 0.95rem;
        padding: 10px;
    }

    .last-section11-icons a {
        font-size: 1.3rem;
    }
}

@media (max-width: 700px) {
    .last-section {
        /* padding: 100px 20px 60px; */
        background-attachment: scroll;
    }

    .last-title {
        font-size: 2.8rem;
    }

    .last-description {
        font-size: 1.5rem;
        max-width: 400px;
    }

    .last-section-overlay {
        padding: 1rem;
    }

    .scratch1-image {
        width: 100vw;
        /* max-width: 300px; */
        margin: 2rem auto;
    }

    .guess-early-image {
        width: 100vw;
    }

    .last-title3 {
        font-size: 2.5rem;
    }

    .last-description3 {
        font-size: 1.4rem;
    }

    .bonus-clue-image {
        width: 70vw;
    }

    .last-title4 {
        font-size: 3.1rem;
    }

    .last-description4 {
        font-size: 1.3rem;
    }

    .phone-with-glow-pink-image {
        width: 80vw;
    }

    .last-title7 {
        font-size: 4.7rem;
    }

    .last-section-overlay8-content-bottom {
        margin-left: 1%;
    }
}

@media (max-width: 600px) {

    .svg-section {
        min-height: 10vh !important;
    }

    /*     
    .svg-fade-carousel{
        height: 45vh !important;
    } */

    .about-container {
        max-width: 80%;

    }

    .last-section2 {
        min-height: 10vh !important;
    }

    .last-section-overlay2 {
        padding: 0%;
    }

    .last-section3 {
        min-height: 10vh !important;
    }

    .last-section-overlay3 {
        padding: 0%;
    }

    .last-section4 {
        min-height: 10vh !important;
    }

    .last-section-overlay4 {
        padding: 0%;
    }

    .last-section-mid {
        min-height: 10vh !important;
    }

    .last-section-overlay-mid {
        padding: 0%;
    }

    .last-section5 {
        min-height: 10vh !important;
    }

    .last-section-overlay5 {
        padding: 0%;
    }

    .last-section6 {
        min-height: 10vh !important;
    }

    .last-section-overlay6 {
        padding: 0%;
    }

    .last-section7 {
        min-height: 10vh !important;
    }

    .last-section-overlay7-content {
        padding: 0%;
    }

    .last-title7 {
        font-size: 4rem;
    }

    .last-section8 {
        min-height: 10vh !important;
    }

    .last-section-overlay8-content {
        padding: 0%;
    }

    .last-section-overlay8-content-top {
        padding: 50px 10px;
        max-width: 100%;
    }

    .last-section-overlay8-content-bottom {
        margin-left: 1%;
    }

    .last-section9 {
        min-height: 10vh !important;
    }

    .last-section9-title-wrapper {
        padding: 0%;
    }

    .last-section10 {
        min-height: 10vh !important;
    }

    .last-title10 {
        font-size: 2.2rem;
        min-width: 100vw;
    }

    .last-section11 {
        min-height: 10vh !important;
    }

    .last-section11-title-wrapper {
        padding: 0%;
    }
}

@media (max-width: 500px) {

    .about-desc,
    .about-desc2,
    .about-desc3 {
        font-size: 0.9rem;
    }

    .last-title7 {
        font-size: 3.5rem;
    }

    .phik-text-image {
        width: 90vw;
    }

    .last-section-overlay8-content-top {
        padding: 50px 50px;
        max-width: 100%;
    }

    .last-section-overlay8-content-bottom {
        margin-left: 1%;
    }
}

/* Optional: Extra refinement for very small screens */
@media (max-width: 480px) {
    .last-section {
        padding: 0px 0px 0px;
    }

    .last-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .last-description {
        font-size: 1rem;
        max-width: 300px;
        line-height: 1.4;
    }

    .scratch1-image {
        width: 150vw;
        height: 50vh;
        /* max-width: 350px; */
    }

    .last-section2 {
        padding: 60px 15px 40px;
    }

    .last-title2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .last-description2 {
        font-size: 1rem;
        line-height: 1.4;
        max-width: 350px;
    }

    .guess-early-image {
        width: 100vw;
        /* height: 100vh; */
    }

    .phone-with-glow-pink-image {
        width: 100vw;
    }

    .last-section3 {
        padding: 60px 15px 40px;
    }

    .last-title3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .last-description3 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .bonus-clue-image {
        width: 70vw;
    }

    .last-section4 {
        padding: 60px 15px 40px;
    }

    .last-title4 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .last-description4 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .phone-with-glow-pink-image,
    .phone-with-glow-image {
        width: 100vw;
    }

    .last-title6 {
        font-size: 2.6rem;
    }

    .last-title6-2 {
        font-size: 1.4rem;
    }

    .last-description6,
    .last-description6-2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .last-title7 {
        font-size: 3rem;
    }

    .last-section-overlay8-content-top {
        padding: 20px 20px;
        max-width: 100%;
    }

    .last-section-overlay8-content-bottom {
        margin-left: 1%;
    }

    .last-section8 {
        padding: 80px 15px 50px;
    }

    .button-down-image {
        width: 50px;
    }

    .last-title8 {
        font-size: 1.8rem;
    }

    .last-title8-2 {
        font-size: 0.95rem;
    }

    .last-section-overlay8-content-bottom .button-up-image {
        width: 35px;
    }

    .last-section-overlay8-content-bottom .list1 {
        font-size: 0.95rem;
    }

    .last-title9 {
        font-size: 2rem;
    }

    .phone-image {
        width: 90%;
    }

    .last-section9-list-item {
        padding: 15px 15px 15px 40px;
    }

    .last-section9-list-number {
        left: -30px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .last-title11-2 {
        font-size: 1.8rem;
    }

    .last-title11-3 {
        font-size: 1rem;
    }

    .last-section11-content-box {
        padding: 20px 15px;
        gap: 20px;
    }

    .last-section11-right {
        padding: 20px;
    }

    .last-section11-right input,
    .last-section11-right textarea {
        font-size: 0.9rem;
    }

    .last-section11-btn {
        font-size: 0.9rem;
    }

    .last-section11-icons {
        gap: 15px;
    }
  

}


/* *******************************Spritesheet section*************************************** */
.spritesheet-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    z-index: 1;
    transition: opacity 1s ease-out;
}

.spritesheet-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#sprite-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    pointer-events: none;
    touch-action: none;
}

.spritesheet-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

/* ************************************************************************************************************************************************************************ */

/* PHI K - FULL SCREEN SLIDING ABOUT SECTION (REFERENCE STYLE) */
.phik-about-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    font-family: "Poppins", sans-serif;
}

.phik-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    transform: translateY(100%);
    transition: transform 1.3s cubic-bezier(.77, 0, .18, 1);
    z-index: 0;
}

.phik-slide.active {
    transform: translateY(0);
    z-index: 2;
}

.phik-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.phik-slide>* {
    position: relative;
    z-index: 1;
}

.phik-slide h1,
.phik-slide p {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.phik-slide h1 {
    font-size: 2.6rem;
    margin-bottom: 18px;
}

.phik-slide p {
    max-width: 900px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.phik-slide.visible h1,
.phik-slide.visible p {
    opacity: 1;
    transform: translateY(-20px);
}


/* Responsive */
@media (max-width: 600px) {
    .phik-slide h1 {
        font-size: 2rem;
    }

    .phik-slide p {
        font-size: 1rem;
        padding: 0 12px;
    }
}



#spritesheet-section {
    height: 100vh;
    overflow: hidden;
    touch-action: none;
    background: #000;
}


/* ============================================================= */
/* REUSABLE SCROLL ANIMATIONS – WITH REVERSE SUPPORT             */
/* Just add class: fade-up | pop | slide-left | slide-right | zoom-in */
/* ============================================================= */

[class*="animate-"] {
    will-change: transform, opacity;
}

/* 1. Fade Up */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Pop (your favorite) */
.animate-pop {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-pop.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 3. Slide Left */
.slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 4. Slide Right */
.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 5. Zoom In */
.zoom-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Optional: Auto stagger for any parent with .stagger-container */
.stagger-container>* {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-container.visible>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-container.visible>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-container.visible>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-container.visible>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-container.visible>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-container.visible>* {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease, transform 0.8s ease;
}