@font-face {
    font-family: 'Toxigenesis';
    src: url('../fonts/toxigenesis bd.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

html, body {
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.nav-logo {
    height: 90px;
    margin: -40px;
}

.header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fcf9f415;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    height: 90px;
    width: 1200px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0px 0px 20px rgba(41, 8, 8, 0.1);
    z-index: 1000;
    transition: top 0.5s ease-in-out, background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

.header.hidden {
    top: -120px;
}

.navbar-white {
    background-color: #fcf9f4ce !important;
}

.play-button:hover{
    transform: scale(1.2);
    color:#2f1735;
    background: #ffffff;
}

.play-button{
    font-family: "Rubik", sans-serif;
    font-style: normal;
    font-size: 1.2em;
    font-weight: 700;
    color:#2f1735;
    background: #f8f1ee;
    border: none;
    border-radius: 10px 30px;
    transition: box-shadow 0.3s ease, transform 0.3s, background 0.3s ease;
    transform: scale(1.10) translateZ(0px);
    padding: 8px 20px;
}

.play-button-white .play-button {
    background: #fc6464 !important;
}

.dark-play-border .play-button:hover{
    background: #ffa51d !important;
}

body {
    background-color: #f8f1ee;
    font-family: "Nunito", sans-serif;
    font-style: normal;
}

.server-name {
    font-family: "Rubik", sans-serif;
    font-style: normal;
    margin-top: 10px;
    font-size: 8.8rem;
    font-weight: 800;
    background: #ffffff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
}

.block-title {
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    font-size: 6.8rem;
    line-height: 0.9; 
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

.word {
    display: inline-block;
    white-space: nowrap; 
}

.char {
    position: relative;
    display: inline-block;
    color: transparent; 
    z-index: 10;
    animation: waviy-jump 4s infinite ease-in-out;
    animation-delay: calc(.1s * var(--i));
    margin: 0 -0.1em; 
}
        
.space {
    display: inline-block;
    width: 0.2em;
}

.char::before {
    content: attr(data-char);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 1.1em;
    z-index: 1; 
    color: transparent;
    background: none;
    animation: shadows 3s infinite ease-in-out;
}

.char::after {
    content: attr(data-char);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 1.1em;
    z-index: 2;
    background: linear-gradient(160deg, #ff8b6e 15%, #ff3f69);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}

@keyframes waviy-jump {
    0%, 40%, 100% { transform: translateY(0); }
    20% { transform: translateY(-10px); }
}

@keyframes shadows {
    0% {
        text-shadow: 0px 2px 0px #11bce3bc, 0px 5px 0px #18eee085, 0px 8px 0px #ffcc56b7;
    }
    50% {
        text-shadow: 0px -2px 0px #11bce3bc, 0px -5px 0px #18eee085, 0px -8px 0px #ffcc56b7;
    }
    100% {
        text-shadow: 0px 2px 0px #11bce3bc, 0px 5px 0px #18eee085, 0px 8px 0px #ffcc56b7;
    }
}

@media (max-width: 992px) {
    .block-title { font-size: 4rem; }
}
@media (max-width: 576px) {
    .block-title { font-size: 2.5rem; }
    @keyframes waviy-jump {
        0%, 40%, 100% { transform: translateY(0); }
        20% { transform: translateY(-6px); }
    }

    @keyframes shadows {
    0% {
        text-shadow: 0px 1px 0px #11bce3bc, 0px 2px 0px #18eee085, 0px 3px 0px #ffcc56b7;
    }
    50% {
        text-shadow: 0px -1px 0px #11bce3bc, 0px -2px 0px #18eee085, 0px -3px 0px #ffcc56b7;
    }
    100% {
        text-shadow: 0px 1px 0px #11bce3bc, 0px 2px 0px #18eee085, 0px 3px 0px #ffcc56b7;
    }
    }
}

.block-description {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
    margin-bottom: 20px;
}

.block-description-text {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ffa51d;
    text-align: center;
    margin-bottom: 0px;
}

.desc-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    animation: icon-shake 3s infinite ease-in-out;
    transform-origin: center center;
}

@keyframes icon-shake {
    0% { 
        transform: rotateZ(0deg); 
        transition: transform 0.4s ease-out;
    }
    10% { 
        transform: rotateZ(24deg); 
        transition: transform 0.07s ease-in;
    }
    20% {
        transform: rotateZ(-15deg); 
        transition: transform 0.05s ease-out;
    }
    30% {
        transform: rotateZ(0deg); 
        transition: transform 0.2s ease-out;
    }
    100% {
        transform: rotateZ(0deg); 
    }
}

.block-sec-desc{
    text-align: center;
    margin: 0 25%;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ff7873;
}

.video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  filter: contrast(1.03) saturate(1.01);
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/*colors-start*/

.title-orange{
    background: linear-gradient(160deg, #ffca38 15%, #ff5c10);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc-orange{
    color: #f1b25f;
}

.title-aqua{
    background: linear-gradient(160deg, #37c4af 15%, #276d99);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc-aqua{
    color: #63b8bb;
}

.title-iris{
    background: linear-gradient(160deg, #d951eb 15%, #6827e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc-iris{
    color: #b37bd6;
}

.title-red{
    background: linear-gradient(160deg, #f8455d 15%, #74053c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desc-red{
    color: #d6606a;
}

/*colors-end*/

.items{
    display: flex;
    gap: 32px;
}

.items-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    min-height: 440px;
    max-height: 490px;
    max-width: 500px;
    text-align: center;
    border-radius: 50px;
    background-color: #f8f1ee;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.items-card-title{
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 125%;
    margin-left: 20px;
    margin-right: 20px;
    color: #503541;
}

.items-card-desc{
    font-weight: 500;
    font-size: 1.4rem;
    color: #855365;
}

.item-img {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 43%;
    margin-bottom: 10px;
    image-rendering: optimizeQuality;
    z-index: 1;
    filter: drop-shadow(0 10px 10px #250f3179) contrast(1.1) saturate(1.1);
    animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
    0%   { transform: translateX(-50%) scale(.95); }
    50%  { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(.95); }
}


.scroll {
    margin-top: 70px;
    margin-bottom: 250px;
    margin-inline: auto;
    width: 60px;
    height: 60px;
    position: relative;
    animation: down 1s infinite;
    -webkit-animation: down 1s infinite;
}

@keyframes down {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translate(0);
    }
}

@-webkit-keyframes down {
    0% {
        transform: translate(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translate(0);
    }
}

.header-about {
    margin-left: 14%;
    margin-right: 14%;
    margin-top: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
}

.header-update {
    font-family: "Rubik", sans-serif;
    margin-left: 14%;
    margin-right: 14%;
    margin-top: 300px;
    text-align: center;
    font-weight: 500;
    font-size: 3.9rem;
    color: #ffffff;
}

.heart-icon {
    width: 10%;
}

.closing-text {
    padding-top: 20px;
    margin-left: 14%;
    margin-right: 14%;
    text-align: center;
    font-weight: 500;
    font-size: 2.4rem;
    background: #f8f1ee;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nexteam-logo{
    width: 50px;
    height: auto;
    margin-right: 10px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .nexteam-logo{
        width: 35px;
        height: auto;
        margin-right: 10px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .nexteam-logo{
        width: 30px;
        height: auto;
        margin-right: 7px;
        margin-top: 8px;
    }
}

.nexteam-text {
    font-family: Toxigenesis, sans-serif;
    font-size: 3rem;
    color: #f8f1ee;
    text-align: center;
    margin-top: 8px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 20px;
}

.hero-inner {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
}

#gradient-canvas {
    position: absolute;
    width:100%;
    height:100%;
    --gradient-color-1: #ff3f69;
    --gradient-color-2: #ff5473;
    --gradient-color-3: #fc6464;
    --gradient-color-4: #ff8b6e;
}

.hero-content {
    max-width: 1360px;
    text-align: center;
    z-index: 1;
}

.hero-wrapper-end {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 15px;
}

.hero-box {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    min-width: 100%;
    max-height: 925px;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    padding: 40px;
    z-index: 1;
}

.hero-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, #ff3f69, #ff8b6e, #ff3f69, #ff8b6e);
    background-size: 150% 150%;
    animation: moveGradient 20s infinite linear;
    z-index: -1;
}

@keyframes moveGradient {
    0% { background-position: 0% 0%; }
    50% { background-position: 200% 200%; }
    100% { background-position: 0% 0%; }
}

.nav-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f8f1ee;
    margin: 0 10px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 100px;
    padding: 2px;
    text-decoration: none;
    transition: border-color .3s ease, background-color .3s ease, color .3s ease;
}

.nav-link:hover{
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.dark-border .nav-link:hover {
    border-color: #4d3353 !important;
}

.dark-text .nav-link {
    color: #4d3353 !important;
}

.npc-model {
    position: relative;
    height: auto;
    max-width: 93%;
    right: 5%;
    top: -35px;
}

.pokemon-element-card {
    position: relative;
    flex-direction: column;
    height: 700px;
    max-width: 550px;
    border-radius: 50px;
    margin-top: 40px;
    text-align: center;
    font-weight: 900;
    font-size: 48px;
    padding-top: 20px;
    line-height: 100%;
}

.steel-element-card {
    background: linear-gradient(to bottom, #8cb7c7 20%, #2e3d6e);
    color: #3a5885;
}

.pokemon-element-icon {
    width: 20%;
    z-index: 2;
}

.pokemon-element-title {
    position: relative;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    z-index: 2;
}

.pokemon-element-desc {
    position: relative;
    margin-top: -13px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.server-card{
    transition: transform 0.3s ease;
    padding: 50px;
    border-radius: 50px;
    background-color: #ede6e4;
    align-content: center;
}

.server-card:hover {
  transform: scale(1.1) translateY(-5px);
}

.server-card:not(:hover) {
    animation: bounceBack 0.4s ease-out;
}

@keyframes bounceBack {
    0%   { transform: scale(1.1) translateY(-5px); }
    40%  { transform: scale(0.97) translateY(0); }
    70%  { transform: scale(1.03) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}

.server-card-title{
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 125%;
    color: #503541;
}

.server-card-desc{
    font-weight: 500;
    font-size: 1.4rem;
    color: #855365;
}

.server-card-icon{
    width: 33%;
    margin-bottom: 5%;
}

.server-full-icon{
    width: 56px;
    height: auto;
}

.card-section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    padding-left: 7%;
    padding-right: 7%;
    min-height: 440px;
    text-align: center;
    border-radius: 50px;
    background-color: #ede6e4;
    overflow: hidden;
}

.sec-card-desc{
    font-weight: 600;
    font-size: 1.4rem;
    color: #855365;
    margin-bottom: 13%;
}

.card-desc{
    font-weight: 600;
    font-size: 1.4rem;
    color: #855365;
    margin: 0 30px;
}

.card-img {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 42%;
    margin-bottom: 10px;
    image-rendering: optimizeQuality;
    z-index: 1;
    filter: drop-shadow(0 10px 10px #26133f59) contrast(1.1) saturate(1.1);
    animation: pulse 2.6s ease-in-out infinite;
}

.triangle-wrapper {
    align-items: center;
    width: 150%;
    height: auto;
    display: block;
}

.triangle-svg {
    width: 100%;
    height: auto;
    display: block;
}

.version{
    display: flex;
    gap: 40px;
}

.version-section{
    min-height: 600px;
    max-height: 640px;
    max-width: 585px;
    text-align: center;
    border-radius: 50px;
    background-color: #ede6e4;
    overflow: hidden;
}

.version-title{
    font-family: "Rubik", sans-serif;
    font-style: normal;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    color: #503541;
    font-weight: 700;
    font-size: 3rem;
}

.image{
    image-rendering: optimizeQuality;
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.badge{
    display: inline-block;
    min-width: 120px;
    padding: 8px 25px;
    font-weight: 400;
    font-size: 21px;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    border-radius: 8px 25px;
    vertical-align: middle;
}

.badge-yellow{
    background: linear-gradient(to bottom, #fab940, #f5851d);
}

.badge-magenta{
    background: linear-gradient(to bottom, #ce4069, #9c0e51);
}

.badge-iris{
    background: linear-gradient(to bottom, #b576df, #8b3ace);
}

.badge-gray{
    background: linear-gradient(to bottom, #726883, #4c4163);
}

.badge-aqua{
    background: linear-gradient(to bottom, #37c4af, #276d99);
}

.badge-pink{
    background: linear-gradient(to bottom, #ff58e9, #b71bdf);
}

.badge-blue{
    background: linear-gradient(to bottom, #435fff, #350cc7);
}

.badge-red{
    background: linear-gradient(to bottom, #ff7d41, #e7332d);
}

.badge-green{
    background: linear-gradient(to bottom, #70d62d, #00ad57);
}

.badge-orange{
    background: linear-gradient(to bottom, #eb9431, #da5d2b);
}

.badge-purple{
    background: linear-gradient(to bottom, #a24efc, #5633f1);
}

.badge-light-blue{
    background: linear-gradient(to bottom, #33adff, #2b47ff);
}

.badge-gray-blue{
    background: linear-gradient(to bottom, #94b0d6, #4b5aa1);
}

.badge-violet-red{
    background: linear-gradient(to bottom, #f8455d, #74053c);
}

.full-section{
    justify-self: center;
    min-width: 1210px;
    max-width: 1210px;
    text-align: center;
    border-radius: 50px;
    padding-top: 35px;
    background-color: #ede6e4;
    overflow: hidden;
    margin: 0 auto;
}

.full-title{
    font-family: "Rubik", sans-serif;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px;
    color: #503541;
    font-weight: 700;
    font-size: 3.5rem;
}

.full-description{
    font-weight: 500;
    font-size: 1.5rem;
    margin-left: 170px;
    margin-right: 170px;
    color: #855365;
}

.generation{
    display: flex;
    gap: 20px;
}

.image-left-md{
    width: 48%;
    height: auto;
    margin-top: 20px;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.image-right-md{
    width: 48%;
    height: auto;
    margin-top: 20px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.list-item {
    font-size: 23px;
    border-bottom: 3px solid #ddd4d4;
    padding: 5px 70px;
    padding-left: 100px;
    text-align: left;
    margin-top: 7px;
    color: #855365;
}

@media (max-width: 768px) {
    .hero-inner {
        border-radius: 30px;
    }

    .server-name {
        margin-top: 30px;
        font-size: 4.3rem;
    }

    .header-update {
        margin-top: 300px;
        font-size: 2.7rem;
        color: #ffffff;
    }

    .header {
        display: none;
    }

    .header-about {
        margin-top: 30px;
        font-size: 1.8rem;
    }
    .scroll {
        margin-top: 70px;
    }
    
    .heart-icon {
        width: 90%;
    }
    
    .closing-text {
        font-weight: 800;
        padding-top: 20px;
        margin-left: -5px;
        margin-right: -5px;
        font-size: 1.7rem;
    }
    
    .nexteam-text {
        font-size: 2rem;
    }

    .nexteam-logo{
        width: 35px;
        height: auto;
        margin-right: 5px;
        margin-top: 8px;
    }

    .block-title{
        font-size: 3rem;
    }

    .block-description {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }

    .block-sec-desc{
        font-size: 1.4rem;
        margin: 0 8%;
    }

    .npc-model {
        position: relative;
        height: auto;
        max-width: 140%;
        right: 20%;
        top: -18px;
    }
    
    .pokemon-element-card {
        flex-direction: column;
        height: 700px;
        min-width: 350px;
        max-width: 420px;
        max-height: 570px;
        margin: 70px 40px;
        border-radius: 50px;
        text-align: center;
        font-weight: 900;
        font-size: 48px;
        padding-top: 20px;
        line-height: 100%;
    }

    .pokemon-element-title{
        font-size: 47px;
        margin-left: -25px;
        margin-right: -25px;
    }
    
    .pokemon-element-desc {
        margin-top: -15px;
        font-size: 23px;
        font-weight: 400;
        color: #fff;
    }

    .version-section{
        margin-left: 40px;
        margin-right: 40px;
        min-height: 400px;
        max-height: 750px;
        max-width: 660px;
        text-align: center;
        border-radius: 50px;
        background-color: #ede6e4;
        overflow: hidden;
    }
    
    .version-title{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
        color: #503541;
        font-weight: 700;
        font-size: 2.7rem;
    }
    
    .badge{
        display: inline-block;
        min-width: 120px;
        padding: 8px 25px;
        font-weight: 400;
        font-size: 21px;
        margin-top: 60px;
        margin-left: 20px;
        margin-right: 20px;
        color: #fff;
        border-radius: 7px 25px;
        vertical-align: middle;
    }

    .full-section{
        justify-self: center;
        min-height: 500px;
        max-height: 850px;
        min-width: 350px;
        max-width: 660px;
        text-align: center;
        border-radius: 50px;
        background-color: #ede6e4;
        overflow: hidden;
    }
    
    .full-title{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
        color: #503541;
        font-weight: 700;
        font-size: 2.7rem;
    }
    
    .full-description{
        font-size: 21px;
        margin-left: 30px;
        margin-right: 30px;
        color: #855365;
    }
    
    .image-left-md{
        width: 48%;
        height: auto;
        margin-top: 20px;
        border-bottom-right-radius: 50px;
        border-top-right-radius: 50px;
    }
    
    .image-right-md{
        width: 48%;
        height: auto;
        margin-top: 20px;
        border-bottom-left-radius: 50px;
        border-top-left-radius: 50px;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        border-radius: 30px;
    }

    .server-name {
        margin: 0 10%;
        margin-top: 5px;
        font-size: 2.5rem;
    }

    .header-update {
        margin-top: 80%;
        font-size: 2.3rem;
        color: #ffffff;
    }

    .header {
        display: none;
    }

    .header-about {
        margin-top: 10px;
        font-size: 1.7rem;
    }
    .scroll {
        width: 40px;
        height: auto;
        margin-top: 40px;
    }
    
    .heart-icon {
        width: 130px;
    }
    
    .closing-text {
        padding-top: 20px;
        margin-left: -5px;
        margin-right: -5px;
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    .nexteam-text {
        font-size: 1.4rem;
    }

    .nexteam-logo{
        width: 25px;
        height: auto;
        margin-right: 5px;
        margin-top: 8px;
    }

    .col-md-4{
        margin-bottom: 6%;
    }

    .server-card{
        padding: 40px;
        margin: 0 -25px;
    }

    .server-card-title{
        font-size: 1.8rem;
    }   

    .server-card-desc{
        font-size: 1rem;
        line-height: 135%;
    }

    .server-card-icon{
        width: 25%;
        margin-bottom: 5%;
    }

    .block-title{
        margin: 0 5%;
        font-size: 2.4rem;
    }

    .block-description-text {
        font-size: 1.5rem;
    }

    .block-description{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10%;
    }

    .desc-icon{
        width: 25px;
        margin-right: 10px;
    }

    .block-sec-desc{
        font-size: 1rem;
        margin: 14px;
    }

    .card-section{
        max-width: 380px;
        min-height: 350px;
    }

    .sec-card-desc{
        font-size: 1rem;
        line-height: 135%;
    }

    .card-desc{
        font-size: 1rem;
        margin: 0 30px;
        line-height: 135%;
    }

    .card-img {
        bottom: 20px;
    }

    .items-section{
        margin: 0 8%;
        max-width: 270px;
        min-height: 290px;
    }

    .items-card-title{
        font-size: 1.5rem;
        margin-top: -30px;
        line-height: 120%;
    }

    .items-card-desc{
        font-size: 1rem;
        margin: 0 5%;
    }

    .list-item {
        font-size: 1rem;
        padding: 0 30px;
        padding-left: 30px;
    }

    .npc-model {
        max-width: 110%;
        right: 7%;
        top: -30px;
    }
    
    .pokemon-element-card {
        min-width: 330px;
        max-width: 380px;
        max-height: 500px;
        margin: 10% 10%;
    }

    .pokemon-element-title{
        font-size: 41px;
        margin-left: -25px;
        margin-right: -25px;
    }
    
    .pokemon-element-desc {
        margin-top: -20px;
        font-size: 21px;
        font-weight: 400;
        color: #fff;
    }

    .version-section{
        max-height: 640px;
        min-width: 330px;
    }
    
    .version-title{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 10px;
        font-weight: 700;
        font-size: 1.8rem;
    }
    
    .badge{
        display: inline-block;
        min-width: 60px;
        padding: 6px 20px;
        font-weight: 400;
        font-size: 1rem;
        margin: 20px 20px;
        color: #fff;
        border-radius: 7px 25px;
        vertical-align: middle;
    }

    .full-section{
        min-height: 320px;
        max-height: 1660px;
        min-width: 340px;
        max-width: 340px;
        padding-top: 21px;
    }

    .server-full-icon{
        width: 46px;
        height: auto;
    }
    
    .full-title{
        margin: 10px 20px;
        font-size: 1.8rem;
    }
    
    .full-description{
        font-size: 1rem;
        line-height: 135%;
    }

    .generation{
        gap: 10px;
    }

    .image{
        margin-top: 10px;
    }
    
    .image-left-md{
        width: 45%;
        height: auto;
        margin-top: 20px;
        border-bottom-right-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .image-right-md{
        width: 45%;
        height: auto;
        margin-top: 20px;
        border-bottom-left-radius: 20px;
        border-top-left-radius: 20px;
    }
}