#feedwall-root {
    width: 100%;
    height: 100vh;
    background: #0f0f0f;
    color: #fff;
    overflow: hidden;
    position: relative;
}

#feedwall-app {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#fw-canvas {
    position: absolute;
    width: 2000px;
    height: 2000px;
    transform-origin: center;
}

.fw-post {
    position: absolute;
    width: 120px;
    transition: transform 0.5s ease, opacity 1s;
}

.fw-post img {
    width: 100%;
    border-radius: 8px;
}

#fw-new-btn {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}
#fw-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.fw-modal-content {
    background: #111;
    padding: 20px;
    margin: 10% auto;
    width: 300px;
}
