* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #181818;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.content {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

h1 {
    font-size: 2.5em;
    color: #ffffff;
    letter-spacing: 2px;
}

h1#code {
    font-size: 3em;
    font-weight: bold;
    background: linear-gradient(to right, #58a6ff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

button#refresh-button {
    background: linear-gradient(to right, #58a6ff, #0056b3);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

button#refresh-button:hover {
    background: linear-gradient(to right, #4a89dc, #004085);
}

.disclaimer {
    font-size: 0.8em;
    color: #aaaaaa;
    line-height: 1.4;
    max-width: 600px;
    margin-top: 20px;
    text-align: left;
    padding: 10px;
    background-color: #181818;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    h1#code {
        font-size: 2.5em;
    }

    button#refresh-button {
        font-size: 0.9em;
        padding: 8px 16px;
    }

    .disclaimer {
        font-size: 0.7em;
    }
}
