body{
    margin: 0;
    padding: 0;
    background: #000000;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

#cat {
    animation-name: drivingAround;
    animation-duration: 6s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes drivingAround{
    0%{
    transform: translateX(0px);
}
48% {
    transform: translateX(290px);
}
50%{
    transform: rotateY(180deg) translateX(-300px);
}
98%{
    transform: translateX(0px) rotateY(180deg);
}
100%{
    transform: translateX(0%)
}
}

.container{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    width: 100%;
}

header{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    z-index: 999;
    background-color: #4b4b4b5b;
    backdrop-filter: blur(10px);
}

.head-left{
    align-items: center;
    display: flex
}

.head-left img{
    width: 40px;
    height: 40px;
    margin: 20px;
}

.head-right img{
    width: 40px;
    height: 40px;
}

.head-left button{
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.head-left button:hover{
    opacity: 0.7;
}

.head-right{
    display: flex;
}

.head-right a{
    text-decoration: none;
    padding-left: 25px;
    color: white;
    font-size: 15px;
    transition: 0.3s;
}

.head-right a:hover{
    color: red;
}

.hero-section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-info{
    z-index: 1;
    position: absolute;
    top: 80px;
    left: 50px;
}

.hero-info h1{
    font-size: 100px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 30px;
    margin-bottom: 20px;
}

.hero-info p{
    color: white;
    max-width: 210px;
}

.hero-info button{
    background-color: #edff66;
    border: #edff66;
    padding: 10px 40px;
    border-radius: 20px;
    border-radius: 20px;
    cursor: pointer;
    color: #000000;
    transition: 0.3s;
}

.hero-info button:hover{
    background-color: transparent;
    color: white;
    box-shadow: 0 0 15px #edff66;
}

.gaming-text{
    font-size: 100px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin: 0;
    position: absolute;
    right: 20px;
    bottom: 30px;
}

.about-section{
    width: 100%;
    height: 100%;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.about-section h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-size: 80px;
    max-width: 1150px;
    text-align: center;
    margin: 25px 0;
    text-transform: uppercase;
    background: linear-gradient(to right, red, rgb(190, 0, 0), rgb(141, 0, 0), rgb(46, 0, 0), #000000 );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
    to{
        background-position: 200%;
    }
}

.about-section h4{
    margin-top: 50px;
    margin-bottom: 0;
}

.about-section h5{
    margin-top: 5px;
    color: gray;
    max-width: 425px;
    text-align: center;
    line-height: 25px;
}

.info-section{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 80%;
    margin-top: 100px;
}

.info-section h3{
    margin-bottom: 0;
}

.info-section p{
    margin-top: 5px;
    color: gray;
    max-width: 400px;
    line-height: 25px;
}

.info-cards{
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
    width: 100%;
    height: 100%;
    margin-top: 30px;
    padding: 10px 10px ;
}

.card{
    position: relative;
    width: auto;
    height: 40vh;
    overflow: hidden;
    border: 1px solid gray;
    border-radius: 20px;
    transition: 0.5s;
}

.card h1{
    position: absolute;
    margin: 0;
    top: 10px;
    left: 5%;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 60px;
    z-index: 1;
    background: linear-gradient(to right, red, rgb(190, 0, 0), rgb(141, 0, 0), rgb(46, 0, 0), #000000 );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear gradiant;
    max-width: 250px;
}

.card video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card button{
    position: absolute;
    bottom: 5%;
    left: 5%;
    padding: 10px 25px;
    border: 1px solid gray;
    background-color: #0f1217;
    color: gray;
    border-radius: 20px;
    box-shadow: 0 0 5px red;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover{
    box-shadow: 0 0 15px red;
    opacity: 0.7;
}

.card:hover{
    box-shadow: 0 0 15px red;
}


.contact-section{
    position: relative;
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin-bottom: 100px;
}

.contact-section .img-1{
    position: absolute;
    top: 10%;
    right: 50px;
    height: 250px;
    clip-path: polygon(94% 57%, 54% 93%, 19% 69%, 31% 22%, 58% 7%);
}

.contact-section .img-2{
    position: absolute;
    left: 50px;
    top: 10px;
    height: 200px;
    clip-path: polygon(75% 20%, 86% 66%, 32% 73%, 8% 42%, 32% 8%);
}

.contact-section .img-3{
    position: absolute;
    left: 5%;
    bottom: 5%;
    height: 250px;
    width: 250px;
    clip-path: polygon(75% 20%, 82% 65%, 34% 65%, 9% 39%, 31% 3%);
}

.contact-section p{
    margin-top: 100px;
}

.contact-section h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    max-width: 550px;
    text-align: center;
    background: linear-gradient(to right, red, rgb(190, 0, 0), rgb(141, 0, 0), rgb(46, 0, 0), #000000 );
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

.contact-section button{
    left: 5%;
    padding: 10px 25px;
    border: 1px solid gray;
    background-color: #0f1217;
    color: gray;
    border-radius: 20px;
    box-shadow: 0 0 5px red;
    cursor: pointer;
    transition: 0.3s;
}

.contact-section button:hover{
    box-shadow: 0 0 15px red;
    opacity: 0.7;
}
    */
    
.footer {
    background: red !important;
    min-height: 150px !important;
    border: 5px solid yellow !important;
}
.left img{
    width: 40px;
    height: 40px;
    margin: 20px;
}

.left button{
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.left button:hover{
    opacity: 0.7;
}

.footer ul{
    display:flex;
    list-style: none;
    margin-right: 140px;
}

.footer a{
    text-decoration: none;
    color: white;
    padding: 7px 7px;
    transition: 0.3s;
    margin: 0 10px;
    transition: 0.3s;
}

.footer a:hover{
    color: red;
}

.autoBlur{
    animation: autoBlurAnimation linear both;
    animation-timeline: view();
}
@keyframes autoBlurAnimation{
    0%{
        filter: blur(40px);
    }
    40%,60%{
        filter: blur(0);
        transform: translateY(0px);
        opacity: 1;
    }
    100%{
        filter: blur(40px);
        transform: translateY(-200px);
        opacity: 0;
    }
}

.autoTakeFull{
    animation: autoTakeFullAnimation both;
    animation-timeline: view(70% 65%);
}

@keyframes autoTakeFullAnimation{
    to{
        width: 100%;
        height: 100vh;
        border-radius: 0;
        margin-bottom: 100px;
    }
}

.autoDisplay{
    animation: autoDisplayAnimation both;
    animation-timeline: view(70% 5%);
}

@keyframes autoDisplayAnimation{
    from{
        opacity: 0;
        transfrom: translateY(200px) scale(0.3);
    } to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery{
    width:800px;
    display: flex;
    overflow-x: scroll;
}
.gallery div{
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    padding: 20px;
    flex: none;
}

.gallery div img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: transform 0.5s;
    opacity: .7;
    border-radius: 20px;
      box-shadow: 0 0 5px lightgray
}

.gallery::-webkit-scrollbar {
    display: none;
}

.gallery-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}

#backBtn, #nextBtn {
    width: 50px;
    cursor: pointer;
    margin: 40px;
}

.gallery div img:hover{
   filter: grayscale(0);
   cursor: pointer;
   transform: scale(1.2);
   opacity: 1;
}

.current-section{
    width: 100%;
    height: 100%;
    align-items: center;
    color: white;
}

    .image-box img{
        border-radius: 20px;
        width: 500px;
        align-items: center;
    }

.current-section h1{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-size: 50px;
    text-align: center;
    margin: 25px 0;
    text-transform: uppercase;
}

.current-section h4{
    margin-top: 50px;
    margin-bottom: 0;
    text-align: center;
}

.current-section h5{
    margin-top: 5px;
    color: gray;
    text-align: center;
    line-height: 25px;
}
/*
.popup .overlay{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    display: none;
}

.popup .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    width: 450px;
    height: 220px;
    z-index: 2;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.popup .close-btn{
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width:30px;
    height: 30px;
    background: #222;
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.popup.active .overlay{
    display: block;
}

.popup.active .content{
    transition: all 100ms ease-in-out;
    transform: translate(-50%, -50%) scale(1);
}

*/

#gallery-npc img {
    width: 200px;
    height: 200px;
    object-fit: contain;

    background: rgba(15,15,20,0.55);
    border: 1px solid grey;
    border-radius: 20px;
    backdrop-filter: blur(6px);

    padding: 10px;
    transition: 0.25s ease;
    box-shadow: 0 0 5px red;
}

#gallery-npc img:hover{
    transform: scale(0.95);
    box-shadow: 0 0 15px red;
}

#gallery-npc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.npc-card .hidden{
    visibility: hidden;
    transition: 0.3s ease-in-out;
    transform: scale(0.1) translateY(25px);
}
.npc-card:hover .hidden{
    visibility: visible;
    transform: scale(1);    
}
