/* @import url("https://p.typekit.net/p.css?s=1&k=eqd6ecw&ht=tk&f=37321.37324&a=51226849&app=typekit&e=css"); */

/* @font-face {
font-family:"rigid-square";
src:url("https://use.typekit.net/af/435145/00000000000000007735c428/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),url("https://use.typekit.net/af/435145/00000000000000007735c428/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),url("https://use.typekit.net/af/435145/00000000000000007735c428/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
font-display:swap;font-style:normal;font-weight:400;font-stretch:normal;
}

@font-face {
font-family:"rigid-square";
src:url("https://use.typekit.net/af/bb5c38/00000000000000007735c433/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/bb5c38/00000000000000007735c433/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/bb5c38/00000000000000007735c433/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
font-display:swap;font-style:normal;font-weight:700;font-stretch:normal;
} */

:root {
  --border: 1vh;
  --radius: 75vh
}


.go3176171171 {
    h1,h2,h3,h4,h5,p {
        color: #000 !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    a {
        border: none !important;
    }
}

.go2415201373 {
    a {
        border: none !important;
        background-color: #fff !important;
        border-radius: none !important;
        line-height: normal !important;
        padding: 0 !important;
        text-decoration:underline !important;
    }
}

.needsclick {
    h1,h2,h3,h4,h5,p {
        color: #000 !important;
        filter: none !important;
        -webkit-filter: none !important;
    }

    a {
        border: none !important;
        background-color: #fff !important;
        border-radius: none !important;
        line-height: normal !important;
        padding: 0 !important;
        text-decoration:underline !important;
    }

    svg {
        /* display: none !important; */
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.overlay-black{
    position: absolute;
    top: 0; left: 0;
    height: 100vh;
    width: 100vw;
    z-index:1;
    background-color:black;
    animation-name:darkFadeIn;
    animation-duration:0.75s;
    animation-duration:1.25s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

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

h1,h2,h3,h4,h5,p,a,label {
    font-family: 'urbane-condensed', sans-serif;
}

h1 {
    font-family: "urbane-condensed", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    color: #FFFFF7;
    letter-spacing: -0.5px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.subtitle {
    color: #C8B5A9;
}

h2 {
    font-family: MaryRoman, sans-serif;
    font-family: EBGaramondThin, serif;
    font-family: "urbane-condensed", sans-serif;
    font-size: 1.5rem;
    color: #C8B5A9;
    color: #FFFFF7;
}

h3 {
    font-size: 1.6rem;
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
    font-size: 1rem;
}

p {
    font-size: 0.9rem;
    font-size: 1rem;
    line-height: 1.5rem;
    line-height: 1.25rem;
    /* font-family: "urbane-condensed", sans-serif; */
    font-family: "Alegreya sans", sans-serif;

}

label {
    font-family: "rigid-square", sans-serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
}

.star.bright {
    background: rgba(184, 134, 11, 0.9);
    box-shadow: 0 0 4px rgba(184, 134, 11, 0.5);
    animation: brighTwinkle 6s ease-in-out infinite;
}

.star.distant {
    background: rgba(70, 130, 180, 0.6);
    animation: distantTwinkle 8s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes brighTwinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    33% { opacity: 1; transform: scale(1.3); }
    66% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes distantTwinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
}

@keyframes zoomIn {
    0% {
        /* transform: scale(0.8); */
        transform: scale(1);
        filter: blur(0px);
    }
    100% {
        /* transform: scale(1); */
        transform: scale(1.105);
        /* filter: blur(1px); */
        filter: blur(0.8px);
    }
}

.hero {
    position: fixed;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 95%;
    z-index: -1;
            
    background-image: url('assets/images/helix2.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: zoomIn 5s ease-out forwards;
    mix-blend-mode: lighten;
}

.hero:after {
    content:"";
    background-image:url("https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Dissolve_Noise_Texture.png");
    background-image:url("assets/images/texture.webp");
    /* height: 300%; */
    height: 100%;
    height: inherit;
    width: 300%;
    position: fixed;
    position: absolute;
    height: -webkit-fill-available;
    overflow: hidden;
    opacity:0.1;
    opacity:0.085;
    animation: animateGrain 8s steps(10) infinite;
}


@keyframes animateGrain{
    0%, 100% { transform:translate(0, 0) }
    10%{
        transform:translate(-5%,-10%)
    }
    20%{
        transform:translate(-15%,-20%)
    }
    30%{
        transform:translate(-5%,-10%)
    }
    40%{
        transform:translate(-15%,-20%)
    }
    50%{
        transform:translate(-5%,-10%)
    }
    60%{
        transform:translate(-15%,-20%)
    }
    70%{
        transform:translate(-5%,-10%)
    }
    80%{
        transform:translate(-15%,-20%)
    }
    90%{
        transform:translate(-5%,-10%)
    }
    100%{
        transform:translate(-15%,-20%)
    }
}

@keyframes animateGrain{
    0%, 100% { transform:translate(0, 0) }
    10%{
        transform:translate(-2%,-5%)
    }
    20%{
        transform:translate(-7%,-10%)
    }
    30%{
        transform:translate(-2%,-5%)
    }
    40%{
        transform:translate(-7%,-10%)
    }
    50%{
        transform:translate(-2%,-5%)
    }
    60%{
        transform:translate(-7%,-10%)
    }
    70%{
        transform:translate(-2%,-5%)
    }
    80%{
        transform:translate(-7%,-10%)
    }
    90%{
        transform:translate(-2%,-5%)
    }
    100%{
        transform:translate(-7%,-10%)
    }
}

.overlay {
    position:absolute;
    width:100vw;
    height:100vh;
    background-image:linear-gradient(transparent,rgba(0,0,0,1));
    z-index:1;    
    pointer-events: none;
}

.biobuttonsnav {
    position: fixed;
    z-index: 3;
    bottom: 2rem;
    place-self: center;
    transition: transform 250ms cubic-bezier(0, 0, 0.03, 1) 100ms;
    background-color: rgba(236, 232, 221, 0.2);
    background: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 232, 221, 0.5);
    border: 1px solid #979797;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: navFadeIn 1.4s ease-out forwards;
    animation-delay: 1s;
}

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translate3d(0px, 25px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(15px);
    }
    to {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(0px);
    }
}

.biobuttonsnav a {
    transition: transform 250ms cubic-bezier(0, 0, 0.03, 1) 100ms;
    padding: 1rem;
    border-radius: none;
    border: none;
    background-color: unset;
    font-family: "rigid-square", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 3rem;
    transition: all .2s;
    color: #ece8dd;
}

.biobuttonsnav a:hover {
    transition: transform 250ms cubic-bezier(0, 0, 0.03, 1) 100ms;
    color: #000;
    background-color: #ece8dd;
    border-radius: 0.5rem;
}

.biobuttonsnav input {
    transition: transform 250ms cubic-bezier(0, 0, 0.03, 1) 100ms;
    padding: 1rem;
    border-radius: none;
    border: none;
    background-color: unset;
    font-family: "rigid-square", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1rem;
    color: #ece8dd;
}

.biobuttonsnav input:hover {
    transition: transform 250ms cubic-bezier(0, 0, 0.03, 1) 100ms;
    color: #000;
    background-color: #ece8dd;
    border-radius: 1rem;
    cursor: pointer;
}

.content {
    position: relative;
    z-index: 2;
    display: block;
    min-height: 100vh;
    color: white;
    padding: 30vh 8rem 0;
    padding: 35vh 8rem 0;
}

.content-header {
    justify-items: center;
    text-align: center;
    margin-bottom: 100px;

    p {
        letter-spacing: 0.3rem;
        letter-spacing: 0.25rem;
        margin-bottom: 2rem;
        /* font-size: 1rem; */
    }
}

.content-author {
    margin: 1.5rem 0;
    opacity: 0;
    animation-name: blur;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    animation-delay: 1s;

    a {
        margin-right: 2rem;
    }
}

.cta-button {
    position: relative;
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.15) 0%, 
        rgba(184, 134, 11, 0.25) 50%, 
        rgba(184, 134, 11, 0.15) 100%);
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.4) 0%, 
        rgba(184, 134, 11, 0.5) 50%, 
        rgba(184, 134, 11, 0.4) 100%);
    background: linear-gradient(135deg, 
            rgba(184, 134, 11, 0.5) 0%, 
            rgba(184, 134, 11, 0.7) 50%, 
            rgba(184, 134, 11, 0.6) 100%);
    color: #b8860b;
    color: #fbb302;
    color: #f5be38;
    color: #fbdb8c;
    text-decoration: none;
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 0.5rem;
    font-weight: 400;
    font-family: 'urbane-condensed', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    font-family: "Alegreya sans", sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(184, 134, 11, 0.1), 
        transparent);
    background: linear-gradient(90deg, 
        transparent, 
        rgba(184, 134, 11, 0.4), 
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.3) 0%, 
        transparent 50%, 
        rgba(184, 134, 11, 0.3) 100%) border-box;
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.6) 0%, 
        transparent 50%, 
        rgba(184, 134, 11, 0.6) 100%) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.4) 0%, 
        rgba(184, 134, 11, 0.55) 50%, 
        rgba(184, 134, 11, 0.4) 100%);
    background: linear-gradient(135deg, 
        rgba(184, 134, 11, 0.5) 0%, 
        rgba(184, 134, 11, 0.7) 50%, 
        rgba(184, 134, 11, 0.5) 100%);
    border-color: rgba(184, 134, 11, 0.7);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.2);
    box-shadow: 0 8px 32px rgba(184, 134, 11, 0.4);
    transform: translateY(-2px);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    opacity: 1;
}

.preorder {
    font-size: 1.1rem;
}

.spanH1 {
    animation: h1Fade 1.5s ease-out forwards;
}

.hero-h1 {
    font-family: "urbane-condensed", sans-serif;
    font-weight: 300;
    font-weight: 600;
    font-size: 3.5rem;
    font-size: 4rem;
    color: #FFFFF7;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: transparent;
    animation: blurH1 4s ease-out forwards;
	-webkit-animation: blurH1 4s ease-out forwards;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.hero-h1:nth-child(1) {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}
.hero-h1:nth-child(2) {
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}
.hero-h1:nth-child(3) {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
.hero-h1:nth-child(4) {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}

@keyframes blurH1 {
	0%		{text-shadow:  0 0 100px #FFFFF7; opacity:0;}
	5%		{text-shadow:  0 0 90px #FFFFF7;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #FFFFF7;}
	80%		{text-shadow:  0 0 0px #FFFFF7;}
	85%		{opacity: 1;}
    100%    {color: #FFFFF7;text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);}
}

@-webkit-keyframes blurH1 {
	0%		{text-shadow:  0 0 100px #FFFFF7; opacity:0;}
	5%		{text-shadow:  0 0 90px #FFFFF7;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #FFFFF7;}
	80%		{text-shadow:  0 0 0px #FFFFF7;}
	85%		{opacity: 1;}
    100%    {color: #FFFFF7;text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);}
}

.spanH2 {
    animation: h2Fade 1.25s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-h2 {
    font-family: "urbane-condensed", sans-serif;
    font-weight: 300;
    font-size: 3rem;
    font-weight: 600;
    font-size: 4rem;
    color: #ff6b35;
    color: #FFD166;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: transparent;
    animation: blurH2 4s ease-out forwards;
	-webkit-animation: blurH2 4s ease-out forwards;
}

.hero-h2:nth-child(1) {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}
.hero-h2:nth-child(2) {
	animation-delay: 0.7s;
	-webkit-animation-delay: 0.7s;
}
.hero-h2:nth-child(3) {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}
.hero-h2:nth-child(4) {
	animation-delay: 0.9s;
	-webkit-animation-delay: 0.9s;
}

@keyframes blurH2 {
	0%		{text-shadow:  0 0 100px #f7931e; opacity:0;}
	5%		{text-shadow:  0 0 90px #f7931e;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #f7931e;}
	80%		{text-shadow:  0 0 0px #f7931e;}
	85%		{opacity: 1;}
    100%    {color: #f7931e;}
}

@-webkit-keyframes blurH2 {
	0%		{text-shadow:  0 0 100px #f7931e; opacity:0;}
	5%		{text-shadow:  0 0 90px #f7931e;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #f7931e;}
	80%		{text-shadow:  0 0 0px #f7931e;}
	85%		{opacity: 1;}
    100%    {color: #f7931e;}
}

@keyframes blurH2 {
	0%		{text-shadow:  0 0 100px #FFD166; opacity:0;}
	5%		{text-shadow:  0 0 90px #FFD166;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #FFD166;}
	80%		{text-shadow:  0 0 0px #FFD166;}
	85%		{opacity: 1;}
    100%    {color: #FFD166;}
}

@-webkit-keyframes blurH2 {
	0%		{text-shadow:  0 0 100px #FFD166; opacity:0;}
	5%		{text-shadow:  0 0 90px #FFD166;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #FFD166;}
	80%		{text-shadow:  0 0 0px #FFD166;}
	85%		{opacity: 1;}
    100%    {color: #FFD166;}
}

@keyframes blurH2 {
	0%		{text-shadow:  0 0 100px #fbb302; opacity:0;}
	5%		{text-shadow:  0 0 90px #fbb302;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #fbb302;}
	80%		{text-shadow:  0 0 0px #fbb302;}
	85%		{opacity: 1;}
    100%    {color: #fbb302;text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);}
}

@-webkit-keyframes blurH2 {
	0%		{text-shadow:  0 0 100px #fbb302; opacity:0;}
	5%		{text-shadow:  0 0 90px #fbb302;}
	15%		{opacity: 1;}
	20%		{text-shadow:  0 0 0px #fbb302;}
	80%		{text-shadow:  0 0 0px #fbb302;}
	85%		{opacity: 1;}
    100%    {color: #fbb302;text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);}
}

@keyframes h1Fade{
    0% {
        opacity: 0;
        transform: translate3d(0px, 100px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(0px);
    }
}

@keyframes h2Fade{
    0% {
        opacity: 0;
        transform: translate3d(0px, 75px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(0px);
    }
}

@keyframes blur {
    0% {
        opacity: 0;
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
    }
}

.timeline-section {
    padding: 120px 0;
    padding: 60px 0;
    padding: 0 0 120px;
    position: relative;
    z-index: 2;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #bd8801, #ffc125, #bd8801);
    filter: blur(1px);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.4);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    padding-left: 100px;
    /* opacity: 0;
    transform: translateX(30px);
    animation: elegantReveal 1s ease forwards; */
}

.timeline-item:nth-child(1) { animation-delay: 0.3s; }
.timeline-item:nth-child(2) { animation-delay: 0.6s; }
.timeline-item:nth-child(3) { animation-delay: 0.9s; }
.timeline-item:nth-child(4) { animation-delay: 1.2s; }

@keyframes elegantReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-year {
    color: #fbb302;
    font-size: 2.2rem;
    font-weight: 300;
    font-weight: 600;
    /* filter: blur(0.8px); */
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'urbane-condensed', sans-serif;
}

.timeline-content {
    background: rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 0.5rem;
    border-left: 2px solid rgba(70, 130, 180, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'urbane-condensed', sans-serif;
}

.timeline-content:hover {
    background: rgba(0, 0, 0, 0.6);
    border-left-color: rgba(184, 134, 11, 0.7);
    border-left-color: rgba(251, 179, 2, 0.8);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(5px);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 8rem;
}

.content-description {
    max-width: 600px;
    justify-self: right;

    p {
        margin-bottom: 1.5rem;
        color: #ece8dd;
    }
}

.content-description p:nth-child(1) {
    opacity: 0;
    animation-name: descriptionFade;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
	animation-delay: 0.75s;
	-webkit-animation-delay: 0.75s;
}
.content-description p:nth-child(2) {
    opacity: 0;
    animation-name: descriptionFade;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
	animation-delay: 1.05s;
	-webkit-animation-delay: 1.05s;
}
.content-description p:nth-child(3) {
    opacity: 0;
    animation-name: descriptionFade;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
	animation-delay: 1.25s;
	-webkit-animation-delay: 1.25s;
}
.content-description p:nth-child(4) {
    opacity: 0;
    animation-name: descriptionFade;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
	animation-delay: 1.45s;
    -webkit-animation-delay: 1.45s;
}

@keyframes descriptionFade{
    0% {
        opacity: 0;
        transform: translate3d(0px, 25px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(15px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
        filter: blur(0px);
    }
}

#book {
    margin-bottom: 50px;
    padding: 150px 50px;
    opacity: 0;
    animation-name: descriptionFade;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
	animation-delay: 1.45s;
    -webkit-animation-delay: 1.45s;
    display: grid;

}

.book-header {
    margin-bottom: 2rem;
    text-align: center;

    h1 {
        margin-bottom: 0.5rem;
        color: #fbb302;
        color: #fff;
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.2rem;
        /* letter-spacing: 0.3rem; */
    }
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    /* padding: 225px 50px; */
    max-width: 1200px;
    justify-self: center;
}

.book-cover {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: rotateY(-15deg) rotateX(5deg);
}

.cover-image {
    width: 100%;
    max-width: 350px;
    height: 500px;
    background: linear-gradient(135deg, #2c1810, #4a3728, #6b4c3a);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cover-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.3"/></svg>') center/cover;
}

.book-info {
    h3 {
        font-size: 2rem;
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 30px;
        margin-bottom: 20px;
        color: #f7931e;
        color: #FFD166;
        color: #fbb302;
        font-family: "urbane-condensed", sans-serif;
    }

    h4 {
        font-family: "Alegreya sans", sans-serif;
        font-size: 1.2rem;
    }

    a {
        font-family: "Alegreya sans", sans-serif;
    }

    p {
        /* font-size: 1.1rem; */
        line-height: 1.8;
        line-height: 1.25;
        color: #FFFFF7;
        margin-bottom: 20px;
    }
}

.publish-a {
    color: #fbb302;
}

.publish-a:hover {
    text-decoration: underline;
    
    color: #f7931e;
}

.game-divider {
    margin-top: 250px;
}

.text-overlay {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.fog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center bottom,
        rgba(139, 115, 85, 0.3) 0%,
        rgba(139, 115, 85, 0.1) 50%,
        transparent 100%
    );
    z-index: 40;
    opacity: 0.25;
    display: none;
}

.divider {
    text-align: center;
}

#trailers {
    /* grid-template-columns: 1fr 1fr;
    margin: 2rem 0 150px;
    margin: 2rem 0 210px;
    justify-items: center;
    gap: 4rem; */
    position: relative;
    justify-items: center;
    margin: 2rem 0;
    padding-bottom: 160px;
    display: grid;

    h2 {
        font-weight: 500;
        padding-bottom: 0.5rem;
    }

    h3 {
        font-family: 'urbane-condensed', sans-serif;
    }

    p {
        font-family: 'urbane-condensed', sans-serif;
        font-family: "Alegreya sans", sans-serif;
    }
}

.novel-trailer {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.game-trailer {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.video-card {
    background: rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: transform 0.3s ease;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0.5rem 0.5rem 0 0;
}

.video-info {
    padding: 25px;
}

.video-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
    color: #fbb302;
    letter-spacing: 0.5px;
}

.video-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

#soundtrack {
    position: relative;
    justify-items: center;
    margin: 2rem 0;
    padding-bottom: 160px;
    display: grid;
}

.soundtrack {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;

    h3 {
        font-family: 'urbane-condensed', sans-serif;
    }

    p {
        font-family: 'urbane-condensed', sans-serif;
        font-family: "Alegreya sans", sans-serif;
    }
}

.cosmic-divider {
    width: 300px;
    width: 500px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(184, 134, 11, 0.6), 
        rgba(70, 130, 180, 0.5), 
        rgba(184, 134, 11, 0.6), 
        transparent);
    margin: 80px auto;
    position: relative;
    opacity: 0;
    animation: navFadeIn 1.2s ease-out forwards;
    animation-delay: 0.45s;
    -webkit-animation-delay: 0.45s;
}

.cosmic-divider::before,
.cosmic-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.9) 0%, transparent 70%);
    border-radius: 50%;
}

.cosmic-divider::before {
    left: 25%;
    animation: stellarPulse 4s ease-in-out infinite;
}

.cosmic-divider::after {
    right: 25%;
    animation: stellarPulse 4s ease-in-out infinite 2s;
}

@keyframes stellarPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(2); }
}

@media (max-width: 768px) {
    .biobuttonsnav {
        /* top: 4rem; */
        bottom: 1rem;
        padding: 0.25rem;

        a {
            padding: 0.75rem;
            font-size: 0.8rem;
        }
    }

    .book-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item {
        padding-left: 80px;
        padding-left: 60px;
        margin-bottom: 80px;
    }

    .timeline-content {
        padding: 25px;
    }
            
    .timeline-container {
        padding: 0 10px;
    }
            
    .timeline-container::before {
        left: 40px;
    }
            
    .timeline-item::before {
        left: -50px;
    }

    .timeline-year {
        font-size: 2rem;
    }

    .book-info {
        h3 {
            font-size: 2rem;
        }
    }
            
    .video-grid {
        grid-template-columns: 1fr;
    }

    .content-author {
        a {
            margin-bottom: 1.5rem;
            margin: 0 0 1rem;
        }
    }
            
    .content-section {
        padding: 50px 20px;
        padding: 0px 20px;
    }

    .hero-h1 {
        font-size: 2.1rem;
        font-size: 2rem;
        font-size: 1.9rem
    }

    .hero-h2 {
        font-size: 2.05rem;
        font-size: 2rem;
        font-size: 1.9rem;
        /* font-size: 2rem; */
    }

    /* .hero-text {
        white-space: nowrap;
        overflow: hidden;
        overflow: auto;
        text-overflow: ellipsis;
    } */

    .spanH2 {
        margin-top: 0.25rem;
    }

    .content {
        padding: 35vh 2rem 0;
        padding: 32vh 2rem 0;
        padding: 30vh 2rem 0;
        padding: 31vh 2rem 0;
    }

    .content-header {
        margin-bottom: 80px;

        p {
            font-size: 0.8rem;
            letter-spacing: 0.2rem;
        }
    }

    #book {
        padding: 60px 50px;
        padding: 60px 30px;
        padding: 60px 0;
    }

    .book-showcase {
        padding: 50px 0px;
        padding: 100px 50px;
        padding: 250px 15px;
        padding: 0 15px;
        padding: 0 40px;
    }

    .game-divider {
        margin-top: 150px;
    }

    .cta-button {
        background: linear-gradient(135deg, 
            rgba(184, 134, 11, 0.5) 0%, 
            rgba(184, 134, 11, 0.7) 50%, 
            rgba(184, 134, 11, 0.6) 100%);
        color: #f5be38;
    }

    #game {
        padding: 0 0 20px;
        padding: 0 0 10px;
    }

    #trailers {
        display: block;
        /* margin: 0 0 50px; */
        /* margin: 2rem 0 50px; */
        /* margin: 0 0 160px; */
        padding-bottom: 20px;

        h1 {
            letter-spacing: 1px;
        }
    }

    .novel-trailer, .game-trailer {
        margin-bottom: 3rem;
        padding: 0;
    }

    #soundtrack {
        h1 {
            letter-spacing: 1px;
        }
    }

    .soundtrack {
        padding: 0;
    }

    .cosmic-divider {
        width: 300px;
    }
}