/* Global Styles */

html {
    scroll-behavior: smooth;
}

#loadingScreen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(34, 34, 34);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#loading-sprite {
    width: 50vw;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#loading-text {
    width: 30vw;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

img#followCursor {
    position: absolute;
    width: 100px;
    height: auto;
    pointer-events: none;
    display: none;
    z-index: 11000;
}

#roadmap, #tokenomics, #team, #gallery, #contact {
    margin: 20vh 0;
}

@media (max-width: 800px) {
    #roadmap, #tokenomics, #team, #gallery, #contact {
        margin: 5vh 0;
    }
}

@keyframes pulse {
    0%, 20% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.2);
    }
    20%, 100% {
        transform: scale(1);
    }
}

#scrollTopBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: max(4vw, 50px);
    height: max(4vw, 50px);
    z-index: 10000;
    cursor: pointer;
    background-color: #000;
    border: none;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

#scrollTopBtn:hover {
    transform: scale(1.2);
}

#scrollTopBtn img {
    fill: #fbff00;
    width: 60%;
    height: auto;
}


#playPauseBtn {
    width: min(12vw, 120px);
    height: min(7vw, 70px);
    font-size: calc(min(1.6vw, 14px));
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    position: fixed;
    top: 1vw;
    left: 1vw;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5vw;
    border: 0.1vw solid #fbff00;
    margin: 2vw;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

#pauseIcon {
    width: calc(min(4.4vw, 44px));
    height: calc(min(4.4vw, 44px));
}

#playIcon {
    width: calc(min(5vw, 50px));
    height: calc(min(5vw, 50px));
}


@font-face {
    font-family: 'Barlow-Medium';
    src: url('assets/fonts/Barlow-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-image: url('assets/images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    overflow-x: hidden;
    user-select:none;
    padding-bottom: 100px;
}

/*background sparkles*/


* {
    font-family: 'Barlow-Medium', sans-serif;
    color: #ebebeb;
    box-sizing: border-box;
    transition: color 0.5s ease;
}

.headerlogo {
    width: 50%;
    min-width: 200px;
    max-width: 666px;
    height: auto;
    margin: 5vw 0;
    animation: rotate-shake 4s infinite;
}

@keyframes rotate-shake {
    0% {
        transform: rotate(0deg);
    }
    2% {
        transform: rotate(-3deg);
    }
    4% {
        transform: rotate(3deg);
    }
    6% {
        transform: rotate(-2deg);
    }
    7%, 100% {
        transform: rotate(0deg);
    }
}

header {
    text-align: center;
}

.container {
    width: 80%;
    margin: auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
}
nav {
    margin-bottom: 30px;
}
.nav-items{
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    font-size: max(1.5vw, 15px);
}

.hamburger {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 800px) {
    .hamburger {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px; 
    }

    .nav-items {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .nav-items a:not(:first-child){
        text-align: center;
        padding: 10px;
        border-top: 1px solid #fff;
        transition: color 0.5s ease;
    }
    .nav-items a:first-child{
        text-align: center;
        padding: 10px;
        transition: color 0.5s ease;
    }
    .nav-underline{
        display:none;
    }
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.5s ease, text-shadow 0.3s ease, transform 0.5s ease;
}

nav a:hover{
    color: yellow;
    transition: color 0.5s ease, text-shadow 0.3s ease, transform 0.5s ease;
    text-shadow: 0 0 5px yellow;
    transform: scale(1.05);
}

.nav-underline{
    width: 100%;
    height: 1px;
    background-color: white;
}

.text-content {
    flex: 1;
    padding-right: 20px;
    font-size: min(2vw, 35px);
    margin-bottom: 30px;
    align-self: flex-start;
}

.section-about {
    padding-left: 10%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 2vw;
}

.about-img {
    flex: 0 1 auto;
    width: 30%;
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    align-self: flex-end;
}

.breaking-news{
    user-select: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    background: linear-gradient(to bottom, transparent 20%, white 20%);
    max-height: 200px;
    position: relative;
    top: -30px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.breaking-news-left, .breaking-news-right {
    position: relative;
}

.breaking-news-breaking-txt, .breaking-news-live-txt-container, .breaking-news-news-txt {
    position: relative;
    animation: pulse 2s infinite;
}

.breaking-news-left{
    display: flex;
    flex-direction: column;
}

.breaking-news-left-bottom{
    display: flex;
    flex-direction: row;
}

.breaking-news-breaking-txt {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background-color: red;
    font-weight: bold;
    font-size: min(5vw, 65px);
    font-style: italic;
    padding: 0 25px 0 50px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.breaking-news-live-txt {
    font-family: Arial, Helvetica, sans-serif;
    color: black;
    background-color: yellow;
    font-weight: bold;
    font-size: min(2vw, 25px);
    font-style: italic;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    margin: 0 1vw;
}


.breaking-news-news-txt {
    font-family: Arial, Helvetica, sans-serif;
    color: red;
    font-weight: bold;
    font-size: min(5vw, 65px);
    font-style: italic;
}

.breaking-news-right {
    flex: 1;
    margin-left: 20px;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
}

.breaking-news-right p {
    font-size: min(2.25vw, 65px);
    color: black;
    position: relative;
    margin: 0;
    width: 100%;
    white-space: nowrap;
    animation: scroll-left 10s linear infinite;
    animation-play-state: running;
}

a.staystiff, 
a.staystiff:visited, 
a.staystiff:link, 
a.staystiff:active {
    color: red;
    text-decoration: none;
    font-weight: bold;
    font-style: normal;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

a.staystiff:hover {
    color: rgb(138, 0, 0);
    transform: scale(1.2);
}

.section-tokenomics{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2vw;
}

.tokenomicsheader {
    width: 50%;
    min-width: 200px;
    max-width: 550px;
    height: auto;
    margin: 20px 0;
}

.tokenomics-chart{
    width: 100%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.tokenomics-img{
    height: auto;
    max-width: 639px;
    margin-right: 2vw;
    min-width: 100px;
    transition: transform 0.5s ease;
    margin-bottom: 100px;
}

.tokenomics-txt{
    height: auto;
    max-width: 539px;
    min-width: 200px;
    margin-left: 2vw;
    transition: transform 0.5s ease;
}

.tokenomics-txt:hover, .tokenomics-img:hover{
    transition: transform 0.5s ease;
    transform: scale(1.05);
}

.tokenomicsfooter {
    width: 100%;
    min-width: 322px;
    max-width: 1288px;
    height: auto;
    margin: 20px 0;
}

.roadmap{
    width: 100%;
    min-width: 360px;
    max-width: 1440px;
    height: auto;
    margin: 20px 0;
}

.section-roadmap{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2vw;
}

.section-team{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2vw;
}

.teamheader{
    width: 50%;
    min-width: 200px;
    max-width: 872px;
    height: auto;
    margin: 20px 0;
}

.teamsubheader{
    width: 50%;
    min-width: 200px;
    max-width: 719px;
    height: auto;
    margin: 20px 0;
}

.team-imgs {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 800px;
}

.team-imgs div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.team-imgs img {
    width: 100%;
    height: auto;
    min-width: 60px;
    max-width: 180px;
}

.team-imgs {
    font-size: min(2vw, 20px);
}

.timg{
    transition: transform 0.5s ease;
}

.timg:hover{
    transition: transform 0.5s ease;
    transform: scale(1.05);
}

.section-team p {
    font-size: min(2vw, 18px);
    text-align: center;
    text-transform: uppercase;
}

.section-gallery{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2vw;
}

.galleryheader {
    width: 50%;
    min-width: 120px;
    max-width: 395px;
    height: auto;
    margin: 100px 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    max-width: 100%;
    margin: auto;
}

.gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
}

.galleryfooter {
    width: 50%;
    min-width: 360px;
    max-width: 733px;
    height: auto;
    margin: 20px 0;
}

.section-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2vw;
}

.contactheader{
    width: 50%;
    min-width: 200px;
    max-width: 506px;
    height: auto;
    margin: 50px 0;
}

.contactsubheader{
    width: 50%;
    min-width: 200px;
    max-width: 728px;
    height: auto;
}

.contact-x-tg{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
    width: 100%;
}

.ximg{
    width: 50%;
    min-width: 130px;
    max-width: 260px;
    height: auto;
    transition: transform 0.5s ease;
}

.tgimg{
    width: 50%;
    min-width: 220px;
    max-width: 429px;
    height: auto;
    transition: transform 0.5s ease;
}

.tgimg:hover, .ximg:hover{
    transition: transform 0.5s ease;
    transform: scale(1.05);
    cursor: pointer;
}

.section-contact p {
    font-size: min(2vw, 18px);
    text-align: center;
    text-transform: uppercase;
}


.image-overlay img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 80%;
}

.image-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.image-overlay.visible {
    opacity: 1;
    visibility: visible;
}

img {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mobpara{
    display: none;
}

@media (max-width: 500px) {
    .headerlogo{
        margin-top: 70px;
        margin-bottom: 0px;
    }

    .text-content{
        font-size: min(15px, 5vw);
    }

    .breaking-news-breaking-txt {
        font-size: min(40px, 7vw);
        font-style: italic;
        padding: 10px 15px 10px 30px;
    }
    
    .breaking-news-live-txt {
        font-size: min(20px, 5vw);
        padding: 10px 15px;
    }
    
    
    .breaking-news-news-txt {
        font-family: Arial, Helvetica, sans-serif;
        color: red;
        font-weight: bold;
        font-size: min(40px, 7vw);
        font-style: italic;
    }
    
    .breaking-news-right {
        margin-left: 10px;
        padding: 20px 0px 0px 0px;
    }
    
    .breaking-news-right p {
        font-size: min(15px, 5vw);
        color: black;
        position: relative;
        margin: 0;
        width: 100%;
        white-space: nowrap;
        animation: scroll-left-small 9s linear infinite;
        animation-play-state: running;
    }    

    @keyframes scroll-left-small {
        0% {
            transform: translateX(150%);
        }
        100% {
            transform: translateX(-300%);
        }
    }

    .team-imgs img {
        width: 100%;
        height: auto;
        min-width: 30px;
        max-width: 90px;
    }

    .section-team .team-imgs div:nth-of-type(1) p {
        font-size: 15px;
    }

    .section-team .team-imgs div:nth-of-type(2) p {
        font-size: 13px;
    }

    .section-team .team-imgs div:nth-of-type(3) p {
        font-size: 13px;
    }

    .section-team > p {
        display: none;
    }

    .team-imgs div {
        margin: 0;
        padding: 0;
        height: 200px;
        justify-content: flex-start;
    }

    .team-imgs p {
        margin-top: 10px;
    }

    .assuredefilogo{
        width: 100%;
        min-width: 150px;
        max-width: 353px;
        height: auto;
        margin: 20px 0;
        margin-bottom: 40px;
    }

    .mobpara{
        margin-top: 20px;
        display: block;
        text-align: justify;
        font-size: 15px;
    }
    
    .galleryheader {
        margin: 50px 0;
    }

    .section-contact p {
        text-align: justify;
        font-size: 15px;
    }

    .tokenomics-text-content{
        font-size: 15px;
    }
}