body {
    background: #000;
    margin: 0;
    padding: 0;
    /* Prevent page from scrolling on mobile */
    overflow: hidden;
}
.container {
    background: #000;
    /* Use a fixed viewport-height grid: content + socials */
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100svh;
    width: 100%;
}

.item {
}

.item.logo {
    /* Center the logo */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    /* Allow this area to shrink within the grid without causing overflow */
    min-height: 0;
}
.item.logo img {
    max-width: min(800px, 90vw);
    /* Fit the image within the available logo area */
    max-height: 100%;
    width: auto;
    height: auto;
}

.item.socials {
    /* Bottom strip in the second grid row */
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.socials a {
    color: #fff;
    text-decoration: none;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 0.95rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}

.socials a:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

.socials a:active {
    transform: translateY(1px);
}

.socials a .icon {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
}