.shorts-feed {
    height: calc(100vh - 64px);
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0;
}

.shorts-item {
    height: calc(100vh - 64px);
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.shorts-player {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: calc(100vh - 64px);
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.shorts-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    padding: 0 16px;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    pointer-events: none;
}

.shorts-info a {
    pointer-events: auto;
}

@media (max-width: 600px) {
    .shorts-feed {
        height: calc(100vh - 56px);
    }

    .shorts-item {
        height: calc(100vh - 56px);
    }

    .shorts-player {
        max-width: 100%;
        max-height: calc(100vh - 56px);
        border-radius: 0;
    }

    .shorts-info {
        max-width: 100%;
        bottom: 16px;
    }
}
