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

body {
    font-family: 'Geist', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 320px;
    width: 100%;
    padding: 2rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: #ffffff;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    font-weight: 400;
    font-size: 0.95rem;
}

.server-button {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: #ffffff;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
}

.server-button span {
    display: flex;
    align-items: start;
    flex-direction: column;
    flex-grow: 1;
}

.ip {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95em;
}

.button:hover, .server-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.button img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.server-button img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.copy-icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

.separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.invert {
    filter: invert(1);
}

.pixelly {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}