* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* Лента */
.feed {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.post {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    scroll-snap-align: start;
    overflow: hidden;
}

.post-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.60), rgba(0,0,0,.10));
}

/* Правая колонка */
.right-actions {
    position: absolute;
    right: 12px;
    bottom: 110px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.action-avatar-wrap {
    width: 52px;
    height: 52px;
}

.action-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    display: block;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.action-btn {
    font-size: 26px;
    line-height: 1;
}

.action-count {
    font-size: 12px;
    font-weight: 700;
}

/* Нижний текст */
.bottom-info {
    position: absolute;
    left: 16px;
    right: 90px;
    bottom: 20px;
    z-index: 5;
}

.bottom-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.bottom-desc {
    font-size: 14px;
    line-height: 1.4;
}

/* Большая кнопка + справа */
.fab-btn {
    position: fixed;
    right: 16px;
    bottom: 100px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9ec7, #ffc4de);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f4758;
    text-decoration: none;
    font-size: 34px;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(0,0,0,.45);
    z-index: 9999;
}

/* Маленькая кнопка + в колонке */
.fab-mini {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9ec7, #ffc4de);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f4758;
    text-decoration: none;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

/* Пустой экран */
.empty-screen {
    width: 100%;
    height: 100vh;
    background: #000;
    position: relative;
}

/* Карточка питомца на пустом экране */
.empty-pet-card {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    background: rgba(0,0,0,.34);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 10px 14px 10px 10px;
    max-width: 340px;
}

.empty-pet-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.9);
}

.empty-pet-meta {
    min-width: 0;
}

.empty-pet-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-pet-breed {
    font-size: 12px;
    color: rgba(255,255,255,.82);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 700px) {
    .fab-btn {
        right: 12px;
        bottom: 92px;
        width: 58px;
        height: 58px;
        font-size: 32px;
    }

    .right-actions {
        right: 10px;
        bottom: 102px;
        gap: 12px;
    }

    .action-avatar-wrap,
    .action-avatar {
        width: 48px;
        height: 48px;
    }

    .empty-pet-card {
        top: 12px;
        left: 12px;
        right: 12px;
        padding: 9px 12px 9px 9px;
        max-width: calc(100% - 24px);
    }

    .empty-pet-avatar {
        width: 50px;
        height: 50px;
    }

    .empty-pet-name {
        font-size: 14px;
    }

    .empty-pet-breed {
        font-size: 11px;
    }
}