body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background: url('/static/background.png'), linear-gradient(to right, #ff8a00, #da1b60);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

h1 {
    color: white;
    font-size: 3rem;
}

p {
    font-size: 18px;
}

.token-info, .transactions {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

th, td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: center;
}

th {
    background: rgba(255, 255, 255, 0.2);
}

a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #fff;
}
