@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;  
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

.section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* Loader animáció */
#load {
    display: none; /* Alapból rejtve! */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    color: white;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#load.show {
    display: flex;
}

#load.disppear {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Cookie elfogadási popup */
#cookie-popup {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 5px;
    display: none;
    z-index: 1001;
}

#cookie-popup button {
    background: #009900;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}




/**************
* NAVBAR
**************/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 20px 100px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards; 
}

.header-back {
    background-color: rgba(255, 255, 255, 0.19);
    padding: 10px 30px;
    border-radius: 10px;
    border: .1px solid rgba(170, 170, 170, 0.123);
} 

header ul {
    position: relative;
    display: flex;
    align-items: center;
}

header ul a li {
    position: relative;
    list-style: none;
    margin: 0 15px;
    display: inline-flex;
}

header ul a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: #cfcfcf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    transition: 0.3s ease;
}

header ul a:hover {
    color: white;
    transform: scale(1.1); 
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8); 
}

.webshopBtn {
    text-decoration: nonoe;
    padding: 10px 30px;
    border-radius: 10px;
    background-color: #009900;
    transition: 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.webshopBtn:hover {
    background-color: #32cd32;
    transition: 0.3s ease;
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); 
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header ul a {
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

header ul a:nth-child(1) {
    animation-delay: 0.1s;
}

header ul a:nth-child(2) {
    animation-delay: 0.2s;
}

header ul a:nth-child(3) {
    animation-delay: 0.3s;
}

header ul a:nth-child(4) {
    animation-delay: 0.4s;
}
header ul a:nth-child(5) {
    animation-delay: 0.5s;
}
header ul a:nth-child(6) {
    animation-delay: 0.6s;
}
header ul a:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/**************
* HERO 
**************/

.hero-page {
    width: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 0.5), rgb(0 0 0 / 0)), url('../img/background-hero.png');
    background-size: cover;
    background-position: center;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column; 
    padding: 10% 15%;
    justify-content: center; 
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.hero-page img {
    width: 300px;
    margin: auto;
    animation: slideUp 1.5s ease-out forwards; 
    opacity: 0;
}

.hero-page .hero-page-content {
    text-align: center;
    margin-top: 10px; 
    animation: fadeIn 1.5s ease-out forwards;
    opacity: 0;
}

.hero-page .hero-page-content .text_1 {
    font-size: 55px;
    margin-bottom: 10px;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
}

.hero-page .hero-page-content span {
    color: #009900;
}

.hero-page .hero-page-content .text_2 {
    font-size: 25px;
    margin-bottom: 15px;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
    padding: 15px;
}

.hero-page .hero-page-content .discordBtn {
    text-decoration: none;
    padding: 15px 40px;
    margin-bottom: 1px;
    border-radius: 10px;
    color: #fff;
    background-color: #009900;
    transition: 0.10s;
    animation: buttonFadeIn 1s ease-out forwards;
    opacity: 0;
}

.hero-page .hero-page-content .discordBtn:hover {
    background-color: #32cd32;
    transition: 0.3s ease;
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); 
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/***************
* ABOUT 
***************/

.about-page {
    width: 100%;
    background: #202324;
    padding: 3% 10%;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.about-page .text_1 {
    text-align: center;
    font-size: 50px;
    color: #009900;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 5px;
    font-weight: 570;
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
}

.about-page .text_2 {
    font-size: 25px;
    text-align: center;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

.about-page .card-list {
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

.about-page .card-list .card {
    width: 30%;
    background-color: #24292b;
    display: inline-block;
    border-radius: 25px;
    border: 0.1px solid #4a4c57;
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.6s;
}

.about-page .card-list .card .card-content {
    margin: 20px 50px;
    text-align: left;
    align-items: left;
}

.about-page .card-list .text_1 {
    font-size: 25px;
    color: white;
    margin-bottom: 10px;
    text-shadow: none;
    text-align: left;
    align-items: left;
}

.about-page .card-list .text_1 i {
    color: #009900;
}

.about-page .card-list .text_2 {
    font-size: 18px;
    color: #fff;
    text-shadow: none;
    text-align: left;
    align-items: left;
}

.about-page .card-list .text_2 a {
    text-decoration: none;
    color: #009900;
}

.about-page .card-list .text_2 i {
    font-size: 16px;
}

.about-page .card-list span {
    color: #32cd32;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/******************
* WEBSHOP ADS
******************/

.ads-page {
    width: 100%;
    background: #202324;
    padding: 3% 10%;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.ads-page .text_1 {
    text-align: center;
    font-size: 50px;
    color: #009900;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 5px;
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
}

.ads-page .text_2 {
    font-size: 25px;
    text-align: center;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

.ads-page .card-list {
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

.ads-page .card-list .card {
    width: 100%;
    background: linear-gradient(#1f1d1d, transparent), url(../img/background.png);
    display: inline-block;
    border-radius: 25px;
    border: 0.1px solid #4a4c57;
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.6s;
}

.ads-page .card-list .card .card-content {
    margin: 50px 50px;
    text-align: left;
    align-items: left;
}

.ads-page .card-list .text_1 {
    font-size: 25px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: none;
    text-align: left;
    align-items: left;
}

.ads-page .card-list .text_1 i {
    color: #fff;
}

.ads-page .card-list .text_2 {
    font-size: 18px;
    color: #009900;
    text-shadow: none;
    text-align: left;
    align-items: left;
}

.ads-page .card-list .text_2 a {
    text-decoration: none;
    color: #009900;
}

.ads-page .card-list .text_2 i {
    font-size: 16px;
}

.ads-page p {
    font-size: 25px;
    color: #fff;
}

.adsBtn {
    margin-left: 0px;
    margin-top: 15px;
    background: #009900;
    color: #FFFF;
    border-radius: 4px;
    padding: 10px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: 0.10s;
    opacity: 0;
    animation: buttonFadeIn 1s ease-out forwards;
    animation-delay: 0.8s;
}

.adsBtn:hover {
    transition: 0.10s;
    background-color: #32cd32;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/**********************
* Team
***********************/

.team-page {
    width: 100%;
    background: #202324;
    padding: 3% 10%;
    align-items: center;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.team-page .text_1 {
    font-size: 50px;
    color: #009900;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 5px;
    opacity: 0;
    font-weight: 570;
    animation: slideIn 1s ease-out forwards;
}

.team-page .text_2 {
    font-size: 25px;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 30px;
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

.team-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

.team-card {
    background-color: #24292b;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #4a4c57;
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.6s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.team-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.team-card-content .team-name {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-card-content .owner-rank {
    font-size: 16px;
    color: #5f0000;
    padding: 5px 15px;
    background: #d32626;
    border-radius: 30px;
}

.team-card-content .manager-rank {
    font-size: 16px;
    color: #c84300;
    padding: 5px 15px;
    background: #fc942d;
    border-radius: 30px;
}

.team-card-content .dev-rank {
    font-size: 16px;
    color: #003c54;
    padding: 5px 15px;
    background: #00aff0;
    border-radius: 30px;
}

.team-card-content .foadmin-rank {
    font-size: 16px;
    color: #33154d;
    padding: 5px 15px;
    background: #8939cd;
    border-radius: 30px;
}

.team-card-content .admin-rank {
    font-size: 16px;
    color: #9e0c0e;
    padding: 5px 15px;
    background: #fc4346;
    border-radius: 30px;
}

.team-card-content .mod-rank {
    font-size: 16px;
    color: #078a38;
    padding: 5px 15px;
    background: #0bfc66;
    border-radius: 30px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/******************
* DISCORD ADS
******************/

.adsdc-page {
    width: 100%;
    background: #202324;
    padding: 3% 10%;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.adsdc-page .text_1 {
    text-align: center;
    font-size: 50px;
    color: #009900;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 5px;
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
}

.adsdc-page .text_2 {
    font-size: 25px;
    text-align: center;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

.adsdc-page .card-list {
    align-items: center;
    text-align: center;
    width: 100%;
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

.adsdc-page .card-list .card {
    width: 100%;
    background: linear-gradient(#1f1d1d, transparent), url(../img/dcads.png);
    display: inline-block;
    border-radius: 25px;
    border: 0.1px solid #4a4c57;
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.6s;
}

.adsdc-page .card-list .card .card-content {
    margin: 50px 50px;
    text-align: left;
    align-items: left;
}

.adsdc-page .card-list .text_1 {
    font-size: 25px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: none;
    text-align: left;
    align-items: left;
}

.adsdc-page .card-list .text_1 i {
    color: #fff;
}

.adsdc-page .card-list .text_2 {
    font-size: 18px;
    color: #009900;
    text-shadow: none;
    text-align: left;
    align-items: left;
}

.adsdc-page .card-list .text_2 a {
    text-decoration: none;
    color: #009900;
}

.adsdc-page .card-list .text_2 i {
    font-size: 16px;
}

.adsdc-page p {
    font-size: 25px;
    color: #fff;
}

.dcadsBtn {
    margin-left: 0px;
    margin-top: 15px;
    background: #009900;
    color: #FFFF;
    border-radius: 4px;
    padding: 10px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: 0.10s;
    opacity: 0;
    animation: buttonFadeIn 1s ease-out forwards;
    animation-delay: 0.8s;
}

.dcadsBtn:hover {
    transition: 0.10s;
    background-color: #32cd32;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/**************
* SERVERS
**************/

.servers-page {
    width: 100%;
    background: #202324;
    padding: 3% 10%;
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.servers-page .text_1 {
    text-align: center;
    font-size: 50px;
    font-weight: 570;
    color: #009900;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 5px;
}

.servers-page .text_2 {
    font-size: 25px;
    text-align: center;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 30px;
}

.servers-page .servers-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.server-card {
    display: flex; 
    width: 80%; 
    background-color: #24292b;
    border-radius: 20px;
    overflow: hidden;
    border: 0.1px solid #4a4c57;
    opacity: 0;
    justify-content: flex-start;
    align-items: center;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.5s;
    padding: 20px; 
    gap: 20px; 
    margin-bottom: 20px
}

.server-card-image img {
    width: 300px;
    height: auto;
    border-radius: 10px; 
}

.server-card-content {
    text-align: left;
    flex: 1; 

}

.server-card-content .server-name {
    font-size: 25px;
    color: #009900;
    margin-bottom: 10px;
}

.server-card-content .server-description {
    font-size: 18px;
    color: #dfdfdf;
    line-height: 1.5;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*************
* LEíRÁS
*************/

.enchant-page {
    width: 100%;
    min-height: 100vh; 
    box-sizing: border-box; 
    background: #202324;
    padding: 5%; 
    animation: fadeIn 1.5s ease-out forwards;
}

.enchant-title {
    text-align: left;
    font-size: 50px;
    color: #009900;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 20px;
}

.enchant-item {
    margin-bottom: 15px;
    border: 1px solid #4a4c57;
    border-radius: 10px;
    background-color: #24292b;
    overflow: hidden;
}

.enchant-question {
    width: 100%;
    background-color: #24292b;
    color: white;
    font-size: 18px;
    text-align: left;
    padding: 15px;
    border: none;
    cursor: pointer;
    text-shadow: none;
}

.enchant-answer {
    display: none;
    padding: 15px;
    color: #dfdfdf;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.55);
    animation: slideDown 0.5s ease-out forwards;
}

.enchant-item.open .enchant-answer {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*************
* CONTACT
*************/

.contact-page {
    padding: 3% 10%;
    background-color: #202324;
    text-align: center;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

.contact-page .text_1 {
    font-size: 50px;
    font-weight: 570;
    color: #009900;
    margin-bottom: 5px;
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
}

.contact-page .text_2 {
    font-size: 20px;
    color: #dfdfdf;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.2s;
}

.contact-box {
    margin-top: 20px;
    background-color: #2a2d2e;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
    text-align: left;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

.contact-item {
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInItem 1s ease-out forwards;
}

.contact-item p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 18px;
    
    color: #dfdfdf;
}

.contact-item p strong {
    color: #009900;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInItem {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/***********
* FOOTER
***********/

footer {
    width: 100%;
    background-color: #212121;
    padding: 15px 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0;
}

footer .footer-content {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

footer .footer-content .footer-content-list {
    display: inline-flex;
}

footer .footer-content .footer-content-list img {
    width: 80px;
}

footer .footer-content .footer-content-list .text_1 {
    color: white;
    margin: auto;
    text-align: center;
    margin-left: 15px;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}

footer .footer-content .footer-content-list ul {
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 15px;
}

footer .footer-content .footer-content-list li {
    list-style-type: none;
    text-decoration: none;
    padding: 0 10px;
}

footer .footer-content .footer-content-list li a {
    color: rgb(189, 189, 189);
    margin: auto;
    text-align: center;
    margin-left: 15px;
    font-size: 16.5px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    transition: .3s;
}

footer .footer-content .footer-content-list li a:hover {
    color: white;
}

footer .contact ul {
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 10px;
}

/**********************
* LOADING SCREEN
**********************/

#load {
    background: rgb(26, 25, 25);
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
    justify-content: center;
    align-items: center;
    display: flex;
}

.forog {
    animation: spin 1s linear infinite;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 45%;
    left: 50%;
    margin: -5px;
}

.forog p {
    color: white;
    font-size: 30px;
    top: 80px;
    left: -60px;
    position: absolute;
}
  
  @keyframes spin {
    0% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
    6.25% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px #009900, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
    12.5% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px transparent, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px #009900, 
        -10px 30px #009900, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
    18.75% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px transparent, 
        20px -20px transparent, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px #009900, 
        -10px 30px #009900, 
        -20px 20px #009900, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
    25% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px transparent, 
        20px -20px transparent, 
        30px -10px transparent, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px #009900, 
        -10px 30px #009900, 
        -20px 20px #009900, 
        -30px 10px #009900, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
    31.25% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px transparent, 
        20px -20px transparent, 
        30px -10px transparent, 
        30px 0px transparent, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px #009900, 
        -10px 30px #009900, 
        -20px 20px #009900, 
        -30px 10px #009900, 
        -30px 0px #009900, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
    37.5% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px transparent, 
        20px -20px transparent, 
        30px -10px transparent, 
        30px 0px transparent, 
        30px 10px transparent, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px #009900, 
        -10px 30px #009900, 
        -20px 20px #009900, 
        -30px 10px #009900, 
        -30px 0px #009900, 
        -30px -10px #009900, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
    43.75% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px transparent, 
        20px -20px transparent, 
        30px -10px transparent, 
        30px 0px transparent, 
        30px 10px transparent, 
        20px 20px transparent, 
        10px 30px #009900, 
        0px 30px #009900, 
        -10px 30px #009900, 
        -20px 20px #009900, 
        -30px 10px #009900, 
        -30px 0px #009900, 
        -30px -10px #009900, 
        -20px -20px #009900,
        -10px -30px transparent;
    }
    50% {
      box-shadow: 
        0px -30px transparent, 
        10px -30px transparent, 
        20px -20px transparent, 
        30px -10px transparent, 
        30px 0px transparent, 
        30px 10px transparent, 
        20px 20px transparent, 
        10px 30px transparent, 
        0px 30px #009900, 
        -10px 30px #009900, 
        -20px 20px #009900, 
        -30px 10px #009900, 
        -30px 0px #009900, 
        -30px -10px #009900, 
        -20px -20px #009900,
        -10px -30px #009900;
    }
    56.25% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px transparent, 
        20px -20px transparent, 
        30px -10px transparent, 
        30px 0px transparent, 
        30px 10px transparent, 
        20px 20px transparent, 
        10px 30px transparent, 
        0px 30px transparent, 
        -10px 30px #009900, 
        -20px 20px #009900, 
        -30px 10px #009900, 
        -30px 0px #009900, 
        -30px -10px #009900, 
        -20px -20px #009900,
        -10px -30px #009900;
    }
    62.5% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px transparent, 
        30px -10px transparent, 
        30px 0px transparent, 
        30px 10px transparent, 
        20px 20px transparent, 
        10px 30px transparent, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px #009900, 
        -30px 10px #009900, 
        -30px 0px #009900, 
        -30px -10px #009900, 
        -20px -20px #009900,
        -10px -30px #009900;
    }
    68.75% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px transparent, 
        30px 0px transparent, 
        30px 10px transparent, 
        20px 20px transparent, 
        10px 30px transparent, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px #009900, 
        -30px 0px #009900, 
        -30px -10px #009900, 
        -20px -20px #009900,
        -10px -30px #009900;
    }
    75% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px transparent, 
        30px 10px transparent, 
        20px 20px transparent, 
        10px 30px transparent, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px #009900, 
        -30px -10px #009900, 
        -20px -20px #009900,
        -10px -30px #009900;
    }
    81.25% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px transparent, 
        20px 20px transparent, 
        10px 30px transparent, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px #009900, 
        -20px -20px #009900,
        -10px -30px #009900;
    }
    87.5% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px transparent, 
        10px 30px transparent, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px #009900,
        -10px -30px #009900;
    }
    93.75% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px transparent, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px #009900;
    }
    100% {
      box-shadow: 
        0px -30px #009900, 
        10px -30px #009900, 
        20px -20px #009900, 
        30px -10px #009900, 
        30px 0px #009900, 
        30px 10px #009900, 
        20px 20px #009900, 
        10px 30px #009900, 
        0px 30px transparent, 
        -10px 30px transparent, 
        -20px 20px transparent, 
        -30px 10px transparent, 
        -30px 0px transparent, 
        -30px -10px transparent, 
        -20px -20px transparent,
        -10px -30px transparent;
    }
  }

.disppear{
    animation: vanish .5s forwards;
}

@keyframes vanish {
    100%{
        opacity: 0;
        visibility: hidden;
    }
}




/*******************
* RESPONSIVE DESIGN
******************/


@media only screen and (max-width: 1200px) {
    .section {
        padding: 2rem 5%;
    }
    header {
        padding: 10px 50px;
    }
    .hero-page {
        padding: 8% 12%;
    }
    .about-page, .ads-page, .team-page, .contact-page {
        padding: 3% 8%;
    }
    .about-page .card-list, .ads-page .card-list, .team-list {
        flex-direction: column;
        justify-content: center;
    }
    .about-page .card-list .card, .ads-page .card-list .card {
        width: 80%;
        margin-bottom: 20px;
    }
    .team-card {
        width: 80%;
    }
}

@media only screen and (max-width: 768px) {
    header {
        padding: 10px 20px;
    }
    .hero-page {
        padding: 6% 10%;
    }
    .hero-page .hero-page-content .text_1 {
        font-size: 45px;
    }
    .hero-page .hero-page-content .text_2 {
        font-size: 20px;
    }
    .about-page .text_1 {
        font-size: 40px;
    }
    .about-page .text_2 {
        font-size: 20px;
    }
    .ads-page .text_1 {
        font-size: 35px;
    }
    .ads-page .text_2 {
        font-size: 18px;
    }
    .contact-page .text_1 {
        font-size: 45px;
    }
    .contact-page .text_2 {
        font-size: 18px;
    }
    .contact-box {
        padding: 15px;
    }
    .footer-content .footer-content-list img {
        width: 60px;
    }
    footer .footer-content .footer-content-list li a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    header {
        padding: 8px 10px;
    }
    .hero-page {
        padding: 5% 8%;
    }
    .hero-page .hero-page-content .text_1 {
        font-size: 35px;
    }
    .hero-page .hero-page-content .text_2 {
        font-size: 18px;
    }
    .about-page .text_1 {
        font-size: 35px;
    }
    .about-page .text_2 {
        font-size: 18px;
    }
    .ads-page .text_1 {
        font-size: 30px;
    }
    .ads-page .text_2 {
        font-size: 16px;
    }
    .team-card {
        width: 100%;
    }
    .footer-content .footer-content-list li a {
        font-size: 12px;
    }
}

@media only screen and (max-width: 375px) {
    .hero-page .hero-page-content .text_1 {
        font-size: 30px;
    }
    .hero-page .hero-page-content .text_2 {
        font-size: 16px;
    }
    .about-page .text_1 {
        font-size: 30px;
    }
    .about-page .text_2 {
        font-size: 16px;
    }
    .ads-page .text_1 {
        font-size: 25px;
    }
    .ads-page .text_2 {
        font-size: 14px;
    }
    .team-card {
        width: 100%;
    }
    footer .footer-content .footer-content-list li a {
        font-size: 10px;
    }
}


@media only screen and (max-width: 1200px) {
    .servers-page {
        padding: 2rem 5%;
    }

    .servers-page .servers-list {
        flex-direction: column; 
        gap: 15px;
    }

    .server-card {
        width: 80%; 
    }
}

@media only screen and (max-width: 768px) {
    .servers-page {
        padding: 3% 8%;
    }

    .servers-page .text_1 {
        font-size: 40px;
    }

    .servers-page .text_2 {
        font-size: 20px;
    }

    .server-card {
        width: 90%; 
    }
}

@media only screen and (max-width: 480px) {
    .servers-page {
        padding: 5% 8%;
    }

    .servers-page .text_1 {
        font-size: 35px;
    }

    .servers-page .text_2 {
        font-size: 18px;
    }

    .server-card {
        width: 100%;
    }
}

@media only screen and (max-width: 375px) {
    .servers-page .text_1 {
        font-size: 30px;
    }

    .servers-page .text_2 {
        font-size: 16px;
    }

    .server-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .enchant-page {
        padding: 20%; 
    }

    .enchant-title {
        font-size: 40px;
        text-align: center;
    }

    .enchant-question {
        font-size: 16px;
        padding: 10px;
    }

    .enchant-answer {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .enchant-page {
        padding: 10%; 
    }

    .enchant-title {
        font-size: 30px;
    }

    .enchant-question {
        font-size: 14px;
        padding: 8px;
    }

    .enchant-answer {
        padding: 8px;
        font-size: 14px;
    }
}