/* General Styles */

body {
    font-family: 'Press Start 2P', cursive;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0d0d0d, #1a1a2e);
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.main-container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 4px solid #32ff7e;
    border-radius: 15px;
    box-shadow: 0 0 20px #32ff7e;
}

/* Logo Section */

.logo-container {
    animation: glow 2s infinite alternate;
}

.logo {
    width: 150px;
    height: auto;
    animation: pixelSpin 4s linear infinite;
}

.tagline {
    color: #32ff7e;
    font-size: 16px;
}

/* Buttons */

.button-container {
    margin: 20px 0;
}

.pixel-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    margin: 10px;
    color: #0d0d0d;
    background: #32ff7e;
    border: 2px solid #f0f0f0;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

.pixel-button:hover {
    transform: scale(1.1);
    background: #28c76f;
}

/* Token Description */

.description {
    margin: 20px 0;
}

.description h2 {
    color: #32ff7e;
    font-size: 24px;
}

.description p {
    line-height: 1.8;
    font-size: 14px;
}

/* Footer */

footer {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

/* Animations */

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #32ff7e, 0 0 15px #32ff7e, 0 0 25px #32ff7e;
    }
    100% {
        text-shadow: 0 0 10px #32ff7e, 0 0 20px #32ff7e, 0 0 35px #32ff7e;
    }
}

@keyframes pixelSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}