:root{
    --container-width:100%;
    --container-height:100%;
    --container-padding:30px;
    --share-click-bg-color:rgba(113, 113, 113, 1);
    --sound-bg-color:rgba(71, 71, 71, 0.4);
    --slide-container-width:1270px;
    --body-bg-color:#0a0a0a;
    --header-height:80px;
    --moon-canvas-width:456px;
    --moon-canvas-height:448px;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #fff;
}

html {
    scroll-padding-top: 100px; 
}



@keyframes slide {
    0% {background-position: 0 0;}
    100% {background-position: 100% 0;}
}


body{
    font-family: "Inter", sans-serif;
    scroll-snap-type: y mandatory; 
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    
}

body::before{
    content: '';
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

li{list-style: none;}
a{text-decoration: none;}

body:has(.sound-screen-enable) {
   overflow: hidden;
}

body:has(.sound-screen-enable) .sound-button-screen{
    top:0px;
}

.moon-intrective-wrapper {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    clip-path: inset(0 0 0 0);
    overflow: hidden;
    
}

.header-area {
    position: relative;
    z-index: 8;
}

header {
    display: flex;
    justify-content: space-between;
    max-width: var(--container-width);
    width: 100%;
    position: fixed;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
    padding: 25px var(--container-padding);
    z-index: 20;
    height: var(--header-height);
}



.social-icon {
    background-color: var(--share-click-bg-color);
    width: 34px;
    height: 34px;
    display: grid;
    place-content: center;
    border-radius: 99999px;
    cursor: pointer;
}

.moon-svg-container {
    position: fixed;
    max-width: var(--container-width);
    width: 100%;
    height: 70svh;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    z-index: 0;
    will-change: rigth, opacity;
    top: 50%;
    transform: translateY(-50%);
    right: -25%;
}

canvas {
    width: 100%;
    object-fit: cover;
    height: 100%;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: 1;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.canvas-container {
    position: fixed;
    top: 0;
    left: 50%;
    height: 100dvh;
    overflow: hidden;
    width: var(--container-width);
    transform: translateX(-50%);
    opacity: 0;
}

.screen-play-area {
    position: relative;
    z-index: 1;
}


.frame-sentinel {
    width: 100%;
    pointer-events: none;
}

.slide-text-between {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: calc(100% - 40px);

}
.slide-text-between h2 {
    font-size: 32px;
    line-height: 39px;
}

.slide-text-container p {
    font-size: 20px;
    line-height: 31px;
}
.slide-text-container p:not(:last-child){
    margin-bottom: 15px;
}

.slide-text-container {
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    background-color: rgb(0, 0, 0, .7);
    width: 100%;
    text-align: center;
}

.sound-button-screen {
    position: fixed;
    max-width: var(--container-width);
    width: 100%;
    height: 100dvh;
    top: -100%;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px var(--container-padding);
    row-gap: 20px;
    left: 0;
    background-color: rgb(0, 0, 0, 0.7);
    transition: top 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sound-item {
    background-color: var(--sound-bg-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    display: flex;
    gap: 10px;
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    max-width: 480px;
}


.heading-first {
    color: #fff;
    font-weight: 700;
    font-size: 66px;
    line-height: 62px;
    max-width: 230px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.29);
    transition: transform 0.4s;
    letter-spacing: -2%;
    text-transform: capitalize
};
.h1-animation{
    transform: translateX(-100%);}
.social-wrapper { position: absolute; top: 71px; right: 30px; z-index: 999; display: none; }
.social-wrapper.active {display: block;}
.social-wrapper ul { display: flex; align-items: center; flex-direction: column; }
.social-wrapper ul li img {max-width: 35px;cursor: pointer;    user-select: none;}
.social-wrapper ul li:nth-of-type(2) img { max-width: 32px; margin-bottom: 6px; margin-top: 7px; }
.header-slide {  
    height: 100dvh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header-slide.header-center-slide {
    justify-content: center;
    text-align: center;
}

.header-empty-area {
    height: 400dvh;
}

.sub-heading {
    font-weight: 700;
    line-height: 1;
    font-size: 42px;
    text-transform: capitalize;
}

.sub-heading span{
    font-size: 24px;
    display: block;
    text-shadow: 0px 3px 0px #1b1b1b;
}

.tagging-area ul li a, .tagging-area ul li {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
}

.tagging-area ul li span, .last-slide-data span{font-weight: 400;}
.sub-header-container {
    display: grid;
    row-gap: 30px;
    width: 100%;
    max-width: 800px;
}
.scroll-text {
    font-size: 22px;
    line-height: 1;
}

.last-slide-data {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    cursor: pointer;
    font-family: var(--anton-font);
    text-align: center;
    letter-spacing: 3px;
}
 .last-slide-data span{display: block;}
.header-slide.second-slide {
    align-items: flex-end;
}
body:has(.sound-screen-enable) .scroll-page-icons {
    opacity: 0;
}
.scroll-page-icons {
    gap: 10px;
    position: fixed;
    bottom: 5dvh;
    transform: translateX(-50%);
    left: 50%;
    z-index: 20;
    text-align: center;
    display: grid;
    opacity: 1;
    transition: opacity 0.4s ;
}

.scroll-icon svg {
    width: 16px;
    height: 24px;
    fill: #fff;
    animation: 2s infinite bounce;
    -webkit-animation: 2s infinite bounce;
    -moz-animation: 2s infinite bounce;
    -o-animation: 2s infinite bounce;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0px)}
    40% {-webkit-transform: translateY(30px)}
    60% {-webkit-transform: translateY(-15px)}
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0)}
    40% {-moz-transform: translateY(-30px)}
    60% {-moz-transform: translateY(-15px)}
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0)}
    40% {-o-transform: translateY(-30px)}
    60% {-o-transform: translateY(-15px)}
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0)}
    40% {transform: translateY(-30px)}
    60% {transform: translateY(-20px)}
    100% {transform: translateY(0px)}
}

.header-text-container {
    z-index: 1;
    position: relative;
    max-width: var(--slide-container-width);
    width: calc(100% - calc(var(--container-padding) * 2));
    margin: 0 auto;
}

.slide-container {
    width: 100%;
    overflow: hidden;
}
.header-slide {
    width: calc(100% - calc(var(--container-padding) * 2));
    max-width: var(--slide-container-width);
    margin: 0 auto;
}

.header-slide.last-slide{
    width: 100%;
    max-width: 100%;
    padding: 40px 0px;
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    background-color: rgb(0, 0, 0, .3);
}
.header-text-container p {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 34px;
}

.header-slide.last-next {
    justify-content: center;
}

#galaxyCanvas {
    display: block;
    background-color: #000;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
  }

.extra-assest-container {
    z-index: 20;
    position: relative;
    background-color: rgb(255 254 254 / 27%);
    backdrop-filter: blur(20px);
}
.extra-as-inner-container {
    max-width: var(--slide-container-width);
    width: calc(100% - var(--container-padding));
    margin: 0 auto;
    padding-bottom: 30px;
}

.int-row {
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    overflow: auto;
}

.extra-as-inner-container h3 {
    padding: 30px 0px 20px 0px;
    font-size: 26px;
    font-weight: 500;
    border-bottom: 1px solid #323232;
    margin-bottom: 30px;
    color: #000;
}

.intractive-heading {
    font-size: 18px;
    line-height: 23px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.interactive-image img {
    width: 100%;
}

.credit-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0.7);
}
.credit-container.active{display: flex;}

.intractive-item {
    background-color: #00000075;
    padding: 10px 5px;
    border-radius: 0;
    backdrop-filter: blur(20px);
    flex: 0 0 calc(100% / 5);
}

.crd-inner-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 3px;
    max-width: 553px;
    width: calc(100% - 40px);
}
.crd-inner-container *{color: #000;}
.crd-header {
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.crd-header h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
}

.credit-container p {
    font-size: 18px;
    line-height: 1;
}

.crd-close {
    cursor: pointer;
}
.credit-container p:not(:last-child){margin-bottom: 15px;}
.crd-link {
    position: fixed;
    bottom: 20px;
    left: 10px;
    font-size: 13px;
    text-decoration: underline;
    font-weight: 400;
    cursor: pointer;
    z-index: 19;
}

.slide-text-container:has(p) h2 { margin-bottom: 15px; font-size: 33px; border-bottom: 1px solid #fff; padding-bottom: 15px; }
.loader-wrapper {
    position: fixed;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    left: 0;
    top: 0;
    right: 0;
    background: #211d2e;
    flex-direction: column;
}
.loader-wrapper img {
    width: 800px;
}
.rotation-msg{
    display: none;
    background-color: #333399;
    position: fixed;
    z-index: 9999999999;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.rm-center{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 470px;
}
.rotation-img{
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}
.rotation-img img{width: 180px;}
.rm-txt{text-align: center;}
.rm-txt h5 {
    font: 700 26px / 1 "Inter", sans-serif;
    color: #fff;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    margin-top: 20px;
}
.rm-txt p{
    font: 300 17px/23px "Inter", sans-serif;
    color: #fff;
}
.slide-text-container p strong {
    display: block;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 32px;
}

.credit-container p a {
    text-decoration: underline;
}



@media (min-width:1400px) {
    .heading-first {font-size: 97px;
        max-width: 500px;
        line-height: 104px;}
    .logo-container svg { width: 110px; height: auto; }
    .scroll-icon { margin-top: 30px; }
    .social-icon { width: 50px; height: 50px; }
    .social-icon svg{width: 20px;height: 20px;}
    .sub-heading span {font-size: 39px;margin-bottom: 10px;}
    .sub-heading {font-size: 78px;}
    .tagging-area ul li a, .tagging-area ul li {font-size: 20px;line-height: 31px;}
    .slide-text-container {font-size: 24px;line-height: 33px;}
    .social-wrapper ul li img {max-width: 45px;}
    .social-wrapper ul li:nth-of-type(2) img {max-width: 42px;}
    .social-wrapper {top: 88px;right: 33px;}
    .last-slide-data { font-size: 72px; line-height: 1; }

}

@media (max-width:1400px) {
    .heading-first{font-size: 90px; line-height: 1; max-width: 50%;}
    .sub-heading {font-size: 72px; }
    .sub-heading span { font-size: 33px; line-height: 44px; }
    .header-slide { max-width: 920px; }
    .header-slide { max-width: 920px; }.tagging-area ul li a, .tagging-area ul li {  font-size: 18px; line-height: 31px; }
    .scroll-text {font-size: 16px;}
    .scroll-icon svg {width: 12px;height: 20px;}
    .header-text-container {max-width: 920px;}
    .header-slide.last-slide{height: auto;}
    .header-text-container p { font-size: 19px; margin-bottom: 15px; line-height: 27px; }
    .scroll-page-icons{bottom: 0;}
    .last-slide-data {font-size: 54px; line-height: 1;}
    .slide-text-between h2 { font-size: 27px; line-height: 33px; }
    .slide-text-container { padding: 30px; backdrop-filter: blur(5px); font-size: 16px; line-height: 26px; }
    .slide-text-between {max-width: 720px;}
    .slide-text-container p { font-size: 18px; line-height: 29px; }
    .slide-text-container:has(p) h2 {font-size: 30px;line-height: 38px;}
    .extra-as-inner-container h3 { padding: 15px 0px 10px 0px; font-size: 24px; margin-bottom: 15px; }
    .intractive-heading { font-size: 15px; line-height: 19px; }
    .crd-inner-container{padding: 20px;}
    .credit-container p {font-size: 16px;}
    .credit-container p:not(:last-child) { margin-bottom: 10px; }
    .crd-header{margin-bottom: 15px;}
}

@media screen and (max-device-width:1200px) and (orientation:landscape) {
    .rotation-msg{
        display: block;
    }
    body, html {
        overflow: hidden;
        background-color: #333399;
    }
    
}

@media (max-width:1024px) {
    .heading-first { font-size: 100px;}
    .header-slide.last-next{height: 500px;}
    .sub-header-container {max-width: 100%;}
    .header-slide.last-slide {height: auto;}
    .slide-text-between h2 {font-size: 24px;line-height: 31px;}
    header {backdrop-filter: blur(10px);}
    .slide-text-container:has(p) h2 {font-size: 26px;line-height: 34px;}
    .slide-text-container p { font-size: 17px; line-height: 28px; }
    .slide-text-between {max-width: 800px;}
    .slide-text-container{text-align: left;}
}

@media (max-width:920px) {
    .slide-text-between {padding: 0px 80px;}
}


@media (max-width:767px) {
    .slide-text-between h2 { font-size: 18px; line-height: 27px; font-weight: 600; }
    .slide-text-container {padding: 20px;text-align: left;}
    .slide-text-container p { font-size: 16px; line-height: 26px; }
    .credit-container p { font-size: 16px;  }
    .crd-header h3{font-size: 18px;}
    header {padding: 10px 20px; background-color: rgb(0, 0, 0, 0.3);align-items: center;}
    .social-wrapper {top: 70px;right: 20px;}
    .intractive-heading {font-size: 16px;line-height: 26px;}
    .intractive-item{flex: 0 0 200px;}
    .extra-as-inner-container h3 { padding: 10px 0px 10px 0px; font-size: 18px; margin-bottom: 10px; color: #000; }
    .moon-svg-container{
        right: -100%;
        height: 100dvh;
        top: 0;
        transform: translateY(0px);
        background-position: bottom left;
        background-position-y: calc(100% - 34px);
        background-size: var(--moon-canvas-width) var(--moon-canvas-height);
        width: calc(var(--moon-canvas-width) + var(--container-padding));
        max-width: calc(var(--moon-canvas-width) + var(--container-padding));
    }
    .scroll-text { font-size: 12px; line-height: 22px; }
    .sub-heading span {margin-bottom: 10px;}
    .slide-container .header-slide:first-child{margin-top: var(--header-height);}
    .slide-container {width: 100%;}
    .header-slide { align-items: flex-start;}
    .header-text-container p { font-size: 16px; margin-bottom: 15px; line-height: 26px; }
    .header-slide.last-slide{height: auto;}
    .header-slide.last-next {align-items: center;}
    .extra-as-inner-container {padding-bottom: 10px;}

    .heading-first {font-size: 66px;margin: 0;line-height: 62px;padding-top: 81px;max-width:230px;}
    .sub-heading {font-size: 42px;}
    .sub-heading span {font-size: 24px;line-height: 1;}
    .tagging-area ul li a, .tagging-area ul li {font-size: 14px;line-height: 20px;}
    .last-slide-data {font-size: 6dvh;}
    .slide-text-between {padding: 0px 0px;width: calc(100% - 60px);}
    .slide-text-container:has(p) h2 {font-size: 18px;line-height: 24px;padding-bottom: 10px;}
    .slide-text-container p:not(:last-child) {margin-bottom: 10px;}
    .crd-link {bottom: 5px;left: 5px;}
    .header-slide.header-center-slide{
        width: calc(100% - 24px);
        text-align: left;
        justify-content: flex-end;
        align-items: center;
    }
    .sub-header-container {
        flex: 0 0 auto;
        flex-shrink: 0;
        max-width: 70%;
    }
    .header-slide.last-next {
        text-align: left;
    }
    .slide-text-container p strong {
        margin-bottom: 10px;
        font-size: 24px;
    }

}