/* Physics Section Styles */
.toss-away {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.toss-away .container {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    pointer-events: none;
    width: 100%;
}

#physics-container {
    width: 100%;
    height: 650px;
    position: relative;
    cursor: grab;
    z-index: 1;
}

@media (max-width: 767px) {
    #physics-container {
        height: 480px;
    }
}

.physics-pill {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    color: #ffffff;
    font-family: inherit;
    font-weight: 400;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 100;
    will-change: transform;
}

/* Desktop sizing */
@media (min-width: 768px) {
    .physics-pill {
        padding: 22px 70px;
        font-size: 22px;
    }
}

/* Mobile sizing */
@media (max-width: 767px) {
    .physics-pill {
        padding: 12px 30px;
        font-size: 14px;
    }
}