body {
    background-color: #FF4F4D;
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

img {
    max-height: 80vh;
    max-width: 100%;
    height: auto;
    width: auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.links {
    position: fixed;
    bottom: 60px;

    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.links div {
    margin: 15px;
    color: white;
    font-size: 14px;
    opacity: 0.7;
}

.links a {
    color: white;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

.links svg {
    vertical-align: middle;
    margin-right: 6px;
    display: inline-block;
    width: 22px;
    height: 22px;
}

.links div {
    display: flex;
    align-items: center;
}

.legal-links {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    flex-wrap: wrap;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    opacity: 0.7;
}

.legal-links a:hover {
    text-decoration: underline;
}

.separator {
    color: white;
    opacity: 0.5;
    font-size: 11px;
}

@media (max-width: 1024px) {
    .links {
        flex-direction: column;
        gap: 0;
    }
}