body {
    background: linear-gradient(-45deg, #111111, #1a1a1a, #0f0f0f, #222222);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1,
h2 {
    font-weight: 700;
    color: #e0e0e0;
    margin-top: 10px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2em;
    margin-top: 0;
}

h2 {
    font-size: 1.5em;
}

p {
    margin-bottom: 15px;
    line-height: 1.6;
}

a {
    color: #c0baba;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

a:hover {
    text-decoration: none;
    color: #ffffff;
}

.wallet-address {
    font-family: monospace;
    word-break: break-all;
    background: #1a1a1a;
    padding: 2px 5px;
    border-radius: 3px;
    color: #a0a0a0;
}

.section {
    margin-bottom: 30px;
    width: 100%;
}

.copy-link {
    position: relative;
    text-decoration: underline;
    cursor: pointer;
}

.copy-link::after {
    content: "copied!";
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.copy-link.copied::after {
    opacity: 1;
}