body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #111111;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-blur {
    display: block;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(12px) brightness(0.95);
    opacity: 0.85;
}

.invite-container {
    background: rgba(24, 24, 27, 0.65);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 #000a, 0 1.5px 8px 0 #fc67fa22;
    padding: 40px 32px 32px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 1.5px solid rgba(252, 103, 250, 0.18);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.invite-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(252, 103, 250, 0.08) 0%, rgba(255, 255, 255, 0.10) 100%);
    z-index: 0;
}

.logo {
    width: 84px;
    height: 84px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #fc67fa;
    box-shadow: 0 2px 12px #fc67fa33, 0 0px 0px #fff;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 4px solid #fff;
    background: linear-gradient(135deg, #fc67fa 60%, #fff0 100%);
}

.username {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #b5bac1;
    font-weight: 500;
}

.server-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.server-stats {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    border-radius: 10px;
    padding: 8px 0;
}

.stat {
    background: rgba(34, 34, 34, 0.7);
    color: #fff;
    border: 1px solid rgba(252, 103, 250, 0.08);
    border-radius: 8px;
    padding: 5px 16px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 1px 4px #fc67fa11;
}

.stat.online {
    color: #23a559;
    background: #18181b;
}

.stat.total {
    color: #fc67fa;
    background: #18181b;
}

.invite-btn {
    display: block;
    max-width: 400px;
    background: #fc67fa;
    color: #ffffff;
    border-radius: 10px;
    font-size: 1.12rem;
    font-weight: 700;
    padding: 14px 0;
    margin-top: 8px;
    cursor: pointer;
    transition: ease-in-out 0.18s;
    box-shadow: 0 2px 16px #fc67fa33, 0 1px 4px #0002;
    text-decoration: none;
    letter-spacing: 0.01em;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.invite-btn:hover {
    background: #ffffff;
    color: #fc67fa;
    box-shadow: 0 4px 32px #fc67fa55, 0 2px 8px #0003;
}

@media (max-width: 500px) {
    .invite-container {
        max-width: 98vw;
        padding: 18px 2vw 18px 2vw;
    }

    .logo {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .server-name {
        font-size: 1.05rem;
    }

    .invite-btn {
        font-size: 1rem;
        padding: 10px 0;
    }
}

@media (max-width: 600px) {
    .invite-container {
        max-width: 95vw;
        padding: 24px 8vw;
    }

    .logo {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .title {
        font-size: 1.4rem;
    }

    .invite-btn {
        padding: 12px 18vw;
        font-size: 1rem;
    }
}