.reels-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: calc(100vh - 60px);
}

.reel-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    scroll-snap-align: start;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1rem 1rem;
}

.reel-info {
    margin-bottom: 1rem;
}

.reel-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    margin-bottom: 0.5rem;
}

.reel-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.reel-user strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified {
    color: #1DA1F2;
}

.reel-caption {
    color: white;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.reel-actions {
    position: absolute;
    right: 1rem;
    bottom: 8rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reel-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
}

.reel-action:hover {
    transform: scale(1.1);
}

.reel-action i {
    font-size: 1.8rem;
}

.reel-action span {
    font-size: 0.8rem;
    font-weight: 600;
}

.reel-action.liked i {
    color: var(--primary-color);
    animation: likeAnimation 0.3s ease;
}

.play-pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    transition: all 0.3s;
}

.play-pause-btn:hover {
    background: rgba(0,0,0,0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-item.paused .play-pause-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 769px) {
    .reels-container {
        height: calc(100vh - 80px);
    }
    
    .reel-item {
        height: calc(100vh - 80px);
    }
}

.reel-options-wrapper {
    position: relative;
}

.reel-options-menu {
    display: none;
    position: absolute;
    right: 100%;
    bottom: 0;
    background: var(--surface-light);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    z-index: 1000;
    margin-right: 0.5rem;
}

.reel-options-wrapper.active .reel-options-menu {
    display: block;
}

.reel-options-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.reel-options-menu a:hover {
    background: var(--surface);
}

.reel-options-menu a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}
