@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: linear-gradient(to top, #490d47, #ff0080);
    color: white;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.scroll-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px 40px 15px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.server-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.server {
    background: linear-gradient(to right, #ff66cc, #ff0080);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
}

.server img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
}

.server-name {
    font-size: 16px;
    font-weight: bold;
    flex-grow: 1;
    text-align: left;
    margin-left: 10px;
}

.video-call-btn {
    background: white;
    color: #ff0080;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s ease;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 5px;
    }
    div[id^="div-gpt-ad"], iframe {
        min-width: unset !important;
        width: 100% !important;
        overflow: hidden;
    }
}