html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
    background-color: #222;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    margin: 10px 0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 3px solid transparent;
    background:
        linear-gradient(#333, #333) padding-box,
        linear-gradient(to right, #f58529, #dd2a7b, #8134af, #515bd4) border-box;
}

.input-container {
    width: 100%;
}

.input-container input {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
    border: 2px solid transparent;
    background:
        linear-gradient(#555, #555) padding-box,
        linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4) border-box;
}

.action-btn, .follower button, #load-more {
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 12px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, filter 0.2s;
    border: 2px solid transparent;
    margin-bottom: 5px;

    background:
        linear-gradient(#333, #333) padding-box,
        linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #513bd4) border-box;
}

#button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.action-btn {
    padding: 0 15px;
    flex: 1 1 auto;
    width: auto;
}

.follower button {
    width: 100%;
    margin-bottom: 5px;
}

#load-more {
    width: 70%;
}

.ad-placeholder {
    width: 100%;
    height: 90px;
    max-width: 100%;
    background: #444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
    margin: 15px 0;
    border: 2px dashed #777;
}

@media (max-width: 600px) {

    body {
        padding: 8px;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    #button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.action-btn {
    padding: 0 15px;
    width: auto;
    flex: 1 1 auto;
}

.follower button {
    width: 100%;
    max-width: 200%;
    margin-bottom: 5px;
}

#load-more {
    width: 70%;
    max-width: 100%;
}

    #load-more {
        width: 100%;
    }
}