body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
    user-select: none;
}

#ts-button {
    padding: 15px 30px;
    font-size: min(4vw, 28px);
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-tap-highlight-color: transparent;
}

.random-text {
    position: absolute;
    color: #fff;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    padding: 5px;
    font-size: min(4vw, 24px);
    will-change: transform;
}

#click-counter {
    position: fixed;
    top: 20px;
    left: 20px;
    font-weight: bold;
    color: #ffffff;
    z-index: 10;
    background-color: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: min(4vw, 32px);
}

#rancode {
    position: fixed;
    top: 20px;
    right: 20px;
    font-weight: bold;
    color: #ffffff;
    z-index: 10;
    background-color: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: min(4vw, 32px);
    text-decoration: none; 
    cursor: pointer; 
}

#rancode:hover {
    background-color: rgba(70,70,70,0.7); 
}