body {
    font-family: Arial, sans-serif;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    /* Ponecháno, jak jsi poslal */
    background-color: #000000;
}

#background {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('standard.gif');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.1s ease-out;
    z-index: -1;
}

.info-container {
    background-color: rgb(17 18 45 / 72%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    /* Změna na procenta, aby se šířka přizpůsobila obrazovce */
    width: 90%;
    max-width: 600px;
    /* Upravený padding, aby na mobilech nebyl tak velký */
    padding: clamp(20px, 4vw, 40px);
    border: 1px solid rgb(3 4 47 / 53%);
    box-shadow: 0 8px 32px 0 #170545c7;
}

.bot-logo {
    /* Responzivní velikost pro logo */
    width: clamp(100px, 15vw, 120px);
    height: clamp(100px, 15vw, 120px);
    border-radius: 50%;
    margin-bottom: 20px;
}

h1 {
    color: #fff;
    /* Responzivní velikost písma */
    font-size: clamp(2em, 5vw, 3em);
    margin-bottom: 10px;
}

.description, .server-count {
    color: #e0e0e0;
    /* Responzivní velikost písma */
    font-size: clamp(1em, 2vw, 1.2em);
    line-height: 1.6;
}

.invite-button {
    display: inline-block;
    background-color: #102d97;
    color: white;
    /* Responzivní padding a velikost písma */
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    font-size: clamp(1.2em, 3vw, 1.5em);
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s cubic-bezier(0.4, 0, 1, 1);
    margin-top: 20px;
}

.invite-button:hover {
    background-color: #677bc4;
}