body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: linear-gradient(160deg, #000000 0%, #0f0f0f 100%);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

.container {
    max-width: 640px;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.05);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

button {
    padding: 0.75rem;
    margin-top: 1rem;
    width: 100%;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#token-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 20px auto 30px;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ffe1;
    background: #111;
    display: block;
}

#token-info p {
    margin: 12px 0;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

#token-info strong {
    color: #00ffe1;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 1rem;
    color: #888;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    animation: fadeIn 2s ease-in-out;
}