html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    background-color: black;
}

.container{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

header{
    position: fixed;
    width: 97%;
    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{
    display: flex;
    align-items: center;
}

.head-left img{
    width: 100px;
    height: 100px;
    margin-right: 20px;
}

.head-left button{
    background-color: #411414;
    color: rgb(255, 255, 255);
    border: 2px solid #411414;
    padding: 10px 40px;
    cursor: pointer;
    font-weight:  700;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.head-left button:hover{
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px #411414;
    opacity: 0.7;
}

.head-right{
    display: flex;
    align-items: center;
}

.head-right a{
    text-decoration: none;
    color: white;
    padding-left: 25px;
    font-size: 16px;
    font-weight: 700;
}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-vid{
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-info{
    z-index: 1;
    position: absolute;
    top: 20%;
    left: 10%;
}

.hero-info h1{
    font-size: 70px;
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    font-style: normal;
    margin-top: 30px;
    margin-bottom: 20px;
}

.hero-info p{
    color: #ffffff;
    max-width: 350px;
}

.hero-info button{
    background-color: #411414;
    color: rgb(255, 255, 255);
    border: 2px solid #411414;
    padding: 10px 40px;
    cursor: pointer;
    font-weight:  700;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.hero-info button:hover{
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px #411414;
}

.gaming-text{
    font-size: 120px;
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    position: absolute;
    top: 380%;
    left: 160%;
    color: #411414;
    text-shadow: 0 0 25px #000000;
}

.next-btn{
    width: 200px;
    height: 200px;
    background-color: #411414;
    position: absolute;
    left: 80%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: black;
    font-weight: bold;
    z-index: 100;
    opacity: 0;
    transition: background-color 0.3s ease;
    box-shadow: 0 0 15px #411414;
}

.next-btn:hover{
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: background-color 1s ease;
    box-shadow: 0 0 15px #000000;
}

.about{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.about h1{
    font-size: 70px;
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    max-width: 550px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(to right, #411414, #140303, #ffffff, #140303, #411414);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

.p1{
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 50px;
    max-width: 750px;
    text-align: center;
    line-height: 25px;
    color: #ffffff;
    background: linear-gradient(to right, #411414, #140303, #ffffff, #140303, #411414);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

.about img{
    float: right;
    width: 20%;
    height: 30%;
}

.about p{
    font-size: 20px;
    margin-top: 50px;
    max-width: 750px;
    text-align: center;
    line-height: 25px;
    color: #ffffff;
}

.live{
    width: 100%;
    height: 100%;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.image-box{
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live h1{
    font-size: 100px;
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    max-width: 1150px;
    text-align: center;
    margin: 25px 0;
    text-transform: uppercase;
    background: linear-gradient(to right, #411414, #140303, #000000, #140303, #411414);
    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%;
    }
}

.live h4{
    margin-top: 50px;
    margin-bottom: 0;
}

.live h5{
    margin-top: 5px;
    color: gray;
    max-width: 425px;
    text-align: center;
    line-height: 25px;
}

.live button{
    background-color: #411414;
    color: rgb(255, 255, 255);
    border: 2px solid #411414;
    padding: 10px 40px;
    cursor: pointer;
    font-weight:  700;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.live button:hover{
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px #411414;
    opacity: 0.7;
}

.contact{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.contact .img1{
    position: absolute;
    top: 10%;
    right: 20px;
    height: 400px;
    clip-path: polygon(37% 0, 100% 0, 100% 100%, 0 99%);
}

.contact .img2{
    position: absolute;
    left: 50px;
    top: 10px;
    height: 400px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.contact .img3{
    position: absolute;
    left: 40%;
    bottom: 5%;
    height: 400px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.contact p{
    margin-top: 100px;
}

.contact h1{
    font-size: 70px;
    font-family: Impact, 'Arial Narrow Bold', sans-serif;
    font-weight: 900;
    max-width: 550px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(to right, #411414, #140303, #ffffff, #140303, #411414);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

.contact button{
    padding: 10px 25px;
    border: 1px solid #411414;
    background-color: black;
    color: grey;
    border-radius: 20px;
    box-shadow: 0 0 5px lightgray;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact button:hover{
    box-shadow: 0 0 15px lightgray;
    opacity: 0.7;
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
    background-color: #4b4b4b5b;
    backdrop-filter: blur(10px);
    color: #ffffff;
    background: linear-gradient(to right, #411414, #140303, #ffffff, #140303, #411414);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2.5s linear infinite;
}

/* blur Effect */
.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;
    }
}

@media screen and (max-width: 650px) {
    header{
        padding: 0 10px;
    }
    .head-left button{
        display: none;
    }
    .head-right a{
        font-size: 12px;
        padding: 0 5px;
    }
    .hero-info{
        left: 5%;
    }
    #home h1{
        font-size: 20px;
    }
    .next-btn{
       left: 25%;
       top: 40%;
    }
    .about{
        margin: 0;
    }
    .about h1{
        font-size: 30px;
    }
    .about img{
        width: 300px;
        height: 500px;
    }
    .about p{
        font-size: 15px;
    }
    .live{
        margin: 0;
    }
    .live h1{
        font-size: 40px;
    }
    .image-box{
        width: 650px;
        height: 700px;
    }
    .contact .img1{
        width: 100px;
        height: 100px;
        right: 0;
        top: 20px;
    }
    .contact .img2{
        width: 100px;
        height: 100px;
        left: -40px;
        top: 30px;
    }
    .contact .img3{
        width: 100px;
        height: 100px;
        left: -40px;
        bottom: 10px;
    }
    .contact h1{
        font-size: 30px;
        max-width: 300px;
    }
}