html, body {
    overflow-x: hidden;
    width: 100vw;
}


body {
    margin: 0;
    font-family: "Arial", sans-serif;
    background-image: radial-gradient(circle at center, #100d0d, #0b0100);
    color: white;
    text-align: center;
    overflow-x: hidden;
}

/* Logo */
.logo img{
    padding-left: 80px;
    width: 80px;
    height: auto;
}

.logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background-color: #0b0100;
    border-right: white 1px solid;
    z-index: 100000;
}


/* Navigation bar */
.navbar {
    position: absolute;
    top: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    padding: 15px 50px;
    z-index: 1000;
    margin-right: 130px;
}

nav {
    display: flex;
    justify-content: left;
    flex-grow: 0;
    flex: 1;
}

nav a {
    margin: 0 34px;
    color: rgb(5, 132, 235);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    transition: transform 0.3s ease;
}

nav a:hover {
    color: #035ca1;
    transform: scale(1.1);
}

header {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.velcord {
    color: white;
    font-weight: bold;
    cursor: pointer;
}

nav .velcord:hover {
    color: white;
}

.admin-btn {
    background-color: #00aaff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: auto;
    transition: 0.3s;
}

.admin-btn:hover {
    background-color: #0b68b4;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon1 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
}

.icon1 span {
    width: 30px;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(45, 45, 45, 0.95);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}


.mobile-menu.active {
    display: flex;
}

.icon1.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.icon1.active span:nth-child(2) {
    opacity: 0;
}

.icon1.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1060px) {
    nav, .admin-btn, .navpc {
        display: none;
    }

    .icon1 {
        display: flex;
        margin-left: auto;
        margin-right: 10px;
    }

    .mobile-menu {
        margin-top: 1.5rem;
    }

    .navbar {
        padding: 10px 30px 0 0;
        margin-right: 0;
    }

    .admin-btn {
        margin-left: 0;
        margin: 0 50px;
        color: white;
        text-decoration: none;
        font-size: 1.2rem; 
    }

    .logo img {
        padding-left: 20px;
    }

}

@media (min-width: 1060px) {
    .mobile-menu a {
        display: none;
    }

    .mobile-menu.active {
        display: none;
    }
}

@media (max-width: 750px) {
    .overlay {
        margin-right: 20px;
    }
}

@media (max-width: 520px) {
    .overlay-wrapper .overlay h1 {
        font-size: xx-large;
    }
    
    header {
        height: 450px;
    }

}

@media (max-width: 420px) {
    .overlay-wrapper .overlay h1 {
        font-size: x-large;
    }
    .overlay-wrapper .overlay p {
        font-size: small;
    }

}

/* overlay */

.content {
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 650px;
    margin-left: 0;
}

.content h1 {
    letter-spacing: 2px;
    font-size: 2.5rem;
}

.content p {
    letter-spacing: 2px;
    color: rgb(176, 176, 176);
    font-size: 1rem;
}

.overlay {
    position: relative; 
}

.overlay-wrapper {
    display: flex;
    justify-content: left;
    width: 100%;
    margin-left: 55px;
    margin-top: -20px;
}

@media (min-width: 1200px) {
    .raketa {
        position: absolute;
        top: 50%; 
        right: 400px; 
        transform: translateY(-50%);
    }
}

@media (max-width: 1920px) {
    .raketa {
        position: absolute;
        top: 50%; 
        right: 500px; 
        transform: translateY(-50%);
    }

    .raketa img {
        width: 350px;
    }
}

@media (min-width: 1400px) and (max-width: 1550px){
    .raketa {
        position: absolute;
        top: 50%;
        right: 170px;
        transform: translateY(-50%);
    }

    .raketka img {
        width: 1000px;
        height: auto;
    }
}

@media (min-width: 1200px) and (max-width: 1399px){
    .raketa {
        position: absolute;
        top: 50%; 
        right: 170px;
        transform: translateY(-50%);
    }

    .raketka img {
        width: 1000px;
        height: auto;
    }
}


@media (max-width: 1024px) {
    .raketa {
        position: absolute;
        top: 50%; 
        right: 10px; 
        transform: translateY(-50%);
    }

    .raketa img {
        width: 300px;
        height: auto;
    }
}

@media (min-width: 960px) and (max-width: 1199px) {
    .raketa {
        position: absolute;
        top: 50%; 
        right: 10px; 
        transform: translateY(-50%);
    }
}

@media (max-width: 960px) {
    .raketa {
        display: none;
    }
}

@media  (min-width: 430px) {
    .break-mobile {
        display: none;
    }
    
}

@media (max-width: 600px) {
    .overlay-wrapper {
        margin-left: 20px;
    }
}

/* offer karty */

.offer h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-top: -20px;
    letter-spacing: 2px;
    font-family: "Arial", sans-serif;
    color: transparent;
    background-image: linear-gradient(45deg, #01b3ff, #0f50f4);
    -webkit-background-clip: text;
    background-clip: text;
}

.minecraft-hosting {
    padding: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 700px;
    margin: 50px auto;
    text-align: left;
    margin-left: 0px;

    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                      url('../images/minecraft.webp') center/cover no-repeat;; 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
}


.minecraft-hosting h2 {
    font-size: 2rem;
    margin-bottom: -10px;
    letter-spacing: 1px;
    color: transparent;
    font-weight: small;
    background-image: linear-gradient(45deg, #01b3ff, #0f50f4);
    -webkit-background-clip: text;
    background-clip: text;
}

.minecraft-hosting p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgb(176, 176, 176);
}

.start-btn {
    background-color: #004c98;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.start-btn:hover {
    background-color: #003366;
}

.vps-hosting {
    background-color: #2d2d42;
    padding: 30px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    max-width: 700px;
    margin: 50px auto;
    text-align: left;
    margin-right: 0px;

    background-image: url("../images/vps.webp"); 
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center;
}

.vps-hosting h2 {
    font-size: 2rem;
    margin-bottom: -10px;
    letter-spacing: 1px;
    color: transparent;
    font-weight: small;
    background-image: linear-gradient(45deg, #01b3ff, #0f50f4);
    -webkit-background-clip: text;
    background-clip: text;
}

.vps-hosting p {
    margin-bottom: 20px;
    color: rgb(176, 176, 176);
}

@media (min-width: 420px) {
    .vps-hosting p {
        font-size: 1.2rem;
    }
}

.vds-hosting {
    padding: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 700px;
    margin: 50px auto;
    text-align: left;
    margin-left: 0px;

    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                      url('../images/vds.webp') center/cover no-repeat;; 
}


.vds-hosting h2 {
    font-size: 2rem;
    margin-bottom: -10px;
    letter-spacing: 1px;
    color: transparent;
    font-weight: small;
    background-image: linear-gradient(45deg, #01b3ff, #0f50f4);
    -webkit-background-clip: text;
    background-clip: text;
}

.vds-hosting p {
    margin-bottom: 20px;
    color: rgb(176, 176, 176);
}

@media (min-width: 420px) {
    .vds-hosting p {
        font-size: 1.2rem;
    }
}

@media (max-width: 660px) {
    .minecraft-hosting {
        border-radius: 0;
    }

    .vps-hosting {
        border-radius: 0;
    }

    .vds-hosting {
        border-radius: 0;
    }

}

@media (max-width: 420px) {
    .minecraft-hosting p {
        font-size: 1rem;
    }

    .vps-hosting p {
        font-size: 1rem;
    }

    .vds-hosting p {
        font-size: 1rem;
    }

}


/* Contact */

.contact h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-top: 0px;
    padding-top: 20px;
    letter-spacing: 2px;
    font-family: "Arial", sans-serif;
    color: transparent;
    background-image: linear-gradient(45deg, #01b3ff, #0f50f4);
    -webkit-background-clip: text;
    background-clip: text;
}

.contact p {
    letter-spacing: 2px;
    color: rgb(176, 176, 176);
    font-size: 1.3rem;
    padding-bottom: 40px;
}

  
.btn {
    background-image: linear-gradient(45deg, #01b3ff, #0f50f4);
    color: white;
    margin-top: 50px;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
  
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    cursor: pointer;
    max-width: 200px;
    margin: 0 auto;

    display: block;
    text-align: center;
}
  
.btn:hover {
    transform: translateY(-3px);
}

.contact {
    padding: 25px;
}

@media (max-width: 450px) {
    .contact h2 {
        white-space: nowrap;
        font-size: 1.8rem;
    }

    .contact p {
        font-size: 1rem;
    }
}

/* Prečo velcord */
@media (min-width: 450px) {
    .whyvelcord {
        padding-top: 150px;
        margin-top: 100px;
    }
}

@media (max-width: 450px) {
    .whyvelcord {
        padding-top: 50px;
    }
}

.whyvelcord-nadpis {
    width: 30%;
    justify-content: center;
    margin: auto;
    border-bottom: whitesmoke 1px solid;
    width: fit-content;
    min-width: 200px;
    overflow: hidden;
}

.whyvelcord h2 {
    font-size: 3rem;
}

.whyvelcord p {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 20px 10px;
    color: white;
}

/* co muzeme dat */

.procmy {
    display: flex;
    justify-content: space-between;
}


.lokalita {
    border-radius: 8px;
    margin-top: 200px;
    margin-left: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    width: 100%;
    text-align: left;
    padding: 30px;
    margin: 50px auto;
    text-align: left;
    margin-left: 50px;
}

.lokalita img {
    font-size: 48px;
    margin-right: 20px;
}

.lokalita h1 {
    margin: 0;
    font-size: 2.5rem;
    padding-bottom: 25px;
}

.lokalita p {
    margin: 5px 0 0;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}



.bezpecnost {
    border-radius: 8px;
    margin-top: -200px;
    margin-left: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    width: 100%;
    text-align: left;
    padding: 30px;
    margin: 50px auto;
    text-align: left;
    margin-right: 50px;
    margin-left: 15px;
}

.bezpecnosti img {
    width: 75px;
    height: auto;
    margin-right: 20px;
}

.bezpecnost h1 {
    margin: 0;
    font-size: 2.5rem;
    padding-bottom: 25px;
}

.bezpecnost p {
    margin: 5px 0 0;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}

.podpora-img img {
    width: 75px;
    height: auto;
    margin-right: 20px;
}

.hardware-img img {
    width: 75px;
    height: auto;
    margin-right: 20px;
}

.podtext {
    color: rgb(176, 176, 176);
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 150px;
    letter-spacing: 2px;
}


@media (min-width: 1200px) and (max-width: 1450px){
    .lokalita {
        margin-left: 0;
    }

    .hardware {
        margin-left: 0;
    }

    .bezpecnost {
        margin-right: 0;
    }

    .podpora {
        margin-right: 0;
    }
}

@media (max-width: 830px) {
    .procmy {
        flex-direction: column;
    }

    .lokalita {
        margin: 20px auto;
    }

    .bezpecnost {
        margin: 20px auto;
    }
}

@media (max-width: 700px) {
    .lokalita {
        max-width: 500px;
    }

    .bezpecnost {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .lokalita {
        max-width: 400px;
    }

    .bezpecnost {
        max-width: 400px;
    }
}

@media (max-width: 500px) {
    .lokalita {
        max-width: 320px;
        padding: 15px;
    }

    .bezpecnost {
        max-width: 320px;
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .lokalita {
        max-width: 280px;
        padding: 15px;
    }

    .bezpecnost {
        max-width: 280px;
        padding: 15px;
    }

    .bezpecnost1 h1 {
        font-size: 2em;
    }

}

@media (max-width: 700px) {
    .lokalita p {
        font-size: medium;
    }

    .bezpecnost p {
        font-size: medium;
    }

    .lokalita h1 {
        font-size: xx-large;
        padding-bottom: 10px;
    }

    .bezpecnost h1 {
        font-size: xx-large;
        padding-bottom: 10px;
    }
    

    .kdenasnajdete .kdenasnajdete-text p {
        font-size: large;
    }

    .konec {
        margin-top: 40px;
    }


}

@media (max-width: 900px) {
    .podtext {
        margin-bottom: 0;
    }
}

@media (max-width: 500px) {
    .kdenasnajdete .kdenasnajdete-text h1 {
        font-size: xx-large;
    }

    .kdenasnajdete {
        margin-top: 20px;
    }

    .podtext {
        margin: 25px;
    }
}

.podtext {
    margin: 25px;
}

@media (max-width: 900px) {
    .kdenasnajdete {
        align-items: center;
    }
}

.kdenasnajdete h1 {
    white-space: nowrap;
}

@media (max-width: 450px) {
    .whyvelcord .whyvelcord-nadpis h2 {
        white-space: nowrap;
        font-size: 2.3rem;
    }

    .whyvelcord p {
        font-size: 1rem;
    }
}

.whyvelcord {
    padding: 20px;
}

@media (max-width: 470px) {
    .podtext p {
        font-size: 1rem;
    }
    
}

/* Lokace */

.kdenasnajdete {
    display: flex;
    justify-content: space-between;
}

@media  (min-width: 500px) {
    .kdenasnajdete {
        margin-top: 80px;
    }
}

.kdenasnajdete-text {
    width: 40%;
    height: 30%;
    margin-left: 200px;
    border-bottom: white 3px solid;
}

.kdenasnajdete-text h1 {
    font-size: 3rem;
}

.kdenasnajdete-text p {
    text-align: left;
    color: #00aaff;
    font-size: 1.5rem;
}

.mapa img {
    margin-right: 200px;
}

.mapa-mobile {
    display: none;
}


@media (max-width: 1300px){
    .kdenasnajdete-text {
        margin-left: 50px;
    }

    .mapa img {
        width: 500px;
        height: auto;
        margin-right: 0;
        margin-top: 100px;
    }
}

@media (min-width: 1301px) and (max-width: 1490px){
    .kdenasnajdete-text {
        margin-left: 50px;
    }

    .mapa img {
        width: 600px;
        margin-right: 40px;
    }
}

@media (max-width: 900px) {
    .mapa{
        display: none;
    }

    .mapa-mobile {
        display: inline;
    }

    .kdenasnajdete {
        flex-direction: column;
        justify-content: center;
    }

    .kdenasnajdete-text {
        width: 80vw;
    }

    .kdenasnajdete-text {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 750px) {
    .mapa-mobile img {
        max-width: 500px;
        height: auto;
    }
}

@media (max-width: 620px) {
    .mapa-mobile img {
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .mapa-mobile img {
        max-width: 300px;
        height: auto;
    }
}

@media (max-width: 380px) {
    .mapa-mobile img {
        max-width: 250px;
        height: auto;
    }
}


/* Konec */

.konec {
    margin-top: 200px;
    align-items: center;
    gap: 15px;
    padding: 0 25px;
}

.konec-text h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.konec-text p {
    text-align: center;
    font-size: 1.5rem;
    color: #929292;
    font-weight: bold;
}

.btn-admin {
    border: white 1px solid;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
  
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    cursor: pointer;
    max-width: 200px;
    margin: 0;

    display: block;
    text-align: center;
}

.btn-admin:hover {
    transform: translateY(-3px);
}

.btn-discord {
    background-image: linear-gradient(45deg, #01b3ff, #0f50f4);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
  
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    cursor: pointer;
    max-width: 200px;
    margin: 0;

    display: block;
    text-align: center;
}

.btn-discord:hover {
    transform: translateY(-3px);
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 430px) {
    .buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .konec .konec-text h1 {
        font-size: 1.8rem;
    }

    .konec .konec-text p {
        font-size: 1rem;
    }

    .konec {
        margin-top: 100px;
    }

}

/* Footer */
.footer {
    box-shadow: 0 0.5px 4px rgba(218, 218, 218, 0.5);
    color: white;
    padding: 40px 0;
    text-align: left;
    width: 100%;
    margin-top: 150px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer h3 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 2rem;
    margin-top: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
    font-weight: bold;
}

.footer-column ul li p,
.footer-column ul li a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #03c0ff;
}

.footer p {
    color: #03c0ff;
    font-weight: bold;
}

.footer-slogan {
    white-space: nowrap;
    overflow: visible;
    color: rgb(0, 242, 255) !important;
}

@media (min-width: 520px) and (max-width: 800px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .footer-logo {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .zdroje {
        grid-column: 2 / span 3;
        grid-row: 1;
    }

    .informace {
        grid-column: 2 / span 3;
        grid-row: 2;
    }

    .kontakt {
        grid-column: 1 / span 2;
        grid-row: 2;
    }
}

@media (max-width: 520px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
        padding-left: 20px;
    }

    .footer-column,
    .footer-logo {
        width: 100%;
    }

    .footer-column ul {
        padding: 0;
        list-style: none;
    }
}

@media (max-width: 600px) {
    .footer {
        margin-top: 100px;
    }
}

.corebb {
    text-decoration: none;
    color: rgb(176, 176, 176);
}

.corebb:hover {
    color: #03c0ff;
}

.corebb2 {
    text-decoration: none;
    color: white;
}

.corebb2:hover {
    color: #03c0ff;
}

.discord {
    text-decoration: none;
    color: rgb(176, 176, 176);
}

.discord:hover {
    color: #03c0ff;
}

/* Break Points */

@media (max-width: 545px) {
    .pc {
        display: none;
    }
    
}

@media (max-width: 750px) {
    .pc1 {
        display: none;
    }
    
}

@media (max-width: 1335px) {
    .pc2 {
        display: none;
    }
    
}

@media (max-width: 1035px) {
    .pc3 {
        display: none;
    }
    
}

@media (max-width: 1035px) {
    .pc4 {
        display: none;
    }
    
}

/*Animace*/

.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: hidePreloader 3s forwards;
    pointer-events: none;
}

.glitch {
    font-size: 5rem;
    color: white;
    font-family: 'Press Start 2P', cursive;
    position: relative;
    text-transform: uppercase;
    animation: glitch-skew 1s infinite alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: "VELCORD.NET";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 red;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 0.8s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 blue, 2px 2px blue;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 0.8s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 20px, 0); transform: skew(5deg); }
    20% { clip: rect(30px, 9999px, 40px, 0); transform: skew(-5deg); }
    40% { clip: rect(50px, 9999px, 60px, 0); transform: skew(3deg); }
    60% { clip: rect(70px, 9999px, 80px, 0); transform: skew(-3deg); }
    80% { clip: rect(90px, 9999px, 100px, 0); transform: skew(2deg); }
    100% { clip: rect(110px, 9999px, 120px, 0); transform: skew(-2deg); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(5px, 9999px, 15px, 0); transform: skew(-4deg); }
    20% { clip: rect(25px, 9999px, 35px, 0); transform: skew(4deg); }
    40% { clip: rect(45px, 9999px, 55px, 0); transform: skew(-3deg); }
    60% { clip: rect(65px, 9999px, 75px, 0); transform: skew(3deg); }
    80% { clip: rect(85px, 9999px, 95px, 0); transform: skew(-2deg); }
    100% { clip: rect(105px, 9999px, 115px, 0); transform: skew(2deg); }
}

@keyframes glitch-skew {
    0% { transform: skew(-5deg); }
    20% { transform: skew(5deg); }
    40% { transform: skew(-3deg); }
    60% { transform: skew(3deg); }
    80% { transform: skew(-2deg); }
    100% { transform: skew(2deg); }
}

@keyframes hidePreloader {
    0% { opacity: 1; }
    80% { opacity: 0; }
    100% { opacity: 0; display: none; }
}

header main footer {
    opacity: 0;
    animation: fadeInBody 3s 1.5s forwards;
}

@keyframes fadeInBody {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 767px) {
    .glitch {
        font-size: 3rem;
    }

    .preloader {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .glitch::before,
    .glitch::after {
        clip: rect(20px, 9999px, 30px, 0);
    }

    @keyframes glitch-anim {
        0% { clip: rect(5px, 9999px, 15px, 0); transform: skew(5deg); }
        20% { clip: rect(15px, 9999px, 25px, 0); transform: skew(-5deg); }
        40% { clip: rect(25px, 9999px, 35px, 0); transform: skew(3deg); }
        60% { clip: rect(35px, 9999px, 45px, 0); transform: skew(-3deg); }
        80% { clip: rect(45px, 9999px, 55px, 0); transform: skew(2deg); }
        100% { clip: rect(55px, 9999px, 65px, 0); transform: skew(-2deg); }
    }

    @keyframes glitch-anim2 {
        0% { clip: rect(5px, 9999px, 15px, 0); transform: skew(-4deg); }
        20% { clip: rect(15px, 9999px, 25px, 0); transform: skew(4deg); }
        40% { clip: rect(25px, 9999px, 35px, 0); transform: skew(-3deg); }
        60% { clip: rect(35px, 9999px, 45px, 0); transform: skew(3deg); }
        80% { clip: rect(45px, 9999px, 55px, 0); transform: skew(-2deg); }
        100% { clip: rect(55px, 9999px, 65px, 0); transform: skew(2deg); }
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 2rem;
    }

    .preloader {
        padding: 10px;
    }

    .glitch::before,
    .glitch::after {
        clip: rect(10px, 9999px, 20px, 0);
    }

    @keyframes glitch-anim {
        0% { clip: rect(5px, 9999px, 15px, 0); transform: skew(5deg); }
        20% { clip: rect(10px, 9999px, 20px, 0); transform: skew(-5deg); }
        40% { clip: rect(15px, 9999px, 25px, 0); transform: skew(3deg); }
        60% { clip: rect(20px, 9999px, 30px, 0); transform: skew(-3deg); }
        80% { clip: rect(25px, 9999px, 35px, 0); transform: skew(2deg); }
        100% { clip: rect(30px, 9999px, 40px, 0); transform: skew(-2deg); }
    }

    @keyframes glitch-anim2 {
        0% { clip: rect(5px, 9999px, 15px, 0); transform: skew(-4deg); }
        20% { clip: rect(10px, 9999px, 20px, 0); transform: skew(4deg); }
        40% { clip: rect(15px, 9999px, 25px, 0); transform: skew(-3deg); }
        60% { clip: rect(20px, 9999px, 30px, 0); transform: skew(3deg); }
        80% { clip: rect(25px, 9999px, 35px, 0); transform: skew(-2deg); }
        100% { clip: rect(30px, 9999px, 40px, 0); transform: skew(2deg); }
    }
}

/* header */

@keyframes navSlideIn {
    0% {
        opacity: 0;
        display: none;
        transform: translateX(-100%); 
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

@keyframes glitch-anim {
    0% { clip: rect(5px, 9999px, 15px, 0); transform: skew(5deg); }
    20% { clip: rect(15px, 9999px, 25px, 0); transform: skew(-5deg); }
    40% { clip: rect(25px, 9999px, 35px, 0); transform: skew(3deg); }
    60% { clip: rect(35px, 9999px, 45px, 0); transform: skew(-3deg); }
    80% { clip: rect(45px, 9999px, 55px, 0); transform: skew(2deg); }
    100% { clip: rect(55px, 9999px, 65px, 0); transform: skew(-2deg); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(5px, 9999px, 15px, 0); transform: skew(-4deg); }
    20% { clip: rect(15px, 9999px, 25px, 0); transform: skew(4deg); }
    40% { clip: rect(25px, 9999px, 35px, 0); transform: skew(-3deg); }
    60% { clip: rect(35px, 9999px, 45px, 0); transform: skew(3deg); }
    80% { clip: rect(45px, 9999px, 55px, 0); transform: skew(-2deg); }
    100% { clip: rect(55px, 9999px, 65px, 0); transform: skew(2deg); }
}

@keyframes glitch-skew {
    0% { transform: skew(-5deg); }
    20% { transform: skew(5deg); }
    40% { transform: skew(-3deg); }
    60% { transform: skew(3deg); }
    80% { transform: skew(-2deg); }
    100% { transform: skew(2deg); }
}

@keyframes hidePreloader {
    0% { opacity: 1; }
    80% { opacity: 0; }
    100% { opacity: 0; display: none; }
}

nav {
    display: flex;
    justify-content: left;
    flex-grow: 0;
    flex: 1;
    opacity: 0;
    visibility: hidden;
    animation: navSlideIn 1s 1.5s forwards; 
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.loaded .fade-in {
    opacity: 1;
    transform: translateY(0);
}

.img-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.loaded .img-zoom {
    opacity: 1;
    transform: scale(1);
}

.start-btn, .btn {
    transition: transform 0.3s ease-out;
}

.start-btn:hover, .btn:hover {
    transform: scale(1.1);
}

.minecraft-hosting, .vds-hosting, .vps-hosting {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
  }
  .vps-hosting {
    transform: translateX(100px);
  }
  .show {
    opacity: 1;
    transform: translateX(0);
  }

  .contact, .whyvelcord {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact.show, .whyvelcord.show {
    opacity: 1;
    transform: translateY(0);
}

.procmy > div {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s ease-out;
  }
  
  .procmy > div.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  

  .hidden {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg) scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .show {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
  }
  
  .hidden.img {
    transform: translateX(-50px) rotateY(10deg) scale(0.9);
  }
  
  .show.img {
    transform: translateX(0) rotateY(0) scale(1);
  }
  
/* velké obrazovky*/

@media (min-width: 2500px) {
    .logo img{
        width: 120px;
        height: auto;
    }

    header {
        height: 1000px;
    }

    nav a {
        font-size: 1.8rem;
        margin: 0 45px;
    }
    
    .admin-btn {
        font-size: 1.6rem;
        padding: 0.8rem 1.3rem;
        border-radius: 10px;
    }

    header .content h1 {
        font-size: 4rem;
    }
    
    .content {
        max-width: 1000px;
    }

    .content p {
        font-size: 2rem;
    }


    .raketa {
        position: absolute;
        top: 50%; 
        right: 500px; 
        transform: translateY(-50%);
    }
    
    .raketa img {
         width: 600px;
    }

    .offer h2 {
        font-size: 3.5rem;
        letter-spacing: 3px;
        margin-bottom: 100px;
    }

    .minecraft-hosting {
        max-width: 1100px;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        margin-bottom: 100px;
    }

    .minecraft-hosting h2 {
        font-size: 3.5rem;
    }

    .minecraft-hosting p {
        font-size: 2rem;
    }

    .start-btn {
        font-size: 2rem;
        padding: 15px 25px;
        margin-bottom: 40px;
    }

    .vps-hosting {
        max-width: 1100px;
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px;
        margin-bottom: 100px;
    }

    .vps-hosting h2 {
        font-size: 3.5rem;
    }

    .vps-hosting p {
        font-size: 2rem;
    }

    .vds-hosting {
        max-width: 1100px;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .vds-hosting h2 {
        font-size: 3.5rem;
    }

    .vds-hosting p {
        font-size: 2rem;
    }

    .contact{
        margin-top: 150px;
    }

    .contact h2 {
        font-size: 3.8rem;
    }

    .contact p {
        letter-spacing: 3px;
        font-size: 2rem;
    }

    .btn {
        margin-top: 50px;
        padding: 20px 40px;
        border-radius: 15px;
        font-size: 2rem;
        max-width: 300px;
    }

    .whyvelcord h2 {
        margin-top: 10vh;
        font-size: 5rem;
    }

    .whyvelcord p {
        font-size: 2rem;
    }

    .lokalita {
        border-radius: 15px;
        max-width: 1000px;
    }

    .bezpecnost {
        border-radius: 15px;
        max-width: 1000px;
    }
    
    .lokalita h1 {
        font-size: 3.5rem;
    }
    
    .lokalita p {
        font-size: 2rem;
    }

    .bezpecnost h1 {
        font-size: 3.5rem;
    }
    
    .bezpecnost p {
        font-size: 2rem;
    }

    .podtext {
        font-size: 2rem;

        letter-spacing: 3px;
    }

    .kdenasnajdete-text h1 {
        font-size: 5rem;
    }

    .kdenasnajdete-text p {
        font-size: 2rem;
    }
    
    .mapa img {
        width: 800px;
        margin-top: 100px;
    }

    .konec-text h1 {
        font-size: 5rem;
    }

    .konec-text p {
        font-size: 2rem;
    }

    .btn-admin {
        font-size: 1.6rem;
        padding: 1.3rem 2rem;
        border-radius: 10px;
    }

    .btn-discord {
        font-size: 1.6rem;
        padding: 1.3rem 2rem;
        border-radius: 10px;
    }

    .buttons {
        gap: 70px;
    }

    footer a {
        font-size: 1.4rem;
    }
    
    footer p {
        font-size: 1.4rem;
    }

    .footer-logo h3 {
        font-size: 3rem;
    }

}

@media (min-width: 3800px) {
    .logo img{
        width: 200px;
        height: auto;
    }

    header {
        height: 2000px;
    }

    nav a {
        font-size: 3.5rem;
        margin: 0 70px;
    }
    
    .admin-btn {
        font-size: 3rem;
        padding: 1.4rem 2rem;
        border-radius: 20px;
    }

    header .content h1 {
        font-size: 8rem;
    }
    
    .content {
        max-width: 2000px;
    }

    .content p {
        font-size: 4rem;
    }


    .raketa {
        position: absolute;
        top: 50%; 
        right: 500px; 
        transform: translateY(-50%);
    }
    
    .raketa img {
         width: 800px;
    }

    .offer h2 {
        font-size: 6rem;
        letter-spacing: 5px;
        margin-bottom: 200px;
    }

    .minecraft-hosting {
        max-width: 2000px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        margin-bottom: 300px;
    }

    .minecraft-hosting h2 {
        font-size: 6rem;
    }

    .minecraft-hosting p {
        font-size: 4rem;
    }

    .start-btn {
        font-size: 4rem;
        padding: 25px 35px;
        margin-bottom: 80px;
        border-radius: 25px;
    }

    .vps-hosting {
        max-width: 2000px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        margin-bottom: 200px;
    }

    .vps-hosting h2 {
        font-size: 6rem;
    }

    .vps-hosting p {
        font-size: 4rem;
    }

    .vds-hosting {
        max-width: 2000px;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        margin-bottom: 200px;
    }

    .vds-hosting h2 {
        font-size: 6rem;
    }

    .vds-hosting p {
        font-size: 4rem;
    }

    .contact{
        margin-top: 350px;
    }

    .contact h2 {
        font-size: 6.5rem;
    }

    .contact p {
        letter-spacing: 5px;
        font-size: 4rem;
    }

    .btn {
        margin-top: 50px;
        padding: 20px 40px;
        border-radius: 15px;
        font-size: 4rem;
        max-width: 550px;
    }

    .whyvelcord h2 {
        margin-top: 20vh;
        font-size: 8rem;
    }

    .whyvelcord p {
        font-size: 4rem;
    }

    .lokalita {
        border-radius: 25px;
        max-width: 2000px;
    }

    .bezpecnost {
        border-radius: 25px;
        max-width: 2000px;
    }
    
    .lokalita h1 {
        font-size: 6rem;
    }
    
    .lokalita p {
        font-size: 4rem;
    }

    .bezpecnost h1 {
        font-size: 6rem;
    }
    
    .bezpecnost p {
        font-size: 4rem;
    }

    .podtext {
        font-size: 4rem;
        letter-spacing: 5px;
    }

    .kdenasnajdete-text {
        margin-top: 10vh;
        margin-bottom: 15vh;
    }

    .kdenasnajdete-text h1 {
        font-size: 8rem;
    }

    .kdenasnajdete-text p {
        font-size: 4rem;
    }
    
    .mapa img {
        width: 1200px;
        margin-top: 15vh;
    }

    .konec-text h1 {
        font-size: 8rem;
    }

    .konec-text p {
        font-size: 4rem;
    }

    .btn-admin {
        font-size: 3rem;
        padding: 1.4rem 2rem;
        border-radius: 20px;
        max-width: 300px;
    }

    .btn-discord {
        font-size: 3rem;
        padding: 1.4rem 2rem;
        border-radius: 20px;
    }

    .buttons {
        gap: 140px;
        margin-bottom: 10vh;
    }

    footer a {
        font-size: 1.8rem;
    }
    
    footer p {
        font-size: 1.8rem;
    }

    .footer-logo h3 {
        font-size: 4rem;
    }

    .lokalita img {
        width: 150px;
        height: auto;
    }

    .bezpecnost img {
        width: 150px;
        height: auto;
    }

    .lokalita {
        margin-right: 50px;
    }

    .footer-container {
        max-width: 2000px;
    }

}
