body {
    background-color: #121212;
    color: #ffffff;
    font-family: system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.logo {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
    opacity: 0.95;
}

h1 {
    font-size: 2rem;
    margin: 0;
}

p {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 8px;
}

.logos-row a {
    display: inline-block;
}

.chain-logo {
    height: 60px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: transform 0.2s ease-in-out;
    cursor: pointer; /* 👈 This is key */
}

.base-logo {
    transform: scale(0.65); /* Shrink Base logo */
}

.horizen-logo {
    transform: scale(1.3);  /* Enlarge Horizen logo */
}

.separator {
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #B941FA, #8A2BE2);
    border-radius: 2px;
    margin: 20px auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scaleX(1); opacity: 1; }
    50% { transform: scaleX(1.1); opacity: 0.7; }
}

.twitter-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #B941FA;
    z-index: 10;
    transition: transform 0.2s ease;
}

.twitter-button:hover {
    transform: scale(1.1);
}

.twitter-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

main {
    padding: 0 1.5rem;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }

    .chain-logo {
        height: 48px;
    }

    .twitter-icon {
        width: 24px;
        height: 24px;
    }
}
