@import url('https://fonts.cdnfonts.com/css/minecraft-4');
@import url('https://fonts.cdnfonts.com/css/minecraftia');
                
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    background-color: #3D3938;
}

header {
    position: relative;
    width: 100%;
    z-index: 99999;
}

.head {
    background-color: rgb(255, 66, 123);
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-family: 'Minecraft', sans-serif;
    padding: 10px 0;
}

.head ul {
    display: flex;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.head ul li {
    padding: 15px 20px;
    transition: all .3s;
}

.head ul li a {
    text-decoration: none;
    color: black;
}

.head ul li:hover {
    transform: translateY(-5px);
    transition: all .3s;
    cursor: pointer;
}

.btntop {
    background-color: #e5a31e;
    border-radius: 15px;
    transition: all .3s;
}

.btntop:hover {
    background-color: #ffc85b;
    transition: all .3s;
    cursor: pointer;
}

.hamburger {
    display: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .head ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgb(255, 66, 123);
    }

    .head ul.active {
        display: flex;
    }

    .head ul li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .head ul li:hover {
        transform: none;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .head {
        justify-content: flex-start;
        padding: 0;
    }
}

.logo img {
    width: 350px;
    padding: 0 50px;
    filter: drop-shadow(0 0 40px #ea234469);
    position: relative;
    animation: moveUpDown 2s ease-in-out infinite alternate;
}

@keyframes moveUpDown {
    0% {
        top: -10px;
    }
    100% {
        top: 10px;
    }
}

.info svg {
    width: 3rem;
    height: 3rem;
}



/* Banner */

.banner {
    background-color: rgba(0, 0, 0, 0.9);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2.5rem 0px 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-position: inherit;
    background-repeat: inherit;
    background-size: inherit;
    filter: brightness(0.2);
    z-index: 1;
}

.banner > * {
    position: relative;
    z-index: 2;
}


.info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgb(255, 36, 157);
}

.info svg {
    color: #15e642;
    border-bottom: solid 5px rgb(150, 150, 150);
    transition: all .3s;
}

.info:hover svg {
    transform: translateY(-10px);
    transition: all .3s;
}

.infoText {
    display: flex;
    gap: 10px;
    font-size: 20px;
    font-family: 'Minecraft', sans-serif;
    filter: drop-shadow(1px 2px rgb(155, 17, 93));
}

.Text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Text h4, p {
    margin: 0;
    padding: 0;
    font-family: 'Minecraft', sans-serif;
    padding: 2px;
}

.Text h4 {
    padding-bottom: 3px;
}

#minfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ba42ff;
    background-color: rgba(251, 136, 255, 0);
}

#minfo svg {
    width: 2.5rem;
    height: 2.5rem;
}

.info2 {
    display: none;
}

.info2 .infoText {
    font-size: 12px;
    gap: 0px;
}

/* game */

.title {
    font-size: 40px;
}

#games {
    margin: 0;
  }
  
  #games .games-background {
    background-color: #131417;
  }
  
  #games .swiper-slide {
    transition: 0.3s;
  }
  
  #games .swiper-slide:not(.active) {
    transform: scale(0.9);
    z-index: -1;
  }
  
  #games .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
  }
  
  #games .slider-item-detail {
    text-align: center;
  }
  
  #games .slider-item-detail h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange-color);
    margin-top: 40px;
  }
  
  #games .slider-item-detail h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
  }
  
  #games .games-swiper-button-prev,
  #games .games-swiper-button-next {
    position: absolute;
    background-color: var(--orange-color);
    top: 40%;
    width: 30px;
    height: 30px;
    transform: rotate(45deg) translateY(-40%);
    z-index: 2;
  }
  
  #games .games-swiper-button-prev {
    left: 15%;
  }
  
  #games .games-swiper-button-next {
    right: 15%;
  }
  
  #games .games-swiper-button-prev i,
  #games .games-swiper-button-next i {
    transform: rotate(-45deg);
    margin: 0 auto;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
  }

/*---------------------------------------------
  Partners
---------------------------------------------*/

#sponsor {
    margin: 0;
  }
  
  #sponsor .sponsor-background {
    padding: 50px 0px 50px 0px;
    background-color: transparent;
  }
  
  #sponsor .sponsor-image {
    width: auto;
    height: 300px;
    margin-bottom: 20px;
  }
  
  #sponsor p {
    text-align: justify;
  }
  
  #sponsor .sponsor-cards {
    margin-top: 20px;
  }
  
  #sponsor .sponsor-card img {
    width: 150px;
    border-radius: 30px;
    border: 2px solid #131417;
  }
  
  @media screen and (max-width: 321px) {
    #sponsor .sponsor-image {
      height: 140px;
    }
  }
  
  @media screen and (max-width: 480px) {
    #sponsor .sponsor-image {
      height: 200px;
    }
  }

/* Main */

.ownlist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ownlist div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.owner {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #6B6562;
    width: 250px;
    padding: 10px;
    color: white;
    border-radius: 15px;
    font-size: 12px;
}
.owner img {
    border-radius: 10px;
}
.owner h4 {
    font-family: 'Minecraftia' sans-serif;
}

.category {
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 50px 100px;
}

.cbg {
    padding: 10px;
    border-radius: 25px;
    filter: drop-shadow(0 0 10px rgb(27, 27, 27));
    transition: ease-in-out 1s;
}

#cd {
    position: absolute;
    bottom: 10px;
    font-size: 16px;
    background-color: #000000d2;
    padding: 10px;
    width: 250px;
    border-radius: 0px 0px 15px 15px;
}

#main {
    background-color: black; 
    padding: 2rem; color: white; 
    font-family: 'Minecraft' sans-serif; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    border-radius: 40% 40% 10% 10%;
}

#rules {
    background-color: rgb(51, 51, 51); 
    color: rgb(230, 230, 230); 
    font-size: 16px; 
    width: 50%;
    padding: 25px; 
    border-radius: 25px; 
    height: 50%;
}

#discord {
    background-color: rgba(73, 73, 73, 0.658); 
    color: white; 
    border-radius: 10px;
    display: flex;
    justify-content: center;
    margin: 100px;
}

#discord-bnt {
    display: flex;
    align-items: center;
    background: #7289da;
    gap: 10px;
    padding: 20px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px; 
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

#discord-bnt:hover {
    background: #5b6eae;
}

#discord-bnt:active {
    background: #4e5b8c;
}

#discord-bnt svg {
    width: 25px;
    height: 25px;
    fill: white;
}

#bg1 {
    background-color: rgb(105, 105, 105);
    background-image: url("https://cdn.discordapp.com/attachments/1262511119067512864/1339513490213175336/B4EF3A7A2D1772DE26B1A6F51CE33A04FD8BB917.png?ex=67dbd1a7&is=67da8027&hm=ad4df20018f24172f50344d39a630d9423b0b0be8847ddad8f9163135c17decd&");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#bg1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-position: inherit;
    background-repeat: inherit;
    background-size: inherit;
    filter: brightness(0.1);
    z-index: 1;
}

#bg1 > * {
    position: relative;
    z-index: 2;
}

#bg1 .title {
    font-size: 40px;
}

.footer {
    display: flex;
    gap: 50px;
    margin: 30px;
    align-items: center;
    flex-direction: row;
}

.footer p {
    font-family: "Minecraftia";
    font-size: 12px;
    color: white;
}

.footer img {
    width: 64px;
}

.app {
    position: absolute;
    right: 128px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.app a {
    font-size: 30px;
    color: white;
}

left-ft {
    display: flex;
}

body.no-scroll-x {
    overflow-x: hidden;
    width: 100vw;
}

@media only screen and (max-width: 700px) {

    #discord {
        flex-wrap: wrap;
    }

    .ownlist div {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .logo img {
        width: 250px;
    }
    .info2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgb(65, 65, 65);
        border-radius: 15px;
        padding: 10px;
        font-size: 12px;
    }
    .info {
        display: none;
    }

    .head ul {
        display: none;
    }

    .cbg img {
        width: 200px;
    }

    #cd {
        width: auto;
        border-radius: 15px;
    }

    #cd .cdtitle {
        font-size: 15px;
    }

    #bg1 img {
        height: 256px;
        width: 256px;
    }

    #bg1 p {
        font-size: 12px;
    }

    .title {
        font-size: 22px;
    }

    #bg1 .title {
        font-size: 22px;
    }

    #main {
        border-radius: 20% 20%;
    }
    #rules {
        height: 250px;
        overflow-y: scroll;
    }
    .app {
        display: none;
    }
}