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