body {
    background-color: #2b2b2b;
    color: #ff1493; /* Hot pink for all text */
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1, p {
    color: #ff1493; /* Hot pink for headings and paragraphs */
}

img {
    margin-top: 20px;
}

img[alt="Viperr.gay"] {
    margin-top: 0;
    margin-bottom: 40px;
}

.link-image-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    left: -10px;
}

.link-bg {
    display: block;
    margin: 0;
}

.link-on-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    color: #ff1493; /* or any color you want */
    text-align: center;
    line-height: 31px; /* match image height for vertical centering */
    font-weight: bold;
    text-decoration: none;
    background: transparent;
    font-size: 1em;
    pointer-events: auto;
}

.explore-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* space between paragraph and link */
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #222;
    color: #ff1493;
    text-align: center;
    padding: 12px 0;
    font-size: 1em;
    z-index: 100;
    display: none; /* Hide by default */
}

@media (min-width: 768px) {
    footer {
        display: block; /* Show only on desktop */
    }
}