@font-face {
    font-family: 'SicTake-Ore Regular';
    src: url('SicTake-Ore Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent scrollbars from physics simulation */
}

body {
    background-color: #889687;
    color: white;
    font-family: 'SicTake-Ore Regular', sans-serif;
    /* Prevent text selection while dragging */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#logo {
    position: absolute;
    /* Center the element reliably with CSS */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px; /* or any size you prefer */
    height: auto;
    cursor: grab;
    /* Disable browser's default image handling */
    pointer-events: auto;
}

#logo:active {
    cursor: grabbing;
}

.text-container {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    pointer-events: none; /* Text should not interfere with mouse events for Matter.js */
}

.wip-text {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin: 0;
}

/* New animation for the trembling effect */
@keyframes tremble {
    0%, 100% { transform: translate(-50%, -50%) rotate(0); }
    25% { transform: translate(calc(-50% + 2px), calc(-50% + 2px)) rotate(0.4deg); }
    50% { transform: translate(-50%, -50%) rotate(0); }
    75% { transform: translate(calc(-50% - 2px), calc(-50% + 2px)) rotate(-0.4deg); }
}

.is-trembling {
    animation: tremble 0.5s infinite;
} 