html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: black;
    color: white;
    text-align: center;
    touch-action: none;
    position: fixed;
    width: 100%;
}

.tap-area {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
    color: #22d3ee;
    text-shadow: 0 0 8px #4ADE80;
    animation: particleMove 0.8s ease-out;
}

@keyframes particleMove {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-50px); }
}

.neon-border {
    border: 2px solid #22d3ee;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 0 10px #22d3ee;
    font-size: 0.9rem;
}

.wallet-info {
    border: 2px solid #4ADE80;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 0 10px #4ADE80;
    margin-bottom: 20px;
}

* {
    user-select: none;
}