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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.content {
    text-align: center;
    padding: 40px;
    max-width: 500px;
    width: 90%;
}

.title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: bold;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: #2ecc71;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.social-link:hover {
    background: #27ae60;
}

.social-link .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.token-section {
    padding: 20px;
}

.pump-link {
    display: inline-block;
    padding: 15px 30px;
    background: #2ecc71;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

.pump-link:hover {
    background: #27ae60;
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}