body {
    margin: 0;
    padding: 0;
    background-color: #06073C;
    overflow-x: hidden;
}

.nav-container {
    display: flex;
    justify-content: center;
}

.logo {
    width: 124px;
    height: 34px;
    margin-top: 11px;
    margin-right: 150px;
}

.link-container1 {
    display: flex;
    justify-content: center;
    gap: 180px;
    cursor: pointer;
}

ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
}
.link-container1 ul li a{
    text-decoration: none;
    color: white;
}
.link-container1 ul li a:hover{
    text-decoration: 2px solid underline;
}
.button {
    background: white;
    color: black;
    font-weight: 500;
    width: 50px;
    padding: 10px 20px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;

}
.star{
    display: flex;
    justify-content: end;

}
.star img{
    width: 50px;
    height: 50px;
}
.crown {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.crown img{
    width: 100px;
    height: 100px;
    margin-right: 150px;
    margin-top: 40px;
    gap: 30px;
}
.crown.turnip{
    width: 80px;
    height: 100px;

}
.thumb{
    display: flex;
    margin-left: 80px;
}
.thumb img{
    width: 100px;
    height: 100px;
}
/* Animation for the first crown image */
@keyframes floatRotate1 {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-10deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(10px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Animation for the second crown image */
@keyframes floatRotate2 {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(10deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(15px) rotate(-10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Animation for the third crown image */
@keyframes floatRotate3 {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-15deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(5px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Animation for the thumb image */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Applying the animation to the thumb image */
.thumb img {
    animation: rotate 10s linear infinite;
}

/* Applying animations to the images in the crown and thumb sections */
.crown img:nth-child(1) {
    animation: floatRotate1 6s ease-in-out infinite;
}

.crown img:nth-child(2) {
    animation: floatRotate2 5s ease-in-out infinite;
}

.crown img:nth-child(3) {
    animation: floatRotate3 7s ease-in-out infinite;
}

.thumb img {
    animation: rotate 10s linear infinite;
}

.main {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: -180px;
}

.text-image-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 30px;
    letter-spacing: 4px;
    color: white;
    margin-left: 100px;
    margin-top: 80px;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 25px;
    letter-spacing: 0px;
    margin-left: 70px;
}

img {
    width: 736px;
    height: 480;
}
.clyde{
    width: 70px;
    height: 70px;
    display: inline;
    justify-content: center;
    padding-bottom: 30px;
}
@keyframes clydeAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px); /* Moves the element down */
    }
    100% {
        transform: translateY(0);
    }
}

/* Apply the animation */
.clyde {
    animation: clydeAnimation 5s ease-in-out infinite;
}

.content {
    height: 20px; /* Ensures enough content for scrolling */
    background: #1C1C1C;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;

    ul {
        gap: 80px;
    }
}

.btn1 {
    background: white;
    color: black;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
}

.btn2 {
    background: #161CBB;
    color: white;
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
}

.first-box-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 180px;
}

.gif-image {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-left: 650px;

    img {
        width: 141px;
        height: 90;
    }
}

.first-glass-box {
    width: 80%;
    height: 550px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    z-index: 1;
}

.video video {
    width: 100%;
    height: 550px;
    border-radius: inherit;
    border-radius: 40px;
    display: flex;
    align-items: center;
    
}

.text-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;
}

.text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.text h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 55px;
    letter-spacing: 4px;
    color: white;
}

.text p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    letter-spacing: 0px;
    padding-right: 50px;

}

.second-box-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}
.text2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.text2 h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 55px;
    letter-spacing: 4px;
    color: white;
}
.text2 p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    letter-spacing: 0px;
    padding-right: 90px;
    color: white;
}

.third-box-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 180px;
}
.text3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.text3 h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 55px;
    letter-spacing: 4px;
    color: white;
}
.text3 p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    letter-spacing: 0px;
    padding-right: 90px;
    color: white;
}
.text5 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.text5 h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 55px;
    letter-spacing: 4px;
    color: white;
    padding-left: 15px;
}
.text5 p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    letter-spacing: 0px;
    color: white;
    margin-right: 90px;
}
.text6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.text6 h1 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 55px;
    letter-spacing: 4px;
    color: white;
}
.text6 p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    letter-spacing: 0px;
    padding-right: 90px;
    color: white;
}

.first-glass-box2 {
    width: 80%;
    height: 550px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin: 100px auto; /* Add margin for spacing */
    z-index: 1;
}
.frying{
    display: flex;
    
}
.frying img{
    width: 250px;
    height: 250px;
    margin-top: -300px;
    margin-left: 800px;
}
@keyframes fryingAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(200px); /* Moves the element down */
    }
    100% {
        transform: translateY(0);
    }
}

/* Apply the animation */
.frying {
    animation: cubeAnimation 20s ease-in-out infinite;
}

.content {
    height: 2000px; /* Ensures enough content for scrolling */
    background: #1C1C1C;
}
.cube {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 50px; /* Adjust based on your layout */
    /* z-index: 10; */
}

.cube img {
    width: 250px;
    height: 250px;
    margin-top: -600px;
    margin-right: 700px;
}

/* Define the scroll-based animation */
@keyframes cubeAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(200px); /* Moves the element down */
    }
    100% {
        transform: translateY(0);
    }
}

/* Apply the animation */
.cube {
    animation: cubeAnimation 20s ease-in-out infinite;
}

.content {
    height: 2000px; /* Ensures enough content for scrolling */
    background: #1C1C1C;
}
.box-image {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-left: 72%;
    position: absolute;

    img {
        width: 314px;
        height: 337px;
        margin-bottom: 700px;
        z-index: 10;
    }
}

.third-glass-box {
    width: 80%;
    height: 550px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

}
.bat {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 50px; /* Adjust based on your layout */
    /* z-index: 10; */
}

.bat img {
    width: 250px;
    height: 250px;
    margin-top: -150px;
    margin-left: 700px;
}

/* Define the scroll-based animation */
@keyframes batAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(200px); /* Moves the element down */
    }
    100% {
        transform: translateY(0);
    }
}

/* Apply the animation */
.bat {
    animation: batAnimation 20s ease-in-out infinite;
}

.content {
    height: 2000px; /* Ensures enough content for scrolling */
    background: #1C1C1C;
}
.line-animation {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 120px;
}

.line-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    height: 100px;
    background-color: blue;
    background-image: linear-gradient(180deg, #445AFF, #5E82FF);
    padding: 30px 0;
    gap: 80px;
    animation: 60s slide infinite linear;
}

.discord-mark {
    width: 30px;
    height: 25px;
}

.line_text-animation {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 50px;
    color: white;
    text-align: center;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.third-2-box-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 200px;
}

.box-2-image {
    display: flex;
    justify-content: end;
    align-items: end;
    margin-left: 40%;
    position: absolute;

    img {
        width: 200px;
        height: 150px;
        margin-bottom: 723px;
        z-index: 10;
    }

    .men-image {
        width: 250px;
        height: 300px;
        margin-bottom: 590px;
        z-index: -1;
    }
}

.text-btn {
    margin-top: 180px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.text {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 40px;
    letter-spacing: 4px;
    color: white;

}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.btn p {
    font-size: 16px;
    width: 200px;
    padding: 15px;
    border-radius: 30px;
    color: white;
    background: #587ED7;
    cursor: pointer;
}

.btn p:hover {
    background-color: #8891F2;
    transform: translateY(-2px);
    box-shadow: 0 2px 9px #8891f270
}

.image-container img {
    width: 100%;
    height: auto;
    border-bottom: 3px solid white;

}

footer

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-left: 300px;
}
.flag-language{
    display: flex;
    flex-direction: column;
    margin-top: 100px;
}

.languages {
    color: white;
}
.languages select{
    margin-top: 3px;
    padding-bottom: 10px;
    margin-left: 10px;
    cursor: pointer;
}
.flag select{
    background-color: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
}
.flag select option{
    color: black;
    cursor: pointer;
}
.flag{
    display: flex;
    gap: 10px;
    margin-top: 50px;
}
.flag img {
    width: 34px;
    height: 24px;
    padding-left: 220px;
}
.social-icons{
    display: inline-flex;
    margin-top: 40px;
    margin-left: 210px;
    font-size: 25px;
    gap: 20px;
    cursor: pointer;
}
.link-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-left: 300px;
    margin-top: -150px;
}

.product-links h4{
    font-family: Arial, sans-serif;
    padding-left: 45px;
    color: white;
}
.product-links ul{
    display: inline-block;
    margin-bottom: -10px;
}
.product-links ul li{
    padding: 5px;
}
.product-links ul li a{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: white;
    text-decoration: none;
}
.product-links ul li a:hover{
    text-decoration: underline;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    border-top: 1px solid #FFFFFF;
    padding-top: 20px;
    margin-left: 150px;
    margin-right: 150px;
}

.discord-logo img {
    width: 124px;
    height: 54px;
}

.signup-button {
    background-color: #5865F2;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 20px;
    cursor: pointer;
}

.signup-button:hover {
    background-color: #404EED;
}
