* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    background-color: #000;
    width: 100vw;
    height: 100vh;
}

.game-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.ip-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    font-size: 8vw;
    font-weight: bold;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9),
                 -2px -2px 4px rgba(0, 0, 0, 0.9);
    z-index: 10;
    display: none;
    pointer-events: none;
    white-space: nowrap;
    width: 90vw;
    text-align: center;
    letter-spacing: 2px;
    animation: tiltAnimation 3s ease-in-out infinite;
    transform-origin: center center;
}


@keyframes tiltAnimation {
    0% { transform: translate(-50%, -50%) rotate(-20deg); }
    50% { transform: translate(-50%, -50%) rotate(20deg); }
    100% { transform: translate(-50%, -50%) rotate(-20deg); }
}
